diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-19 18:48:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-19 18:48:40 +0200 |
commit | db53c8e77cd93d5d7f16036b4d7b783083caf32e (patch) | |
tree | d986ab0fa34c515badd1a11de28cce1bd26ee062 /interface-definitions | |
parent | dcdcc18b2097648b44fdd77155e2e903c9f5cad9 (diff) | |
parent | d285355716708a46767c18661976906812da8a3c (diff) | |
download | vyos-1x-db53c8e77cd93d5d7f16036b4d7b783083caf32e.tar.gz vyos-1x-db53c8e77cd93d5d7f16036b4d7b783083caf32e.zip |
Merge pull request #2284 from c-po/t5596-bgp
bgp: T5596: add new features from FRR 9
Diffstat (limited to 'interface-definitions')
-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 --> |