summaryrefslogtreecommitdiffstats
path: root/tests/topotests/bgp_evpn_route_map_match/r1/frr.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tests/topotests/bgp_evpn_route_map_match/r1/frr.conf')
-rw-r--r--tests/topotests/bgp_evpn_route_map_match/r1/frr.conf44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/topotests/bgp_evpn_route_map_match/r1/frr.conf b/tests/topotests/bgp_evpn_route_map_match/r1/frr.conf
new file mode 100644
index 0000000..4347052
--- /dev/null
+++ b/tests/topotests/bgp_evpn_route_map_match/r1/frr.conf
@@ -0,0 +1,44 @@
+!
+!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
+!