...
The set routing route-map map set-action extcommunity bandwidth command sets the BGP link-bandwidth extended community for the prefix (best path) for which it is applied.
The delete routing route-map action map set-action extcommunity bandwidth command restores the default behavior of not modifying the BGP link-bandwidth extended community of the route.
...
set routing route-map <route-map-name> order <NUMBER> set-action extcommunity bandwidth extcommunity bandwidth {<bandwidth>|cumulative|num-multipaths} [non-transitive]
delete routing route-map <route-map-name> order <NUMBER> action extcommunity bandwidth set-action extcommunity bandwidth {<bandwidth>|cumulative|num-multipaths} [non-transitive]
...
Parameter | Description |
route-map <route-map-name> | Specifies the name of the route map. Required. |
order <NUMBER> | Specifies the sequence number of the entry. Required. The value is an integer that ranges from 1 to 65535. |
<bandwidth>|cumulative|num-multipaths | The link-bandwidth can be specified as an explicit value (specified in Mbps), or the router can be told to use the cumulative bandwidth of all multipaths for the prefix or to compute it based on the number of multipaths. |
non-transitive | Optional. The link bandwidth extended community is encoded as transitive unless the set command explicitly configures it as non-transitive. |
...
Code Block |
---|
admin@Xorplus# set routing route-map GlobalMap order 10 set-action extcommunity bandwidth num-multipaths admin@Xorplus# commit |
...