From: bert hubert Date: Sat, 21 Nov 2015 21:02:18 +0000 (+0100) Subject: shift from binding to 0.0.0.0 by default to binding to 127.0.0.1. Our last chance... X-Git-Tag: dnsdist-1.0.0-alpha1~210^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3af0e829adfebe9f31c0328c01c1c65222745cb;p=thirdparty%2Fpdns.git 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. --- 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;