diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-03-07 17:20:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-07 17:20:27 +0100 |
commit | 311791ab536816a187a8a21562370e51eda3baba (patch) | |
tree | e6c2c4359aaf2dcb90f83fb1b45efc4daf1f591a /interface-definitions | |
parent | e35041bd45cea8a64600d7c05756cb0b486000f7 (diff) | |
parent | ef5c61b26e60a85768a0c6c0677e38fc238d1c29 (diff) | |
download | vyos-1x-311791ab536816a187a8a21562370e51eda3baba.tar.gz vyos-1x-311791ab536816a187a8a21562370e51eda3baba.zip |
Merge pull request #2966 from HollyGurza/T6020
vrrp: T6020: vrrp health-check script not applied correctly
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/high-availability.xml.in | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/interface-definitions/high-availability.xml.in b/interface-definitions/high-availability.xml.in index aef57f8ae..558404882 100644 --- a/interface-definitions/high-availability.xml.in +++ b/interface-definitions/high-availability.xml.in @@ -345,6 +345,55 @@ </completionHelp> </properties> </leafNode> + <node name="health-check"> + <properties> + <help>Health check</help> + </properties> + <children> + <leafNode name="failure-count"> + <properties> + <help>Health check failure count required for transition to fault</help> + <constraint> + <validator name="numeric" argument="--positive" /> + </constraint> + </properties> + <defaultValue>3</defaultValue> + </leafNode> + <leafNode name="interval"> + <properties> + <help>Health check execution interval in seconds</help> + <constraint> + <validator name="numeric" argument="--positive"/> + </constraint> + </properties> + <defaultValue>60</defaultValue> + </leafNode> + <leafNode name="ping"> + <properties> + <help>ICMP ping health check</help> + <valueHelp> + <format>ipv4</format> + <description>IPv4 ping target address</description> + </valueHelp> + <valueHelp> + <format>ipv6</format> + <description>IPv6 ping target address</description> + </valueHelp> + <constraint> + <validator name="ip-address"/> + </constraint> + </properties> + </leafNode> + <leafNode name="script"> + <properties> + <help>Health check script file</help> + <constraint> + <validator name="script"/> + </constraint> + </properties> + </leafNode> + </children> + </node> #include <include/vrrp-transition-script.xml.i> </children> </tagNode> |