...
set routing route-map <route-map-name> > order <NUMBER> match peer {<ipv4-address>|<ipv6-address>}
delete routing route-map <route-map-name> name> order <NUMBER> match peer {<ipv4-address>|<ipv6-address>}
...
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. |
peer {<ipv4-address>|<ipv6-address>} | Specifies if the peer ip address if the BGP neighbor is matched with a match clause. |
...
Code Block |
---|
admin@Xorplus# set routing route-map GlobalMap order 10 match peer 100.100.100.1 admin@Xorplus# set routing route-map GlobalMap order 10 actionmatching-policy permit admin@Xorplus# commit |
...