diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-22 06:17:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-22 06:17:34 +0200 |
commit | e0ce69365f46db5339144cb27bff6b3dd5924871 (patch) | |
tree | 5c6374fd400f26a22a49acf52c244be004fe2cdd /interface-definitions/include | |
parent | 1f6b7168af0d295b81324fd64a4876073de33066 (diff) | |
parent | 7f08523bb7c59e41f88db10b0892f9103ea09cdd (diff) | |
download | vyos-1x-e0ce69365f46db5339144cb27bff6b3dd5924871.tar.gz vyos-1x-e0ce69365f46db5339144cb27bff6b3dd5924871.zip |
Merge pull request #2291 from vyos/mergify/bp/sagitta/pr-2284
bgp: T5596: add new features from FRR 9 (backport #2284)
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/bgp/neighbor-capability.xml.i | 6 | ||||
-rw-r--r-- | interface-definitions/include/bgp/neighbor-path-attribute.xml.i | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/interface-definitions/include/bgp/neighbor-capability.xml.i b/interface-definitions/include/bgp/neighbor-capability.xml.i index 2bbfadf1f..c5ed3c840 100644 --- a/interface-definitions/include/bgp/neighbor-capability.xml.i +++ b/interface-definitions/include/bgp/neighbor-capability.xml.i @@ -16,6 +16,12 @@ <valueless/> </properties> </leafNode> + <leafNode name="software-version"> + <properties> + <help>Advertise Software Version capability to the peer</help> + <valueless/> + </properties> + </leafNode> </children> </node> <!-- include end --> diff --git a/interface-definitions/include/bgp/neighbor-path-attribute.xml.i b/interface-definitions/include/bgp/neighbor-path-attribute.xml.i index f4f2fcfa9..30568d8c6 100644 --- a/interface-definitions/include/bgp/neighbor-path-attribute.xml.i +++ b/interface-definitions/include/bgp/neighbor-path-attribute.xml.i @@ -16,6 +16,18 @@ </constraint> </properties> </leafNode> + <leafNode name="treat-as-withdraw"> + <properties> + <help>Treat-as-withdraw any incoming BGP UPDATE messages that contain the specified attribute</help> + <valueHelp> + <format>u32:1-255</format> + <description>Attribute number</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-255"/> + </constraint> + </properties> + </leafNode> </children> </node> <!-- include end --> |