]> git.ipfire.org Git - thirdparty/bird.git/blob - bird.conf
Use local variables to test that functionality.
[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 int local1;
13 int local2;
14 int i;
15 {
16 print "Function callme called arguments " arg1 " and " arg2;
17 i = arg2;
18
19 case arg1 {
20 2: print "dva"; print "jeste jednou dva";
21 3 .. 5: print "tri az pet";
22 else: print "neco jineho";
23 }
24 }
25
26 function startup ()
27 int i;
28 prefix px;
29 {
30 print "Testing filter language:";
31 i = 4;
32 i = 1230 + i;
33 print " arithmetics: 1234 = " i;
34 printn " if statements ";
35 if i = 4 then { print "*** FAIL: if 0"; quitbird; } else printn ".";
36 if 1234 = i then printn "."; else { print "*** FAIL: if 1 else"; }
37 if 1 <= 1 then printn "."; else { print "*** FAIL: test 3"; }
38 if 1234 < 1234 then { print "*** FAIL: test 4"; quitbird; } else print "ok";
39
40 print " data types; must be true: " 1.2.3.4 = 1.2.3.4 "," 1 ~ [1,2,3] "," 5 ~ [1..20] "," 2 ~ [ 1, 2, 3 ] "," 5 ~ [ 4 .. 7 ] "," 1.2.3.4 ~ [ 1.2.3.3..1.2.3.5 ] "," 1.2.3.4 ~ 1.2.3.4/8 "," 1.2.3.4/8 ~ 1.2.3.4/8 "," 1.2.3.4/8 ~ 1.2.3.4/8+ "," 1.2.3.4/16 ~ 1.2.3.4/8{ 15 , 16 };
41 print " data types: must be false: " 1 ~ [ 2, 3, 4 ] "," 5 ~ [ 2, 3, 4, 7..11 ] "," 1.2.3.4 ~ [ 1.2.3.3, 1.2.3.5 ] "," (1,2) > (2,2) "," (1,1) > (1,1) "," 1.2.3.4/8 ~ 1.2.3.4/8- "," 1.2.3.4/17 ~ 1.2.3.4/8{ 15 , 16 };
42
43 px = 1.2.3.4/18;
44 print "Testing prefixes: 1.2.3.4/18 = " px;
45 print "Testing pairs: (1,2) = " (1,2);
46
47 print "What will this do? " [ 1, 2, 1, 1, 1, 3, 4, 1, 1, 1, 5 ];
48
49 print "Testing functions...";
50 # callme ( 1, 2 );
51 callme ( 2, 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 j = 7;
68 j = 17;
69 if rta.rip_metric > 15 then
70 print "RIP Metric is more than infinity";
71
72 accept;
73 }
74
75 protocol rip MyRIP_test {
76 preference xyzzy;
77 debug all;
78 port 1520;
79 period 5;
80 garbagetime 30;
81 interface "*" { mode broadcast; };
82 export filter testf;
83 honour neighbour;
84 passwords { password "ahoj" from 0 to 10;
85 password "nazdar" from 10;
86 }
87 authentication md5;
88 }
89
90 protocol device {
91 # disabled;
92 # interface "eth*", "ppp*";
93 }
94
95 #protocol kernel {
96 # disabled;
97 # learn; # Learn all routes from the kernel
98 # scan time 10; # Scan kernel tables every 10 seconds
99 #}
100
101 protocol static {
102 # disabled;
103 route 0.0.0.0/0 via 62.168.0.13;
104 route 62.168.0.0/25 reject;
105 # route 10.0.0.0/8 reject;
106 # route 10.1.1.0:255.255.255.0 via 62.168.0.3;
107 # route 10.1.2.0:255.255.255.0 via 62.168.0.3;
108 # route 10.1.3.0:255.255.255.0 via 62.168.0.4;
109 # route 10.2.0.0/24 via "arc0";
110 }