...
set routing route-map <route-map-name> order <NUMBER> match large-community <large-community-list>
delete routing route-map <route-map-name> order <NUMBER> match large-community <large-community-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 <extcommunitylarge-community <large-community-list> | Specifies the name of the BGP Large Community list to match the community number attribute of the route. |
...
- Configure a match clause in the route map to match the BGP match the BGP Large Community list:
Code Block |
---|
admin@Xorplus# set routing large-community-list standard Largecom1 permit 20large-community 6215:22:33 admin@Xorplus# set routing route-map GlobalMap order 10 match large-community Largecom1 admin@Xorplus# set routing route-map GlobalMap order 10 actionmatching-policy permit admin@Xorplus# commit |
...