Run the command set protocols bgp neighbor evpn neighbor <in|out> route-map (in|out)to configure an inbound or outbound route map for an EVPN neighbor. The parameter value of neighbor is the BGP neighbor for which to specify the route map. The value of parameter route-map is where you specify the name of the route map to apply and keywords in or out are to specify whether the route map applies to inbound or outbound traffic. Optional parameter vrf can be used to specify a VRF. If VRF is not specified then the command applies to the default VRF.
The command delete protocols bgp neighbor evpn neighbor {in|out} route-map can be used to remove this configuration.
...
Command Syntax
set protocols bgp [vrf <text><vrf-name>] evpn neighbor <bgp-peer> <bgp-peer> evpn {in|out} route-map <route<route-map>map>
delete protocols bgp [vrf <text><vrf-name>] evpn neighbor <bgp-peer> <bgp-peer> evpn {in|out} route-map <route-map> <route-map>
Parameter
Parameter | Description |
vrf <text><vrf-name> | Optional. Specifies the name of the VRF. |
neighbor <bgp<bgp-peer>peer> | Specifies the BGP neighbor IPv4 or IPv6 address. |
in|out | Keywords to specify the inbound or outbound direction for route map. |
route-map <route<route-map>map> | Specifies the name of the route map. |
...
Code Block |
---|
admin@Xorplus# set protocols bgp vrf BLUE evpn neighbor 3.3.3.3 evpn in route-map map1 admin@Xorplus# commit |
...