]> git.ipfire.org Git - thirdparty/bird.git/blob - bird.conf
850b53e329e0e8529bb5f2fcabd53e1b71658873
[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 function startup ()
12 int i;
13 {
14 print "Bird filter language: selftesting...";
15 i = 4;
16 i = 1230 + i;
17 print "Testing arithmetics: 1234 = " i;
18 if i = 4 then { print "*** FAIL: if 0"; quitbird; } else print "test 1 passed";
19 if 1234 = i then print "test 2 passed"; else { print "*** FAIL: if 1 else"; }
20 if 1 <= 1 then print "test 3 passed"; else { print "*** FAIL: test 3"; }
21 if 1234 < 1234 then { print "*** FAIL: test 4"; quitbird; } else print "test 4 passed";
22
23 print "Testing IP addresses: 1.2.3.4 = " 1.2.3.4;
24 print "Testing sets of ints = " [ 1, 2, 3 ];
25 print "Testing sets of ints = " [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ];
26 print "Testing sets of IPs = " [ 1.2.3.4, 2.3.4.5, 3.4.5.6 ];
27 print "Sets: true = " 1 ~ [ 1, 2, 3 ];
28 print " false = " 1 ~ [ 2, 3, 4 ];
29 print "a..b: true = " 5 ~ [ 4 .. 7 ];
30 print " false = " 5 ~ [ 2, 3, 4, 7..11 ];
31 print "IPsets: true = " 1.2.3.4 ~ [ 1.2.3.3..1.2.3.5 ];
32 print " false = " 1.2.3.4 ~ [ 1.2.3.3, 1.2.3.5 ];
33
34 print "done";
35 # quitbird;
36 print "*** FAIL: this is unreachable";
37 }
38
39 filter testf
40 int j;
41 {
42 print "Heya, filtering route to " rta.net.ip " prefixlen " rta.net.len;
43 print "This route was from " rta.from;
44 accept;
45 }
46
47 protocol rip MyRIP_test {
48 preference xyzzy;
49 debug all;
50 port 1520;
51 period 5;
52 garbagetime 30;
53 interface "*";
54 export filter testf;
55 }
56
57 protocol device {
58 # disabled;
59 # interface "eth*", "ppp*";
60 }
61
62 #protocol kernel {
63 # disabled;
64 # learn; # Learn all routes from the kernel
65 # scan time 10; # Scan kernel tables every 10 seconds
66 #}
67
68 protocol static {
69 # disabled;
70 route 0.0.0.0/0 via 62.168.0.13;
71 route 62.168.0.0/25 reject;
72 # route 10.0.0.0/8 reject;
73 # route 10.1.1.0:255.255.255.0 via 62.168.0.3;
74 # route 10.1.2.0:255.255.255.0 via 62.168.0.3;
75 # route 10.1.3.0:255.255.255.0 via 62.168.0.4;
76 # route 10.2.0.0/24 via "arc0";
77 }