aboutsummaryrefslogtreecommitdiff
path: root/tnet/files/akili/bird-tnet-pre.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tnet/files/akili/bird-tnet-pre.conf')
-rw-r--r--tnet/files/akili/bird-tnet-pre.conf21
1 files changed, 17 insertions, 4 deletions
diff --git a/tnet/files/akili/bird-tnet-pre.conf b/tnet/files/akili/bird-tnet-pre.conf
index 7994dfe..74c981d 100644
--- a/tnet/files/akili/bird-tnet-pre.conf
+++ b/tnet/files/akili/bird-tnet-pre.conf
@@ -1,7 +1,20 @@
-define tnet = fdb1:4242:3538::/48;
-define tnet_router = fdb1:4242:3538:ffff::/64;
+define tnet = fdb1:4242:3538:2000::/52;
-function is_tnet() # -> bool
+function is_tnet()
{
- return net ~ tnet && ! (net ~ tnet_router);
+ return net ~ tnet;
+}
+
+roa6 table dn42_roa;
+
+protocol static {
+ roa6 { table dn42_roa; };
+ include "/etc/bird/dn42_roa_bird2_6.conf";
+};
+
+function dn42_is_valid_network()
+{
+ return net ~ [
+ fd00::/8{44,64} # ULA address space as per RFC 4193
+ ];
}