]> git.ipfire.org Git - thirdparty/bird.git/blob - bird.conf
Enums do not work, this is testcase.
[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 ip p;
30 {
31 print "Testing filter language:";
32 i = 4;
33 i = 1230 + i;
34 i = ( i + 0 );
35 print " arithmetics: 1234 = " i;
36 printn " if statements ";
37 if i = 4 then { print "*** FAIL: if 0"; quitbird; } else printn ".";
38 if 1234 = i then printn "."; else { print "*** FAIL: if 1 else"; }
39 if 1 <= 1 then printn "."; else { print "*** FAIL: test 3"; }
40 if 1234 < 1234 then { print "*** FAIL: test 4"; quitbird; } else print "ok";
41 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 } ] "," defined(1) "," defined(1.2.3.4);
42 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 } ];
43
44 px = 1.2.3.4/18;
45 print "Testing prefixes: 1.2.3.4/18 = " px;
46 p = 127.1.2.3;
47 print "Testing mask : 127.0.0.0 = " p.mask(8);
48 print "Testing pairs: (1,2) = " (1,2);
49 print "Set of enums: " RTSDUMMY;
50
51 print "What will this do? " [ 1, 2, 1, 1, 1, 3, 4, 1, 1, 1, 5 ];
52
53 print "Testing functions...";
54 # callme ( 1, 2 );
55 callme ( 2, 2 );
56 callme ( 2, 2 );
57 callme ( 3, 2 );
58 callme ( 4, 2 );
59 callme ( 7, 2 );
60
61 print "done";
62 quitbird;
63 # print "*** FAIL: this is unreachable";
64 }
65
66 filter testf
67 int j;
68 {
69 print "Heya, filtering route to " rta.net.ip " prefixlen " rta.net.len;
70 print "This route was from " rta.from;
71 j = 7;
72 j = 17;
73 if rta.rip_metric > 15 then
74 print "RIP Metric is more than infinity";
75
76 accept;
77 }
78
79 protocol rip MyRIP_test {
80 preference xyzzy;
81 debug all;
82 port 1520;
83 period 5;
84 garbagetime 30;
85 interface "*" { mode broadcast; };
86 export filter testf;
87 honour neighbour;
88 passwords { password "ahoj" from 0 to 10;
89 password "nazdar" from 10;
90 }
91 authentication md5;
92 }
93
94 protocol device {
95 # disabled;
96 # interface "eth*", "ppp*";
97 }
98
99 #protocol kernel {
100 # disabled;
101 # learn; # Learn all routes from the kernel
102 # scan time 10; # Scan kernel tables every 10 seconds
103 #}
104
105 protocol static {
106 # disabled;
107 route 0.0.0.0/0 via 62.168.0.13;
108 route 62.168.0.0/25 reject;
109 # route 10.0.0.0/8 reject;
110 # route 10.1.1.0:255.255.255.0 via 62.168.0.3;
111 # route 10.1.2.0:255.255.255.0 via 62.168.0.3;
112 # route 10.1.3.0:255.255.255.0 via 62.168.0.4;
113 # route 10.2.0.0/24 via "arc0";
114 }