diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-17 08:41:22 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-03-17 08:46:47 +0100 |
commit | 16395c902ff79fcb34019a6d499467488ed45849 (patch) | |
tree | 3e4e96bc6d911e649520f0c4079b8cedfcee7093 /interface-definitions | |
parent | f237e75e9fd156c2e4ce15dd6ca8fd4d5d8790cc (diff) | |
download | vyos-1x-16395c902ff79fcb34019a6d499467488ed45849.tar.gz vyos-1x-16395c902ff79fcb34019a6d499467488ed45849.zip |
policy: T6129: add route-map option "as-path exclude all"
Remove all AS numbers from the AS_PATH of the BGP path's NLRI.
set policy route-map <name> rule <rule> set as-path exclude all
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/policy.xml.in | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/interface-definitions/policy.xml.in b/interface-definitions/policy.xml.in index 0d82cd3f8..791fa1d87 100644 --- a/interface-definitions/policy.xml.in +++ b/interface-definitions/policy.xml.in @@ -1124,12 +1124,20 @@ <leafNode name="exclude"> <properties> <help>Remove/exclude from the as-path attribute</help> + <completionHelp> + <list>all</list> + </completionHelp> <valueHelp> - <format>u32</format> + <format>u32:1-4294967295</format> <description>AS number</description> </valueHelp> + <valueHelp> + <format>all</format> + <description>Exclude all AS numbers from the as-path</description> + </valueHelp> <constraint> <validator name="as-number-list"/> + <regex>(all)</regex> </constraint> </properties> </leafNode> @@ -1137,7 +1145,7 @@ <properties> <help>Prepend to the as-path</help> <valueHelp> - <format>u32</format> + <format>u32:1-4294967295</format> <description>AS number</description> </valueHelp> <constraint> |