aboutsummaryrefslogtreecommitdiff
path: root/tnet/files/lhn2ix/bird-tnet.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tnet/files/lhn2ix/bird-tnet.conf')
-rw-r--r--tnet/files/lhn2ix/bird-tnet.conf41
1 files changed, 41 insertions, 0 deletions
diff --git a/tnet/files/lhn2ix/bird-tnet.conf b/tnet/files/lhn2ix/bird-tnet.conf
new file mode 100644
index 0000000..b020368
--- /dev/null
+++ b/tnet/files/lhn2ix/bird-tnet.conf
@@ -0,0 +1,41 @@
+define tnet = fdb1:4242:3538::/48;
+define tnet_router = fdb1:4242:3538:ffff::/64;
+
+function is_tnet() -> bool
+{
+ return net ~ tnet && ! (net ~ tnet_router);
+}
+
+template bgp tnet_tpl {
+ local as 4242423538;
+ neighbor internal;
+
+ direct;
+
+ password "trygvis";
+
+ ipv6 {
+ next hop self;
+ import filter {
+ if is_tnet() then {
+ print proto, ": import accept, net=", net, ", from=", from, ", gw=", gw;
+ accept;
+ }
+ print proto, ": import reject, reason=not tnet"; reject;
+ };
+ # newer bird's only
+ # import keep filtered;
+ export filter {
+ if is_tnet() then {
+ print proto, ": export accept, net=", net, ", from=", from, ", gw=", gw;
+ accept;
+ }
+ print proto, ": export reject, reason=not tnet"; reject;
+ };
+ };
+}
+
+protocol bgp tnet_knot from tnet_tpl {
+ neighbor fdb1:4242:3538:ffff:18b7:d3ec:5608:db9a;
+ interface "tnet-knot";
+}