]> git.ipfire.org Git - thirdparty/bird.git/blob - filter/test.conf
BGP: Support for large communities
[thirdparty/bird.git] / filter / test.conf
1
2 /*
3 * This is an example configuration file.
4 * FIXME: add all examples from docs here.
5 */
6
7 # Yet another comment
8
9 router id 62.168.0.1;
10
11 define xyzzy = (120+10);
12 define '1a-a1' = (20+10);
13 define one = 1;
14 define ten = 10;
15
16 define p23 = (2, 3);
17 define ip1222 = 1.2.2.2;
18
19 function onef(int a)
20 {
21 return 1;
22 }
23
24
25 function 'mkpair-a'(int a)
26 {
27 return (1, a);
28 }
29
30 function mktrip(int a)
31 {
32 return (a, 2*a, 3*a);
33 }
34
35 function mkpath(int a; int b)
36 {
37 return [= a b 3 2 1 =];
38 }
39
40 function callme(int arg1; int arg2)
41 int local1;
42 int local2;
43 int i;
44 {
45 printn "Function callme called arguments ", arg1, " and ", arg2, ": " ;
46 i = arg2;
47
48 case arg1 {
49 11, 1, 111: printn "jedna, "; printn "jedna";
50 (one+onef(2)): printn "dva, "; printn "jeste jednou dva";
51 (2+one) .. 5: if arg2 < 3 then printn "tri az pet";
52 else: printn "neco jineho";
53 }
54 print;
55 }
56
57 function fifteen()
58 {
59 print "fifteen called";
60 return 15;
61 }
62
63 roa table rl
64 {
65 roa 10.110.0.0/16 max 16 as 1000;
66 roa 10.120.0.0/16 max 24 as 1000;
67 roa 10.130.0.0/16 max 24 as 2000;
68 roa 10.130.128.0/18 max 24 as 3000;
69 }
70
71 function test_roa()
72 {
73 # cannot be tested in __startup(), sorry
74 print "Testing ROA";
75 print "Should be true: ", roa_check(rl, 10.10.0.0/16, 1000) = ROA_UNKNOWN,
76 " ", roa_check(rl, 10.0.0.0/8, 1000) = ROA_UNKNOWN,
77 " ", roa_check(rl, 10.110.0.0/16, 1000) = ROA_VALID,
78 " ", roa_check(rl, 10.110.0.0/16, 2000) = ROA_INVALID,
79 " ", roa_check(rl, 10.110.32.0/20, 1000) = ROA_INVALID,
80 " ", roa_check(rl, 10.120.32.0/20, 1000) = ROA_VALID;
81 print "Should be true: ", roa_check(rl, 10.120.32.0/20, 2000) = ROA_INVALID,
82 " ", roa_check(rl, 10.120.32.32/28, 1000) = ROA_INVALID,
83 " ", roa_check(rl, 10.130.130.0/24, 1000) = ROA_INVALID,
84 " ", roa_check(rl, 10.130.130.0/24, 2000) = ROA_VALID,
85 " ", roa_check(rl, 10.130.30.0/24, 3000) = ROA_INVALID,
86 " ", roa_check(rl, 10.130.130.0/24, 3000) = ROA_VALID;
87 }
88
89 function path_test()
90 bgpmask pm1;
91 bgpmask pm2;
92 bgppath p2;
93 clist l;
94 clist l2;
95 eclist el;
96 eclist el2;
97 lclist ll;
98 {
99 print "Entering path test...";
100 pm1 = / 4 3 2 1 /;
101 pm2 = [= 3..6 3 2 1..2 =];
102 print "Testing path masks: ", pm1, " ", pm2;
103 p2 = prepend( + empty +, 1 );
104 p2 = prepend( p2, 2 );
105 p2 = prepend( p2, 3 );
106 p2 = prepend( p2, 4 );
107 print "Testing path: (4 3 2 1) = ", p2;
108 print "Should be true: ", p2 ~ pm1, " ", p2 ~ pm2, " ", 3 ~ p2, " ", p2 ~ [2, 10..20], " ", p2 ~ [4, 10..20];
109 print "4 = ", p2.len;
110 p2 = prepend( p2, 5 );
111 print "Testing path: (5 4 3 2 1) = ", p2;
112 print "Should be false: ", p2 ~ pm1, " ", p2 ~ pm2, " ", 10 ~ p2, " ", p2 ~ [8, ten..(2*ten)], " ", p2 ~ [= 1..4 4 3 2 1 =], " ", p2 ~ [= 5 4 4..100 2 1 =];
113 print "Should be true: ", p2 ~ / ? 4 3 2 1 /, " ", p2, " ", / ? 4 3 2 1 /;
114 print "Should be true: ", p2 ~ [= * 4 3 * 1 =], " ", p2, " ", [= * 4 3 * 1 =];
115 print "Should be true: ", p2 ~ [= 5..6 4..10 1..3 1..3 1..65536 =];
116 print "Should be true: ", p2 ~ [= (3+2) (2*2) 3 2 1 =], " ", p2 ~ mkpath(5, 4);
117 print "Should be true: ", p2.len = 5, " ", p2.first = 5, " ", p2.last = 1;
118 print "Should be true: ", pm1 = [= 4 3 2 1 =], " ", pm1 != [= 4 3 1 2 =], " ",
119 pm2 = [= 3..6 3 2 1..2 =], " ", pm2 != [= 3..6 3 2 1..3 =], " ",
120 [= 1 2 (1+2) =] = [= 1 2 (1+2) =], " ", [= 1 2 (1+2) =] != [= 1 2 (2+1) =];
121 print "5 = ", p2.len;
122 print "Delete 3: ", delete(p2, 3);
123 print "Filter 1-3: ", filter(p2, [1..3]);
124
125 pm1 = [= 1 2 * 3 4 5 =];
126 p2 = prepend( + empty +, 5 );
127 p2 = prepend( p2, 4 );
128 p2 = prepend( p2, 3 );
129 p2 = prepend( p2, 3 );
130 p2 = prepend( p2, 2 );
131 p2 = prepend( p2, 1 );
132 print "Should be true: ", p2 ~ pm1, " ", p2, " ", pm1;
133 print "Delete 3: ", delete(p2, 3);
134 print "Delete 4-5: ", delete(p2, [4..5]);
135
136 l = - empty -;
137 print "Should be false in this special case: ", l ~ [(*,*)];
138 l = add( l, (one,2) );
139 print "Should be always true: ", l ~ [(*,*)];
140 l = add( l, (2,one+2) );
141 print "Community list (1,2) (2,3) ", l;
142 print "Should be true: ", (2,3) ~ l, " ", l ~ [(1,*)], " ", l ~ [p23]," ", l ~ [(2,2..3)], " ", l ~ [(1,1..2)], " ", l ~ [(1,1)..(1,2)];
143 l = add( l, (2,5) );
144 l = add( l, (5,one) );
145 l = add( l, (6,one) );
146 l = add( l, (one,one) );
147 l = delete( l, [(5,1),(6,one),(one,1)] );
148 l = delete( l, [(5,one),(6,one)] );
149 l = filter( l, [(1,*)] );
150 print "Community list (1,2) ", l;
151 print "Should be false: ", (2,3) ~ l, " ", l ~ [(2,*)], " ", l ~ [(one,3..6)];
152 print "Should be always true: ", l ~ [(*,*)];
153 l = add( l, (3,one) );
154 l = add( l, (one+one+one,one+one) );
155 l = add( l, (3,3) );
156 l = add( l, (3,4) );
157 l = add( l, (3,5) );
158 l2 = filter( l, [(3,*)] );
159 l = delete( l, [(3,2..4)] );
160 print "Community list (1,2) (3,1) (3,5) ", l, " len: ", l.len;
161 l = add( l, (3,2) );
162 l = add( l, (4,5) );
163 print "Community list (1,2) (3,1) (3,2) (3,5) (4,5) ", l, " len: ", l.len;
164 print "Should be true: ", l ~ [(*,2)], " ", l ~ [(*,5)], " ", l ~ [(*, one)];
165 print "Should be false: ", l ~ [(*,3)], " ", l ~ [(*,(one+6))], " ", l ~ [(*, (one+one+one))];
166 l = delete( l, [(*,(one+onef(3)))] );
167 l = delete( l, [(*,(4+one))] );
168 print "Community list (3,1) ", l;
169 l = delete( l, [(*,(onef(5)))] );
170 print "Community list empty ", l;
171 l2 = add( l2, (3,6) );
172 l = filter( l2, [(3,1..4)] );
173 l2 = filter( l2, [(3,3..6)] );
174 print "clist A (1..4): ", l;
175 print "clist B (3..6): ", l2;
176 print "clist A union B: ", add( l2, l );
177 print "clist A isect B: ", filter( l, l2 );
178 print "clist A \ B: ", delete( l, l2 );
179
180 el = -- empty --;
181 el = add(el, (rt, 10, 20));
182 el = add(el, (ro, 10.20.30.40, 100));
183 el = add(el, (ro, 11.21.31.41.mask(16), 200));
184 print "EC list (rt, 10, 20) (ro, 10.20.30.40, 100) (ro, 11.21.0.0, 200):";
185 print el;
186 print "EC len: ", el.len;
187 el = delete(el, (rt, 10, 20));
188 el = delete(el, (rt, 10, 30));
189 el = add(el, (unknown 2, ten, 1));
190 el = add(el, (unknown 5, ten, 1));
191 el = add(el, (rt, ten, one+one));
192 el = add(el, (rt, 10, 3));
193 el = add(el, (rt, 10, 4));
194 el = add(el, (rt, 10, 5));
195 el = add(el, (generic, 0x2000a, 3*ten));
196 el = delete(el, [(rt, 10, 2..ten)]);
197 print "EC list (ro, 10.20.30.40, 100) (ro, 11.21.0.0, 200) (rt, 10, 1) (unknown 0x5, 10, 1) (rt, 10, 30):";
198 print el;
199 el = filter(el, [(rt, 10, *)]);
200 print "EC list (rt, 10, 1) (rt, 10, 30): ", el;
201 print "Testing EC list, true: ", (rt, 10, 1) ~ el, " ", el ~ [(rt, 10, ten..40)];
202 print "Testing EC list, false: ", (rt, 10, 20) ~ el, " ", (ro, 10.20.30.40, 100) ~ el, " ", el ~ [(rt, 10, 35..40)], " ", el ~ [(ro, 10, *)];
203 el = add(el, (rt, 10, 40));
204 el2 = filter(el, [(rt, 10, 20..40)] );
205 el2 = add(el2, (rt, 10, 50));
206 print "eclist A (1,30,40): ", el;
207 print "eclist B (30,40,50): ", el2;
208 print "eclist A union B: ", add( el2, el );
209 print "eclist A isect B: ", filter( el, el2 );
210 print "eclist A \ B: ", delete( el, el2 );
211
212 ll = --- empty ---;
213 ll = add(ll, (ten, 20, 30));
214 ll = add(ll, (1000, 2000, 3000));
215 ll = add(ll, mktrip(100000));
216 print "LC list (10, 20, 30) (1000, 2000, 3000) (100000, 200000, 300000):";
217 print ll;
218 print "LC len: ", el.len;
219 print "Should be true: ", mktrip(1000) ~ ll, " ", ll ~ [(5,10,15), (10,20,30)], " ", ll ~ [(10,15..25,*)], " ", ll ~ [(ten, *, *)];
220 print "Should be false: ", mktrip(100) ~ ll, " ", ll ~ [(5,10,15), (10,21,30)], " ", ll ~ [(10,21..25,*)], " ", ll ~ [(11, *, *)];
221 print "LC filtered: ", filter(ll, [(5..15, *, *), (100000, 500..500000, *)]);
222
223 # test_roa();
224 }
225
226 function bla()
227 {
228 print "fifteen called";
229 return 15;
230 }
231
232 define four=4;
233 define onetwo=1.2.3.4;
234
235 function __test1()
236 {
237 if source ~ [ RTS_BGP, RTS_STATIC ] then {
238 # ospf_metric1 = 65535;
239 # ospf_metric2 = 1000;
240 ospf_tag = 0x12345678;
241 accept;
242 } reject;
243 }
244
245 function __test2()
246 {
247 if source ~ [ RTS_BGP, RTS_STATIC ] then {
248 # ospf_metric1 = 65535;
249 # ospf_metric2 = 1000;
250 ospf_tag = 0x12345678;
251 accept;
252 } reject;
253 }
254
255 function test_pxset(prefix set pxs)
256 {
257 print pxs;
258 print " must be true: ", 10.0.0.0/8 ~ pxs, ",", 10.0.0.0/10 ~ pxs, ",", 10.0.0.0/12 ~ pxs, ",",
259 20.0.0.0/24 ~ pxs, ",", 20.0.40.0/24 ~ pxs, ",", 20.0.0.0/26 ~ pxs, ",",
260 20.0.100.0/26 ~ pxs, ",", 20.0.0.0/28 ~ pxs, ",", 20.0.255.0/28 ~ pxs;
261 print " must be false: ", 10.0.0.0/7 ~ pxs, ",", 10.0.0.0/13 ~ pxs, ",", 10.0.0.0/16 ~ pxs, ",",
262 20.0.0.0/16 ~ pxs, ",", 20.0.0.0/23 ~ pxs, ",", 20.0.0.0/29 ~ pxs, ",",
263 11.0.0.0/10 ~ pxs, ",", 20.1.0.0/26 ~ pxs;
264 }
265
266 function test_undef(int a)
267 int b;
268 {
269 if a = 3
270 then b = 4;
271 print "Defined: ", a, " ", b, " ", defined(b);
272 }
273
274 define is1 = [ one, (2+1), (6-one), 8, 11, 15, 17, 19];
275 define is2 = [(17+2), 17, 15, 11, 8, 5, 3, 2];
276 define is3 = [5, 17, 2, 11, 8, 15, 3, 19];
277
278 define pxs2 = [ 10.0.0.0/16{8,12}, 20.0.0.0/16{24,28} ];
279
280 define ecs2 = [(rt, ten, (one+onef(0))*10), (ro, 100000, 100..200), (rt, 12345, *)];
281
282
283 function __startup()
284 int i;
285 bool b;
286 prefix px;
287 ip p;
288 pair pp;
289 quad qq;
290 ec cc;
291 int set is;
292 pair set ps;
293 ec set ecs;
294 ip set ips;
295 prefix set pxs;
296 string st;
297 {
298 print "1a-a1 = 30: ", '1a-a1';
299 print "Testing filter language:";
300 i = four;
301 i = 12*100 + 60/2 + i;
302 i = ( i + 0 );
303 print " arithmetics: 1234 = ", i;
304 printn " if statements ";
305 print "what happens here?";
306 printn ".";
307 if (i = 4) then { print "*** FAIL: if 0"; quitbird; } else printn ".";
308 # if !(i = 3) then { print "*** FAIL: if 0"; quitbird; } else printn ".";
309 if 1234 = i then printn "."; else { print "*** FAIL: if 1 else"; }
310 # if 1 <= 1 then printn "."; else { print "*** FAIL: test 3"; }
311 if 1234 < 1234 then { print "*** FAIL: test 4"; quitbird; } else print "ok";
312 is = [ 2, 3, 4, 7..11 ];
313
314 print "must be true: ", 1 = 1, " ", 1 != (0,1), " ", 1 != "a", " ", +empty+ = +empty+, " ", -empty- = -empty-, " ", --empty-- = --empty-- ,
315 " ", [1,4..10,20] = [1,4..10,20] , " ", [ 10.0.0.0/8{ 15 , 17 } ] = [ 10.0.0.0/8{ 15 , 17 } ];
316 print "must be false: ", 1 != 1, " ", 1 = (0,1), " ", 1 = "a", " ", +empty+ = -empty-, " ", -empty- = --empty--, " ", --empty-- = +empty+ ,
317 " ", [1,2] = [1,3], " ", [ 10.0.0.0/8{ 15 , 17 } ] = [ 11.0.0.0/8{ 15 , 17 } ];
318
319 print " must be true: ", 1.2.0.0/16 ~ [ 1.0.0.0/8{ 15 , 17 } ];
320 print " data types; must be true: ", 1.2.3.4 = 1.2.3.4, ",", 1 ~ [1,2,3], ",", 5 ~ [1..20], ",", 10 ~ is, ",", 2 ~ [ 1, 2, 3 ], ",", 5 ~ [ 4 .. 7 ], ",", 1.2.3.4 ~ [ 1.2.3.3..1.2.3.5 ], ",", 1.2.3.4 ~ 1.0.0.0/8, ",", 1.0.0.0/8 ~ 1.0.0.0/8, ",", 1.0.0.0/8 ~ [ 1.0.0.0/8+ ];
321 print " must be true: ", true && true, ",", true || false, ",", ! false && ! false && true, ",", 1 < 2 && 1 != 3, ",", true && true && ! false, ",", true || 1+"a", ",", !(false && 1+"a");
322
323 print " must be true: ", defined(1), ",", defined(1.2.3.4), ",", 1 != 2, ",", 1 <= 2;
324 print " data types: must be false: ", 1 ~ [ 2, 3, 4 ], ",", 5 ~ is, ",", 1.2.3.4 ~ [ 1.2.3.3, 1.2.3.5 ], ",", (1,2) > (2,2), ",", (1,1) > (1,1), ",", 1.0.0.0/9 ~ [ 1.0.0.0/8- ], ",", 1.2.0.0/17 ~ [ 1.0.0.0/8{ 15 , 16 } ], ",", true && false;
325
326
327 print " must be true: ", 1 ~ is1, " ", 3 ~ is1, " ", 5 ~ is1;
328 print " must be true: ", (one+2) ~ is1, " ", 2 ~ is2, " ", 2 ~ is3;
329 print " must be false: ", 4 ~ is1, " ", 4 ~ is2, " ", 4 ~ is3;
330 print " must be false: ", 10 ~ is1, " ", 10 ~ is2, " ", 10 ~ is3;
331 print " must be true: ", 15 ~ is1, " ", 15 ~ is2, " ", 15 ~ is3;
332 print " must be false: ", 18 ~ is1, " ", 18 ~ is2, " ", 18 ~ is3;
333 print " must be true: ", 19 ~ is1, " ", 19 ~ is2, " ", 19 ~ is3;
334 print " must be false: ", 20 ~ is1, " ", 20 ~ is2, " ", 20 ~ is3;
335
336 px = 1.2.0.0/18;
337 print "Testing prefixes: 1.2.0.0/18 = ", px;
338 print " must be true: ", 192.168.0.0/16 ~ 192.168.0.0/16, " ", 192.168.0.0/17 ~ 192.168.0.0/16, " ", 192.168.254.0/24 ~ 192.168.0.0/16;
339 print " must be false: ", 192.168.0.0/15 ~ 192.168.0.0/16, " ", 192.160.0.0/17 ~ 192.168.0.0/16;
340
341 p = 127.1.2.3;
342 print "Testing mask : 127.0.0.0 = ", p.mask(8);
343
344 pp = (1, 2);
345 print "Testing pairs: (1,2) = ", (1,2), " = ", pp, " = ", (1,1+1), " = ", 'mkpair-a'(2);
346 print " must be true: ", (1,2) = (1,1+1);
347 print "Testing enums: ", RTS_DUMMY, " ", RTS_STATIC, " ",
348 ", true: ", RTS_STATIC ~ [RTS_STATIC, RTS_DEVICE],
349 ", false: ", RTS_BGP ~ [RTS_STATIC, RTS_DEVICE];
350
351 ps = [(1,(one+one)), (3,4)..(4,8), (5,*), (6,3..6)];
352 print "Pair set: ", ps;
353 print "Testing pair set, true: ", pp ~ ps, " ", (3,5) ~ ps, " ", (4,1) ~ ps, " ", (5,4) ~ ps, " ", (5,65535) ~ ps, " ", (6,4) ~ ps, " ", (3, 10000) ~ ps;
354 print "Testing pair set, false: ", (3,3) ~ ps, " ", (4,9) ~ ps, " ", (4,65535) ~ ps, " ", (6,2) ~ ps, " ", (6,6+one) ~ ps, " ", ((one+6),2) ~ ps, " ", (1,1) ~ ps;
355
356 ps = [(20..150, 200..300), (50100..50200, 1000..50000), (*, 5+5)];
357 print "Pair set: .. too long ..";
358 print "Testing pair set, true: ", (100,200) ~ ps, " ", (150,300) ~ ps, " ", (50180,1200) ~ ps, " ", (50110,49000) ~ ps, " ", (0,10) ~ ps, " ", (64000,10) ~ ps;
359 print "Testing pair set, false: ", (20,199) ~ ps, " ", (151,250) ~ ps, " ", (50050,2000) ~ ps, " ", (50150,50050) ~ ps, " ", (10,9) ~ ps, " ", (65535,11) ~ ps ;
360
361 qq = 1.2.3.4;
362 print "Testinq quad: 1.2.3.4 = ", qq,
363 ", true: ", qq = 1.2.3.4, " ", qq ~ [1.2.3.4, 5.6.7.8],
364 ", false: ", qq = 4.3.2.1, " ", qq ~ [1.2.1.1, 1.2.3.5];
365
366 cc = (rt, 12345, 200000);
367 print "Testing EC: (rt, 12345, 200000) = ", cc;
368 print "Testing EC: (ro, 100000, 20000) = ", (ro, 100000, 20000);
369 print "Testing EC: (rt, 10.20.30.40, 20000) = ", (rt, 10.20.30.40, 20000);
370 print " true: ", cc = (rt, 12345, 200000), " ", cc < (rt, 12345, 200010),
371 ", false: ", cc = (rt, 12346, 200000), " ", cc = (ro, 12345, 200000), " ", cc > (rt, 12345, 200010);
372
373 ecs = [(rt, ten, (one+onef(0))*10), (ro, 100000, 100..200), (rt, 12345, *)];
374 print "EC set: ", ecs;
375 print "EC set: ", ecs2;
376 print "Testing EC set, true: ", (rt, 10, 20) ~ ecs, " ", (ro, 100000, 100) ~ ecs, " ", (ro, 100000, 200) ~ ecs,
377 " ", (rt, 12345, 0) ~ ecs, " ", cc ~ ecs, " ", (rt, 12345, 4000000) ~ ecs;
378 print "Testing EC set, false: ", (ro, 10, 20) ~ ecs, " ", (rt, 10, 21) ~ ecs, " ", (ro, 100000, 99) ~ ecs,
379 " ", (ro, 12345, 10) ~ ecs, " ", (rt, 12346, 0) ~ ecs, " ", (ro, 0.1.134.160, 150) ~ ecs;
380
381 st = "Hello";
382 print "Testing string: ", st, " true: ", st ~ "Hell*", " false: ", st ~ "ell*";
383
384 b = true;
385 print "Testing bool: ", b, ", ", !b;
386
387 if ( b = true ) then print "Testing bool comparison b = true: ", b;
388 else { print "*** FAIL: TRUE test failed" ; quitbird; }
389
390 ips = [ 1.1.1.0 .. 1.1.1.255, ip1222];
391 print "Testing IP sets: ";
392 print ips;
393 print " must be true: ", 1.1.1.0 ~ ips, ",", 1.1.1.100 ~ ips, ",", 1.2.2.2 ~ ips;
394 print " must be false: ", 1.1.0.255 ~ ips, ",", 1.1.2.0 ~ ips, ",", 1.2.2.3 ~ ips, ",", 192.168.1.1 ~ ips;
395
396 pxs = [ 1.2.0.0/16, 1.4.0.0/16+];
397 print "Testing prefix sets: ";
398 print pxs;
399 print " must be true: ", 1.2.0.0/16 ~ pxs, ",", 1.4.0.0/16 ~ pxs, ",", 1.4.0.0/18 ~ pxs, ",", 1.4.0.0/32 ~ pxs;
400 print " must be false: ", 1.1.0.0/16 ~ pxs, ",", 1.3.0.0/16 ~ pxs, ",", 1.2.0.0/15 ~ pxs, ",", 1.2.0.0/17 ~ pxs, ",",
401 1.2.0.0/32 ~ pxs, ",", 1.4.0.0/15 ~ pxs;
402
403 test_pxset(pxs2);
404 test_pxset([ 10.0.0.0/16{8,12}, 20.0.0.0/16{24,28} ]);
405 print "What will this do? ", [ 1, 2, 1, 1, 1, 3, 4, 1, 1, 1, 5 ];
406
407 print "Testing functions...";
408 callme ( 1, 2 );
409 callme ( 2, 2 );
410 callme ( 2, 2 );
411 callme ( 3, 2 );
412 callme ( 4, 4 );
413 callme ( 7, 2 );
414
415 i = fifteen();
416 print "Testing function calls: 15 = ", i;
417
418 path_test();
419
420 print "1.2.3.4 = ", onetwo;
421
422 i = 4200000000;
423 print "4200000000 = ", i, " false: ", i = 4200000000, " ", i > 4100000000, " false: ", i > 4250000000;
424
425 test_undef(2);
426 test_undef(3);
427 test_undef(2);
428
429 print "Testing include";
430 include "test.conf.inc";
431
432 print "done";
433 quitbird;
434 # print "*** FAIL: this is unreachable";
435 }
436
437 filter testf
438 int j;
439 {
440 print "Heya, filtering route to ", net.ip, " prefixlen ", net.len, " source ", source;
441 print "This route was from ", from;
442 j = 7;
443 j = 17;
444 if rip_metric > 15 then {
445 reject "RIP Metric is more than infinity";
446 }
447 rip_metric = 14;
448 unset(rip_metric);
449
450 accept "ok I take that";
451 }
452
453 eval __startup();