diff options
author | mevertse <merijn@trans-ix.nl> | 2019-07-08 09:53:36 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-07-08 09:53:36 +0200 |
commit | 8abf1b30555822f4948088db3abf6654a71f7325 (patch) | |
tree | 123f2992bdabe7efabcc644ba7764310ffd38d52 | |
parent | d52b304f973397cf983b00e95b9d35a12bc8e2d9 (diff) | |
download | vyatta-cfg-quagga-8abf1b30555822f4948088db3abf6654a71f7325.tar.gz vyatta-cfg-quagga-8abf1b30555822f4948088db3abf6654a71f7325.zip |
T1391: In route-map set community additive (#28)
-rw-r--r-- | templates/policy/route-map/node.tag/rule/node.tag/set/community/node.def | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/policy/route-map/node.tag/rule/node.tag/set/community/node.def b/templates/policy/route-map/node.tag/rule/node.tag/set/community/node.def index ccb033fc..9bf94abb 100644 --- a/templates/policy/route-map/node.tag/rule/node.tag/set/community/node.def +++ b/templates/policy/route-map/node.tag/rule/node.tag/set/community/node.def @@ -5,8 +5,9 @@ val_help: local-AS; Advertise communities in local AS only (NO_EXPORT_SUBCONFED) val_help: no-advertise; Don't advertise this route to any peer (NO_ADVERTISE) val_help: no-export; Don't advertise outside of this AS of confederation boundry (NO_EXPORT) val_help: internet; Symbolic Internet community 0 +val_help: additive; Add the community instead of replacing existing communities -allowed:echo "none local-AS no-advertise no-export internet" +allowed:echo "none local-AS no-advertise no-export internet additive" syntax:expression: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --check-community $VAR(@)" commit:expression: $VAR(../../action/) != "" ; "You must specify an action" |