diff options
author | Asbjørn Sloth Tønnesen <asbjorn@labitat.dk> | 2025-04-27 17:14:05 +0000 |
---|---|---|
committer | Asbjørn Sloth Tønnesen <asbjorn@labitat.dk> | 2025-04-27 17:17:48 +0000 |
commit | 15cb51cbf43967bfed4c2da621fb432bf33b1fb8 (patch) | |
tree | 4440c69bfd9da81451135bfa26bffba1afed10df | |
parent | bb902cab6b230ac8e5f6cd4afa11aae94f9f2dd5 (diff) | |
download | labitat-ansible-15cb51cbf43967bfed4c2da621fb432bf33b1fb8.tar.gz labitat-ansible-15cb51cbf43967bfed4c2da621fb432bf33b1fb8.tar.xz labitat-ansible-15cb51cbf43967bfed4c2da621fb432bf33b1fb8.zip |
space_server: named: allow queries from new prefixes
Signed-off-by: Asbjørn Sloth Tønnesen <asbjorn@labitat.dk>
-rw-r--r-- | roles/space_server/templates/named.conf.j2 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/space_server/templates/named.conf.j2 b/roles/space_server/templates/named.conf.j2 index 0751ffe..9c5c25c 100644 --- a/roles/space_server/templates/named.conf.j2 +++ b/roles/space_server/templates/named.conf.j2 @@ -10,17 +10,21 @@ options { listen-on port 53 { 127.0.0.1; + 45.145.93.0; 185.38.175.0; }; listen-on-v6 port 53 { ::1; + 2a00:fbe4:1ab::; 2a01:4262:1ab::; }; allow-query { 127.0.0.1; + 45.145.93.0/24; 185.38.175.0/24; 10.42.0.0/16; ::1; + 2a00:fbe4:1ab::/48; 2a01:4262:1ab::/48; }; dns64 2a01:4262:1ab:0:0:f::/96 { |