]> git.ipfire.org Git - thirdparty/bird.git/blob - bird.conf
02a34706eefba28dd195d351043028bf568d8029
[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 rip MyRIP_test {
12 debug all;
13 port 1520;
14 period 7;
15 garbagetime 60;
16 interface "*";
17 honour neighbour;
18 # passwords { password "ahoj" from 0 to 10;
19 # password "nazdar" from 10;
20 # }
21 authentication none;
22 import filter { print "importing"; accept; };
23 export filter { print "exporting"; accept; };
24 }
25
26 protocol device {
27 # disabled;
28 # interface "eth*", "ppp*";
29 }
30
31 protocol direct {
32 }
33
34 protocol kernel {
35 disabled;
36 # learn; # Learn all routes from the kernel
37 # scan time 10; # Scan kernel tables every 10 seconds
38 }
39
40 protocol static {
41 # disabled;
42 route 0.0.0.0/0 via 195.113.31.113;
43 route 62.168.0.0/25 reject;
44 route 1.2.3.4/32 via 195.113.31.124;
45 # route 10.0.0.0/8 reject;
46 # route 10.1.1.0:255.255.255.0 via 62.168.0.3;
47 # route 10.1.2.0:255.255.255.0 via 62.168.0.3;
48 # route 10.1.3.0:255.255.255.0 via 62.168.0.4;
49 # route 10.2.0.0/24 via "arc0";
50 export all;
51 }