diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2024-08-18 09:43:30 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2024-08-18 09:43:30 +0200 |
commit | 4a40030a65f8029740d5c9ccb226114073f52eb8 (patch) | |
tree | f2a89968f27924f03641948e32c71c9eb4594ac5 /ansible/group_vars/all | |
parent | 606474b17fa81eeaecd2025c52feafec8056790a (diff) | |
download | infra-4a40030a65f8029740d5c9ccb226114073f52eb8.tar.gz infra-4a40030a65f8029740d5c9ccb226114073f52eb8.tar.bz2 infra-4a40030a65f8029740d5c9ccb226114073f52eb8.tar.xz infra-4a40030a65f8029740d5c9ccb226114073f52eb8.zip |
Better if support
Diffstat (limited to 'ansible/group_vars/all')
-rw-r--r-- | ansible/group_vars/all/bird.yml | 3 | ||||
-rw-r--r-- | ansible/group_vars/all/ipam.yml | 23 |
2 files changed, 18 insertions, 8 deletions
diff --git a/ansible/group_vars/all/bird.yml b/ansible/group_vars/all/bird.yml new file mode 100644 index 0000000..dce5afa --- /dev/null +++ b/ansible/group_vars/all/bird.yml @@ -0,0 +1,3 @@ +# which version of bird is used, 0-padded with 3 digits +# 2.15 => 2015 +birdv: 0 diff --git a/ansible/group_vars/all/ipam.yml b/ansible/group_vars/all/ipam.yml index c182329..5c12ca2 100644 --- a/ansible/group_vars/all/ipam.yml +++ b/ansible/group_vars/all/ipam.yml @@ -1,10 +1,17 @@ +# Netmasks for prefixes: +# 48: ffff:ffff:ffff:0000:: +# 52: ffff:ffff:ffff:f000:: +# 56: ffff:ffff:ffff:ff00:: +# 60: ffff:ffff:ffff:fff0:: +# 64: ffff:ffff:ffff:ffff:: ipam6: networks: - - bitraf-dn42: - range: "fdb1:4242:3538:::/48" - - tnet-dn42: - range: "fdb1:4242:3538:a000::/52" - - conflatorio-dn42: - range: "fdb1:4242:3538:a001::/64" - hosts: - - conflatorio-ix: "fdb1:4242:3538:a001::ffff" + bitraf_dn42: + range: "fdb1:4242:3538:::/48" + tnet_dn42: + range: "fdb1:4242:3538:a000::/52" + conflatorio_dn42: + description: Internal network on host + range: "fdb1:4242:3538:a001::/64" + hosts: + - conflatorio-ix: "fdb1:4242:3538:a001::ffff" |