]> git.ipfire.org Git - thirdparty/bird.git/blob - bird.conf
IO: Replace RX priority heuristic with explicit mark
[thirdparty/bird.git] / bird.conf
1 /*
2 * This is an example configuration file.
3 */
4
5 # Yet another comment
6
7 router id 62.168.0.1;
8
9 define xyzzy = (120+10);
10
11 protocol device {
12 disabled;
13 # interface "eth*", "ppp*";
14 }
15
16 protocol direct {
17 }
18
19 protocol kernel {
20 disabled;
21 # learn; # Learn all routes from the kernel
22 # scan time 10; # Scan kernel tables every 10 seconds
23 }
24
25 protocol static {
26 # disabled;
27
28 route fec0:2::/64 blackhole;
29 route fec0:3::/64 unreachable;
30 route fec0:4::/64 prohibit;
31
32 # route 0.0.0.0/0 via 195.113.31.113;
33 # route 62.168.0.0/25 unreachable;
34 # route 1.2.3.4/32 via 195.113.31.124;
35 # route 10.0.0.0/8 unreachable;
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";
40 export all;
41 }
42
43 protocol rip {
44 }