]> git.proxmox.com Git - mirror_frr.git/blob - tests/topotests/bgp_l3vpn_to_bgp_vrf/ce3/bgpd.conf
bgp_l3vpn_to_bgp_vrf: updated config files to current vpn-policy syntax
[mirror_frr.git] / tests / topotests / bgp_l3vpn_to_bgp_vrf / ce3 / bgpd.conf
1 frr defaults traditional
2 !
3 hostname ce3
4 password zebra
5 log stdout notifications
6 log monitor notifications
7 log commands
8 router bgp 5227
9 bgp router-id 99.0.0.3
10 neighbor 192.168.1.1 remote-as 5227
11 neighbor 192.168.1.1 update-source 192.168.1.2
12 address-family ipv4 unicast
13 network 99.0.0.3/32
14 network 5.1.2.0/24 route-map rm-nh
15 network 5.1.3.0/24 route-map rm-nh
16 neighbor 192.168.1.1 activate
17 exit-address-family
18 !
19 access-list al-any permit any
20 !
21 route-map rm-nh permit 10
22 match ip address al-any
23 set ip next-hop 99.0.0.3
24 set local-preference 50
25 set metric 200
26 set large-community 12:34:56
27 set extcommunity rt 89:123
28 set community 0:67
29 !
30
31 end
32
33
34