aboutsummaryrefslogtreecommitdiff
path: root/tnet/files/kv24ix/bird-tnet.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tnet/files/kv24ix/bird-tnet.conf')
-rw-r--r--tnet/files/kv24ix/bird-tnet.conf41
1 files changed, 0 insertions, 41 deletions
diff --git a/tnet/files/kv24ix/bird-tnet.conf b/tnet/files/kv24ix/bird-tnet.conf
deleted file mode 100644
index a8fb14c..0000000
--- a/tnet/files/kv24ix/bird-tnet.conf
+++ /dev/null
@@ -1,41 +0,0 @@
-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:ea4:11cb:863:5252;
- interface "tnet-knot";
-}