mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00

Add a test that ensures that the 'match evpn vni' command works with bgp evpn rt5 updates. Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
! debug bgp neighbor-events
|
|
! debug bgp updates
|
|
! debug bgp zebra
|
|
router bgp 65000
|
|
bgp router-id 192.168.100.21
|
|
bgp log-neighbor-changes
|
|
no bgp default ipv4-unicast
|
|
no bgp ebgp-requires-policy
|
|
neighbor 192.168.100.41 remote-as 65000
|
|
neighbor 192.168.100.41 capability extended-nexthop
|
|
neighbor 192.168.100.61 remote-as 65500
|
|
neighbor 192.168.100.61 capability extended-nexthop
|
|
!
|
|
address-family l2vpn evpn
|
|
neighbor 192.168.100.41 activate
|
|
neighbor 192.168.100.41 route-map rmap_r1 in
|
|
neighbor 192.168.100.61 activate
|
|
neighbor 192.168.100.61 route-map rmap_r3 in
|
|
advertise-all-vni
|
|
exit-address-family
|
|
!
|
|
router bgp 65000 vrf r1-vrf-101
|
|
bgp router-id 192.168.102.21
|
|
bgp log-neighbor-changes
|
|
no bgp network import-check
|
|
address-family ipv4 unicast
|
|
network 192.168.102.21/32
|
|
exit-address-family
|
|
address-family ipv6 unicast
|
|
network fd00::1/128
|
|
exit-address-family
|
|
address-family l2vpn evpn
|
|
advertise ipv4 unicast
|
|
advertise ipv6 unicast
|
|
exit-address-family
|
|
!
|
|
route-map rmap_r3 deny 1
|
|
match evpn vni 102
|
|
exit
|
|
route-map rmap_r1 permit 1
|
|
match evpn vni 101
|
|
exit
|