]> git.ipfire.org Git - thirdparty/bird.git/blame - bird.conf
Babel: Fix build with restricted protocol set
[thirdparty/bird.git] / bird.conf
CommitLineData
ca3d562b
PM
1/*
2 * This is an example configuration file.
3 */
4
5# Yet another comment
6
23b1539b 7router id 62.168.0.1;
ca3d562b 8
f3b33928 9define xyzzy = (120+10);
ca3d562b
PM
10
11protocol device {
a7c9f7c0 12 disabled;
23b1539b 13# interface "eth*", "ppp*";
ca3d562b
PM
14}
15
9b47eb85
PM
16protocol direct {
17}
18
19protocol kernel {
20 disabled;
ca3d562b
PM
21# learn; # Learn all routes from the kernel
22# scan time 10; # Scan kernel tables every 10 seconds
9b47eb85 23}
ca3d562b
PM
24
25protocol static {
23b1539b 26# disabled;
77f37ae0 27
80a9cadc
OZ
28 route fec0:2::/64 blackhole;
29 route fec0:3::/64 unreachable;
30 route fec0:4::/64 prohibit;
77f37ae0 31
a7c9f7c0 32# route 0.0.0.0/0 via 195.113.31.113;
80a9cadc 33# route 62.168.0.0/25 unreachable;
a7c9f7c0 34# route 1.2.3.4/32 via 195.113.31.124;
80a9cadc 35# route 10.0.0.0/8 unreachable;
23b1539b
PM
36# route 10.1.1.0:255.255.255.0 via 62.168.0.3;
37# route 10.1.2.0:255.255.255.0 via 62.168.0.3;
38# route 10.1.3.0:255.255.255.0 via 62.168.0.4;
39# route 10.2.0.0/24 via "arc0";
febe5263 40 export all;
ca3d562b 41}
a7c9f7c0
PM
42
43protocol rip {
44}