diff options
author | mevertse <merijn@trans-ix.nl> | 2019-07-08 09:53:36 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-07-08 10:56:25 +0200 |
commit | 5ae4a2382b7839e0e7f9cca77460f650b794e2db (patch) | |
tree | e94c4126ee2507c07a61e9a99bbdaab57be8d8a2 | |
parent | e53c009dfce46d5be144c64b5d8ca36a346e6554 (diff) | |
download | vyatta-cfg-quagga-5ae4a2382b7839e0e7f9cca77460f650b794e2db.tar.gz vyatta-cfg-quagga-5ae4a2382b7839e0e7f9cca77460f650b794e2db.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" |