1# $OpenBSD: bgpd.conf.13.in,v 1.1 2020/04/24 10:34:54 claudio Exp $
2# Only test the bare minimum configuration
3
4AS 1
5
6group TEST {
7	local-address 192.0.2.1
8	local-address 2001:db8:abcd::1
9
10	neighbor 192.0.2.2 {
11		remote-as 2
12	}
13	neighbor 2001:db8:abcd::2 {
14		remote-as 2
15	}
16	neighbor 192.0.2.3 {
17		local-address 192.0.2.254
18		remote-as 3
19	}
20	neighbor 2001:db8:abcd::3 {
21		local-address 2001:db8:abcd::254
22		remote-as 3
23	}
24	neighbor 192.0.2.4 {
25		no local-address
26		remote-as 4
27	}
28	neighbor 2001:db8:abcd::4 {
29		no local-address
30		remote-as 4
31	}
32}
33
34neighbor 192.0.2.5 {
35	remote-as 5
36}
37
38neighbor 2001:db8:abcd::5 {
39	remote-as 5
40}
41
42neighbor 192.0.2.6 {
43	local-address 192.0.2.253
44	local-address 2001:db8:abcd::253
45	remote-as 6
46}
47
48neighbor 2001:db8:abcd::6 {
49	local-address 192.0.2.253
50	local-address 2001:db8:abcd::253
51	remote-as 6
52}
53
54neighbor 192.0.2.7 {
55	no local-address
56	remote-as 7
57}
58
59neighbor 2001:db8:abcd::7 {
60	no local-address
61	remote-as 7
62}
63