diff options
author | Christian Breunig <christian@breunig.cc> | 2023-02-04 13:24:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-04 13:24:24 +0100 |
commit | 3329943339ce7f5b8dc108ad4528fb9d48ef70fa (patch) | |
tree | 6fbc3419a56d0334e910f51dad81a7e5c69f70f0 /interface-definitions/include/bgp/neighbor-local-role.xml.i | |
parent | 182da4fa10c1a5f45e52a3d7949acb3a3d2eb266 (diff) | |
parent | 55bf752570019e1b3b756b25f500cd9bf17efb01 (diff) | |
download | vyos-1x-3329943339ce7f5b8dc108ad4528fb9d48ef70fa.tar.gz vyos-1x-3329943339ce7f5b8dc108ad4528fb9d48ef70fa.zip |
Merge pull request #1797 from ServerForge/current
bgp: T4817: add support for RFC9234
Diffstat (limited to 'interface-definitions/include/bgp/neighbor-local-role.xml.i')
-rw-r--r-- | interface-definitions/include/bgp/neighbor-local-role.xml.i | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/interface-definitions/include/bgp/neighbor-local-role.xml.i b/interface-definitions/include/bgp/neighbor-local-role.xml.i new file mode 100644 index 000000000..3f15802b1 --- /dev/null +++ b/interface-definitions/include/bgp/neighbor-local-role.xml.i @@ -0,0 +1,42 @@ +<!-- include start from bgp/neigbhor-local-role.xml.i --> +<tagNode name="local-role"> + <properties> + <help>Local role for this bgp session.</help> + <completionHelp> + <list>customer peer provider rs-client rs-server</list> + </completionHelp> + <valueHelp> + <format>customer</format> + <description>Using Transit</description> + </valueHelp> + <valueHelp> + <format>peer</format> + <description>Public/Private Peering</description> + </valueHelp> + <valueHelp> + <format>provider</format> + <description>Providing Transit</description> + </valueHelp> + <valueHelp> + <format>rs-client</format> + <description>RS Client</description> + </valueHelp> + <valueHelp> + <format>rs-server</format> + <description>Route Server</description> + </valueHelp> + <constraint> + <regex>(provider|rs-server|rs-client|customer|peer)</regex> + </constraint> + <constraintErrorMessage>Invalid Option</constraintErrorMessage> + </properties> + <children> + <leafNode name="strict"> + <properties> + <help>Your neighbor must send you Capability with the value of his role. Otherwise, a Role Mismatch Notification will be sent.</help> + <valueless/> + </properties> + </leafNode> + </children> +</tagNode> +<!-- include end --> |