mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Filter: the test conf checks also a bit of BGP args
Uncommented an old test.
This commit is contained in:
parent
0575c7db72
commit
f2f5a7d945
@ -55,21 +55,20 @@ protocol static {
|
|||||||
rip_metric = rip_metric + 5;
|
rip_metric = rip_metric + 5;
|
||||||
print rip_metric;
|
print rip_metric;
|
||||||
|
|
||||||
#
|
bgp_community = -empty-;
|
||||||
# TODO: uncomment this part after finishing BGP integration version
|
print "hi";
|
||||||
#
|
bgp_community = add(bgp_community, (1,2));
|
||||||
# bgp_community = -empty-;
|
print "hello";
|
||||||
# print "hi";
|
bgp_community = add(bgp_community, (2,3));
|
||||||
# bgp_community = add(bgp_community, (1,2));
|
bgp_community.add((4,5));
|
||||||
# print "hello";
|
print "community = ", bgp_community;
|
||||||
# bgp_community = add(bgp_community, (2,3));
|
bgp_community.delete((2,3));
|
||||||
# bgp_community.add((4,5));
|
print "community = ", bgp_community;
|
||||||
# print "community = ", bgp_community;
|
bgp_community.empty;
|
||||||
# bgp_community.delete((2,3));
|
print "community = ", bgp_community;
|
||||||
# print "community = ", bgp_community;
|
print "done";
|
||||||
# bgp_community.empty;
|
|
||||||
# print "community = ", bgp_community;
|
accept;
|
||||||
# print "done";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
route 0.0.0.0/0 via 195.113.31.113;
|
route 0.0.0.0/0 via 195.113.31.113;
|
||||||
|
Loading…
Reference in New Issue
Block a user