From 55ca196248f7222fc79a1500bab1204d2fa144af Mon Sep 17 00:00:00 2001 From: Julian Labus Date: Mon, 5 Nov 2018 15:43:12 +0100 Subject: [PATCH] Revert "Role service-bind-slave: listen on loopback + anycast ip addresses" This reverts commit 61382ce6765463676ddbb7a2f8138abc9325e073. --- roles/service-bind-slave/templates/named.conf.options.j2 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/roles/service-bind-slave/templates/named.conf.options.j2 b/roles/service-bind-slave/templates/named.conf.options.j2 index f2c7215..38edce5 100644 --- a/roles/service-bind-slave/templates/named.conf.options.j2 +++ b/roles/service-bind-slave/templates/named.conf.options.j2 @@ -19,8 +19,6 @@ options { listen-on { 127.0.0.1; - {{ ffmwu_anycast_ipv4 | ipaddr('address') }}; - {{ ffmwu_loopback_net_ipv4 | ipaddr('net') | ipaddr(magic) | ipaddr('address') }}; {% for mesh in meshes %} {{ mesh.ipv4_network | ipaddr('net') | ipaddr(magic) | ipaddr('address') }}; {% endfor %} @@ -29,8 +27,6 @@ options { listen-on-v6 { ::1; - {{ ffmwu_anycast_ipv6 | ipaddr('address') }}; - {{ ffmwu_loopback_net_ipv6 | ipaddr('net') | ipaddr(magic) | ipaddr('address') }}; {% for mesh in meshes %} {% for ip in mesh.ipv6_ula %} {{ ip | ipaddr('net') | ipsubnet(64, 0) | ipaddr(magic) | ipaddr('address') }};