From a3af0e829adfebe9f31c0328c01c1c65222745cb Mon Sep 17 00:00:00 2001 From: bert hubert Date: Sat, 21 Nov 2015 22:02:18 +0100 Subject: [PATCH] shift from binding to 0.0.0.0 by default to binding to 127.0.0.1. Our last chance to make this painful change. --- pdns/dnsdist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsdist.cc b/pdns/dnsdist.cc index 13cc129bc3..f7482cced4 100644 --- a/pdns/dnsdist.cc +++ b/pdns/dnsdist.cc @@ -1167,7 +1167,7 @@ try } if(g_locals.empty()) - g_locals.push_back({ComboAddress("0.0.0.0", 53), true}); + g_locals.push_back({ComboAddress("127.0.0.1", 53), true}); vector toLaunch; -- 2.47.2