summaryrefslogtreecommitdiff
path: root/interface-definitions
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-05-29 10:35:37 +0200
committerChristian Poessinger <christian@poessinger.com>2022-05-29 10:35:37 +0200
commit687462972361af3d91047721f1d7bd02da7f9dd5 (patch)
tree602e813967208822acef8b3be087a60acab4c7fc /interface-definitions
parent939794f297728aacfbc9422b66941614f7f3cf45 (diff)
downloadvyos-1x-687462972361af3d91047721f1d7bd02da7f9dd5.tar.gz
vyos-1x-687462972361af3d91047721f1d7bd02da7f9dd5.zip
rip: T4448: remove default version for RIP
Commit f9e38622 ("rip: T4448: add support to set protocol version on an interface level") also added the versionspecified on a per interface level. the RIp version carried a default value of 2 which makes RIPv1 and RIPv2 no longer working which is dthe default for FRR. Remove the default "2" from the RIP version specifier to make this behavior work again.
Diffstat (limited to 'interface-definitions')
-rw-r--r--interface-definitions/include/rip/version.xml.i7
1 files changed, 3 insertions, 4 deletions
diff --git a/interface-definitions/include/rip/version.xml.i b/interface-definitions/include/rip/version.xml.i
index f7d3eab0d..a35350aee 100644
--- a/interface-definitions/include/rip/version.xml.i
+++ b/interface-definitions/include/rip/version.xml.i
@@ -1,19 +1,18 @@
<!-- include start from rip/version.xml.i -->
<leafNode name="version">
<properties>
- <help>RIP protocol version</help>
+ <help>Limit RIP protocol version</help>
<valueHelp>
<format>1</format>
- <description>RIPv1</description>
+ <description>Allow RIPv1 only</description>
</valueHelp>
<valueHelp>
<format>2</format>
- <description>RIPv2</description>
+ <description>Allow RIPv2 only</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--range 1-2"/>
</constraint>
</properties>
- <defaultValue>2</defaultValue>
</leafNode>
<!-- include end -->