]> git.ipfire.org Git - thirdparty/bird.git/blob - bird.conf
Added examples of pairs and prefixes
[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 callme (int arg1; int arg2;)
12 {
13 print "Function callme called arguments " arg1 " and " arg2;
14
15 case arg1 {
16 2: { print "dva"; print "jeste jednou dva"; }
17 [ 3 .. 5 ]: print "tri az pet";
18 else: print "neco jineho";
19 }
20 }
21
22 function startup ()
23 int i;
24 prefix px;
25
26 {
27 print "Bird filter language: selftesting...";
28 i = 4;
29 i = 1230 + i;
30 print "Testing arithmetics: 1234 = " i;
31 if i = 4 then { print "*** FAIL: if 0"; quitbird; } else print "test 1 passed";
32 if 1234 = i then print "test 2 passed"; else { print "*** FAIL: if 1 else"; }
33 if 1 <= 1 then print "test 3 passed"; else { print "*** FAIL: test 3"; }
34 if 1234 < 1234 then { print "*** FAIL: test 4"; quitbird; } else print "test 4 passed";
35
36 print "Testing IP addresses: 1.2.3.4 = " 1.2.3.4;
37 print "Testing sets of ints = " [ 1, 2, 3 ];
38 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 ];
39 print "Testing sets of IPs = " [ 1.2.3.4, 2.3.4.5, 3.4.5.6 ];
40 print "Sets: true = " 1 ~ [ 1, 2, 3 ];
41 print " false = " 1 ~ [ 2, 3, 4 ];
42 print "a..b: true = " 5 ~ [ 4 .. 7 ];
43 print " false = " 5 ~ [ 2, 3, 4, 7..11 ];
44 print "IPsets: true = " 1.2.3.4 ~ [ 1.2.3.3..1.2.3.5 ];
45 print " false = " 1.2.3.4 ~ [ 1.2.3.3, 1.2.3.5 ];
46
47 print "Testing prefixes: 1.2.3.4/18 = " 1.2.3.4/18;
48 print "Testing pairs: (1,2) = " (1,2);
49
50 print "Testing functions...";
51 callme ( 1, 2, );
52 callme ( 2, 2, );
53 callme ( 3, 2, );
54 callme ( 4, 2, );
55 callme ( 7, 2, );
56
57 print "done";
58 quitbird;
59 # print "*** FAIL: this is unreachable";
60 }
61
62 filter testf
63 int j;
64 {
65 print "Heya, filtering route to " rta.net.ip " prefixlen " rta.net.len;
66 print "This route was from " rta.from;
67 accept;
68 }
69
70 protocol rip MyRIP_test {
71 preference xyzzy;
72 debug all;
73 port 1520;
74 period 5;
75 garbagetime 30;
76 interface "*" { mode broadcast; };
77 export filter testf;
78 honour neighbour;
79 passwords { password "ahoj" from 0 to 10;
80 password "nazdar" from 10;
81 }
82 authentication md5;
83 }
84
85 protocol device {
86 # disabled;
87 # interface "eth*", "ppp*";
88 }
89
90 #protocol kernel {
91 # disabled;
92 # learn; # Learn all routes from the kernel
93 # scan time 10; # Scan kernel tables every 10 seconds
94 #}
95
96 protocol static {
97 # disabled;
98 route 0.0.0.0/0 via 62.168.0.13;
99 route 62.168.0.0/25 reject;
100 # route 10.0.0.0/8 reject;
101 # route 10.1.1.0:255.255.255.0 via 62.168.0.3;
102 # route 10.1.2.0:255.255.255.0 via 62.168.0.3;
103 # route 10.1.3.0:255.255.255.0 via 62.168.0.4;
104 # route 10.2.0.0/24 via "arc0";
105 }