diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-03 19:43:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 19:43:12 +0100 |
commit | d0de9cc5d69020a9d5260e23755d83a7b674c22f (patch) | |
tree | 4e6ffdd6a4f3d00c795b34c107d9de6f54ed7762 /interface-definitions | |
parent | c0959295e49ff98eafadd6ff7faaca8fa39e26da (diff) | |
parent | ec727d66a187ee50c303e103c6d09c7842cd1809 (diff) | |
download | vyos-1x-d0de9cc5d69020a9d5260e23755d83a7b674c22f.tar.gz vyos-1x-d0de9cc5d69020a9d5260e23755d83a7b674c22f.zip |
Merge pull request #585 from Cheeze-It/current
mpls-conf: T915: Separate IPv4 and IPv6 hello timers, add IPv6 timers
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/protocols-mpls.xml.in | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/interface-definitions/protocols-mpls.xml.in b/interface-definitions/protocols-mpls.xml.in index 3ea610d8b..94ece8d45 100644 --- a/interface-definitions/protocols-mpls.xml.in +++ b/interface-definitions/protocols-mpls.xml.in @@ -54,9 +54,9 @@ </valueHelp> </properties> <children> - <leafNode name="hello-holdtime"> + <leafNode name="hello-ipv4-holdtime"> <properties> - <help>Hello holdtime</help> + <help>Hello ipv4 holdtime</help> <valueHelp> <format>1-65535</format> <description>Time in seconds</description> @@ -66,9 +66,33 @@ </constraint> </properties> </leafNode> - <leafNode name="hello-interval"> + <leafNode name="hello-ipv4-interval"> <properties> - <help>Hello interval</help> + <help>Hello ipv4 interval</help> + <valueHelp> + <format>1-65535</format> + <description>Time in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-65535"/> + </constraint> + </properties> + </leafNode> + <leafNode name="hello-ipv6-holdtime"> + <properties> + <help>Hello ipv6 holdtime</help> + <valueHelp> + <format>1-65535</format> + <description>Time in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-65535"/> + </constraint> + </properties> + </leafNode> + <leafNode name="hello-ipv6-interval"> + <properties> + <help>Hello ipv6 interval</help> <valueHelp> <format>1-65535</format> <description>Time in seconds</description> |