diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-11-13 16:37:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-13 16:37:04 +0000 |
commit | d51765cac49dd1d3b2d489387cd35d41e8b45b3d (patch) | |
tree | d031ef7eeeb435bb4699408306f1c9e35087ec06 /interface-definitions/include | |
parent | c6a097ee7d9b6d2f4c4b8ee63ca45ccfb6fdda34 (diff) | |
parent | 1686dac1a67d2dbf21d0386fdf7ec9d6aad851b8 (diff) | |
download | vyos-1x-d51765cac49dd1d3b2d489387cd35d41e8b45b3d.tar.gz vyos-1x-d51765cac49dd1d3b2d489387cd35d41e8b45b3d.zip |
Merge pull request #4187 from c-po/babel-tests
babel: T6866: IPv6 distribute-lists in access-list6 format have names not numbers
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/babel/redistribute-common.xml.i | 38 | ||||
-rw-r--r-- | interface-definitions/include/rip/access-list6.xml.i | 22 |
2 files changed, 46 insertions, 14 deletions
diff --git a/interface-definitions/include/babel/redistribute-common.xml.i b/interface-definitions/include/babel/redistribute-common.xml.i new file mode 100644 index 000000000..93efe68dd --- /dev/null +++ b/interface-definitions/include/babel/redistribute-common.xml.i @@ -0,0 +1,38 @@ +<!-- include start from babel/redistribute-common.xml.i --> +<leafNode name="bgp"> + <properties> + <help>Border Gateway Protocol (BGP)</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="connected"> + <properties> + <help>Connected routes (directly attached subnet or host)</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="isis"> + <properties> + <help>Intermediate System to Intermediate System (IS-IS)</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="kernel"> + <properties> + <help>Redistribute Kernel routes (not installed via the zebra RIB)</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="openfabric"> + <properties> + <help>OpenFabric Routing Protocol</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="static"> + <properties> + <help>Statically configured routes</help> + <valueless/> + </properties> + </leafNode> +<!-- include end --> diff --git a/interface-definitions/include/rip/access-list6.xml.i b/interface-definitions/include/rip/access-list6.xml.i index 732135253..395d21c14 100644 --- a/interface-definitions/include/rip/access-list6.xml.i +++ b/interface-definitions/include/rip/access-list6.xml.i @@ -7,31 +7,25 @@ <leafNode name="in"> <properties> <help>Access list to apply to input packets</help> - <valueHelp> - <format>u32</format> - <description>Access list to apply to input packets</description> - </valueHelp> <completionHelp> <path>policy access-list6</path> </completionHelp> - <constraint> - <validator name="numeric" argument="--range 0-4294967295"/> - </constraint> + <valueHelp> + <format>txt</format> + <description>Name of IPv6 access-list</description> + </valueHelp> </properties> </leafNode> <leafNode name="out"> <properties> <help>Access list to apply to output packets</help> - <valueHelp> - <format>u32</format> - <description>Access list to apply to output packets</description> - </valueHelp> <completionHelp> <path>policy access-list6</path> </completionHelp> - <constraint> - <validator name="numeric" argument="--range 0-4294967295"/> - </constraint> + <valueHelp> + <format>txt</format> + <description>Name of IPv6 access-list</description> + </valueHelp> </properties> </leafNode> </children> |