aboutsummaryrefslogtreecommitdiff
path: root/tnet/files/akili/bird-tnet.conf
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2024-06-13 20:08:38 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2024-06-13 20:08:38 +0200
commit76e3c7f247f16056129d945e9002730329e57ad6 (patch)
tree5aaf78fd7e8d861f0b200699b2db9d59bef1731c /tnet/files/akili/bird-tnet.conf
parent36f713dff28d357458b787e2f1e00a71da7bd51f (diff)
downloadinfra-76e3c7f247f16056129d945e9002730329e57ad6.tar.gz
infra-76e3c7f247f16056129d945e9002730329e57ad6.tar.bz2
infra-76e3c7f247f16056129d945e9002730329e57ad6.tar.xz
infra-76e3c7f247f16056129d945e9002730329e57ad6.zip
tnet
Diffstat (limited to 'tnet/files/akili/bird-tnet.conf')
-rw-r--r--tnet/files/akili/bird-tnet.conf46
1 files changed, 46 insertions, 0 deletions
diff --git a/tnet/files/akili/bird-tnet.conf b/tnet/files/akili/bird-tnet.conf
new file mode 100644
index 0000000..3c53d79
--- /dev/null
+++ b/tnet/files/akili/bird-tnet.conf
@@ -0,0 +1,46 @@
+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_hash from tnet_tpl {
+ neighbor fdb1:4242:3538:ffff:ca85:f812:3935:5fba;
+ interface "tnet-hash";
+}
+
+protocol bgp tnet_knot from tnet_tpl {
+ neighbor fdb1:4242:3538:ffff:59d7:cf77:8b5d:761a;
+ interface "tnet-knot";
+}