diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2024-06-13 22:39:18 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2024-06-13 22:39:18 +0200 |
commit | 972364516ba400878b9e06fe239c1f07d751d4fa (patch) | |
tree | 192cbde5b2502db476b237baa9f973b406f1951e /tnet/templates | |
parent | 76e3c7f247f16056129d945e9002730329e57ad6 (diff) | |
download | infra-972364516ba400878b9e06fe239c1f07d751d4fa.tar.gz infra-972364516ba400878b9e06fe239c1f07d751d4fa.tar.bz2 infra-972364516ba400878b9e06fe239c1f07d751d4fa.tar.xz infra-972364516ba400878b9e06fe239c1f07d751d4fa.zip |
tnet
Diffstat (limited to 'tnet/templates')
-rw-r--r-- | tnet/templates/bird-tnet-pre.conf.j2 | 7 | ||||
-rw-r--r-- | tnet/templates/bird-tnet.conf.j2 | 8 |
2 files changed, 7 insertions, 8 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..ba012cf --- /dev/null +++ b/tnet/templates/bird-tnet-pre.conf.j2 @@ -0,0 +1,7 @@ +define tnet = fdb1:4242:3538::/48; +define tnet_router = fdb1:4242:3538:ffff::/64; + +function is_tnet() -> bool +{ + return net ~ tnet && ! (net ~ tnet_router); +} diff --git a/tnet/templates/bird-tnet.conf.j2 b/tnet/templates/bird-tnet.conf.j2 index 6e1ba0e..57e557a 100644 --- a/tnet/templates/bird-tnet.conf.j2 +++ b/tnet/templates/bird-tnet.conf.j2 @@ -1,11 +1,3 @@ -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; |