diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2024-12-19 17:28:21 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2025-01-21 13:48:36 +0100 |
commit | d84b93f2872daeb1605ed09bbd9fb6fbbfa9b760 (patch) | |
tree | 5531425b8c161d2c0d9b0d7d4f344ebbf9e97439 /tests/topotests/bgp_evpn_rt5/r1/bgpd.conf | |
parent | topotests: bgp_evpn_rt5, configure route_distinguisher (diff) | |
download | frr-d84b93f2872daeb1605ed09bbd9fb6fbbfa9b760.tar.xz frr-d84b93f2872daeb1605ed09bbd9fb6fbbfa9b760.zip |
topotests: add unified configuration
Replace the various per-daemon config files with a unique frr.conf
configuration file.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'tests/topotests/bgp_evpn_rt5/r1/bgpd.conf')
-rw-r--r-- | tests/topotests/bgp_evpn_rt5/r1/bgpd.conf | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/tests/topotests/bgp_evpn_rt5/r1/bgpd.conf b/tests/topotests/bgp_evpn_rt5/r1/bgpd.conf deleted file mode 100644 index b9c230206..000000000 --- a/tests/topotests/bgp_evpn_rt5/r1/bgpd.conf +++ /dev/null @@ -1,44 +0,0 @@ -! 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 - rd 65000:101 - route-target both 65:101 - 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 |