]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgpd.conf.vnc.sample
bgpd: add L3/L2VPN Virtual Network Control feature
[mirror_frr.git] / bgpd / bgpd.conf.vnc.sample
1 hostname H192.1.1.1
2 password zebra
3 #enable password zebra
4 log stdout notifications
5 log monitor notifications
6 #debug bgp
7
8 line vty
9 exec-timeout 1000
10 exit
11
12
13 router bgp 64512
14
15 # Must set a router-id if no zebra (default 0.0.0.0)
16 bgp router-id 192.1.1.1
17
18 neighbor 192.1.1.2 remote-as 64512
19 neighbor 192.1.1.2 description H192.1.1.2
20 neighbor 192.1.1.2 update-source 192.1.1.1
21 neighbor 192.1.1.2 advertisement-interval 1
22 no neighbor 192.1.1.2 activate
23
24 neighbor 192.1.1.3 remote-as 64512
25 neighbor 192.1.1.3 description H192.1.1.3
26 neighbor 192.1.1.3 update-source 192.1.1.1
27 neighbor 192.1.1.3 advertisement-interval 1
28 no neighbor 192.1.1.3 activate
29
30 address-family vpnv4
31 neighbor 192.1.1.2 activate
32 neighbor 192.1.1.3 activate
33 exit-address-family
34
35 address-family vpnv6
36 neighbor 192.1.1.2 activate
37 neighbor 192.1.1.3 activate
38 exit-address-family
39
40 vnc defaults
41 rd auto:vn:5226
42 response-lifetime 45
43 rt both 1000:1 1000:2
44 exit-vnc
45
46 vnc nve-group group1
47 prefix vn 172.16.0.0/16
48 exit-vnc
49
50 vnc nve-group red
51 prefix vn 10.0.0.0/8
52 rd auto:vn:10
53 rt both 1000:10
54 exit-vnc
55
56 vnc nve-group blue
57 prefix vn 20.0.0.0/8
58 rd auto:vn:20
59 rt both 1000:20
60 exit-vnc
61
62 vnc nve-group green
63 prefix vn 30.0.0.0/8
64 rd auto:vn:20
65 rt both 1000:30
66 exit-vnc
67
68 vnc nve-group rfc4291v6c
69 prefix vn ::ac10:0/112
70 rd auto:vn:5227
71 rt both 2000:1
72 exit-vnc
73
74 vnc nve-group rfc4291v6m
75 prefix vn ::ffff:ac10:0/112
76 rd auto:vn:5528
77 rt both 3000:1
78 exit-vnc
79
80 vnc nve-group rfc6052v6
81 prefix vn 64:ff9b::ac10:0/112
82 rd auto:vn:5529
83 rt both 4000:1
84 exit-vnc
85
86 exit
87
88
89