aboutsummaryrefslogtreecommitdiff
path: root/tnet/templates/bird-tnet-pre.conf.j2
diff options
context:
space:
mode:
Diffstat (limited to 'tnet/templates/bird-tnet-pre.conf.j2')
-rw-r--r--tnet/templates/bird-tnet-pre.conf.j220
1 files changed, 20 insertions, 0 deletions
diff --git a/tnet/templates/bird-tnet-pre.conf.j2 b/tnet/templates/bird-tnet-pre.conf.j2
new file mode 100644
index 0000000..e762cd5
--- /dev/null
+++ b/tnet/templates/bird-tnet-pre.conf.j2
@@ -0,0 +1,20 @@
+define tnet = {{ ipam6.networks.tnet_dn42.range }};
+
+function is_tnet(){{ " -> bool" if birdv >= 2015 }}
+{
+ 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(){{ " -> bool" if birdv >= 2015 }}
+{
+ return net ~ [
+ fd00::/8{44,64} # ULA address space as per RFC 4193
+ ];
+}