]> git.ipfire.org Git - thirdparty/bird.git/blame_incremental - bird.conf
Whitespace fixes
[thirdparty/bird.git] / bird.conf
... / ...
CommitLineData
1/*
2 * This is an example configuration file.
3 */
4
5# Yet another comment
6
7router id 62.168.0.1;
8
9define xyzzy = (120+10);
10
11protocol device {
12 disabled;
13# interface "eth*", "ppp*";
14}
15
16protocol direct {
17}
18
19protocol kernel {
20 disabled;
21# learn; # Learn all routes from the kernel
22# scan time 10; # Scan kernel tables every 10 seconds
23}
24
25protocol 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
43protocol rip {
44}