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