diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2020-08-23 18:13:51 +0200 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2020-08-23 18:13:51 +0200 |
commit | 64b0f4bd6cc2040483734f3080a9f8b06604d7ae (patch) | |
tree | 2812f65ef217cac0f22e01250a4713eaf92feb67 /roles/install_bind/templates/named.conf.j2 | |
parent | 7e89a60f8c92037f55792bdf37707cc068f8cf27 (diff) |
bind: allow requests from link-local adresses
Diffstat (limited to 'roles/install_bind/templates/named.conf.j2')
-rw-r--r-- | roles/install_bind/templates/named.conf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/install_bind/templates/named.conf.j2 b/roles/install_bind/templates/named.conf.j2 index 0b134d9..15af2e7 100644 --- a/roles/install_bind/templates/named.conf.j2 +++ b/roles/install_bind/templates/named.conf.j2 @@ -21,7 +21,7 @@ options { {% endfor %} }; - allow-recursion { 127.0.0.1; 10.222.0.0/16; 10.30.0.0/18; 2001:470:cd45:ff00::/56; 2a03:2260:1016::/48; }; + allow-recursion { 127.0.0.1; 10.222.0.0/16; 10.30.0.0/18; 2001:470:cd45:ff00::/56; 2a03:2260:1016::/48; fe80::/64; }; allow-transfer { none; }; version none; |