diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-18 21:52:50 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-09-18 21:53:23 +0200 |
commit | d285355716708a46767c18661976906812da8a3c (patch) | |
tree | 790993e6e2b3a4ed834bf57714113b5dfff36748 /interface-definitions | |
parent | 22d5cd42f082fb11060edc51128f0b246198d2c1 (diff) | |
download | vyos-1x-d285355716708a46767c18661976906812da8a3c.tar.gz vyos-1x-d285355716708a46767c18661976906812da8a3c.zip |
bgp: T5596: add new features from FRR 9
* Add BGP Software Version capability (draft-abraitis-bgp-version-capability)
set protocols bgp neighbor 192.0.2.1 capability software-version
* Add BGP neighbor path-attribute treat-as-withdraw command
set protocols bgp neighbor 192.0.2.1 path-attribute treat-as-withdraw
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 --> |