...
set routing route-map <route-map-name> order <NUMBER> match extcommunity <extcommunity-list>
delete routing route-map <route-map-name> order <NUMBER> match extcommunity <extcommunity-list>
...
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. |
extcommunity <extcommunity-list> | Specifies the name of the extended community-list to match the community number attribute of the route. |
...
Code Block |
---|
admin@Xorplus# set routing extcommunity-list standard EXTcom1 permit 20 admin@Xorplus# set routing route-map GlobalMap order 10 match extcommunity EXTcom1 admin@Xorplus# set routing route-map GlobalMap order 10 actionmatching-policy permit admin@Xorplus# commit |
...