1
0
Fork 0
frr/tests/topotests/bgp_evpn_route_map_match/r1/frr.conf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
897 B
Text
Raw Permalink Normal View History

!
!debug bgp neighbor
!debug route-map detail
!
vni 10
!
int lo
ip address 10.10.10.1/32
!
int r1-eth1
ip address 192.168.1.1/24
!
router bgp 65001
no bgp ebgp-requires-policy
no bgp network import-check
neighbor 192.168.1.2 remote-as external
neighbor 192.168.1.2 timers 1 3
neighbor 192.168.1.2 timers connect 1
!
address-family ipv4 unicast
redistribute connected
network 10.10.10.10/32
exit-address-family
!
address-family l2vpn evpn
neighbor 192.168.1.2 activate
neighbor 192.168.1.2 route-map r2 out
advertise-all-vni
advertise ipv4 unicast
exit-address-family
!
route-map r2 deny 10
match evpn route-type macip
!
route-map r2 deny 20
match ip address prefix-list pl
match evpn route-type prefix
!
route-map r2 permit 30
!
ip prefix-list pl seq 5 permit 192.168.1.0/24
ip prefix-list pl seq 10 permit 10.10.10.1/32
ip prefix-list pl seq 15 permit 10.10.10.2/32
!