From 91f97833a3a97c097fb75b7017e6b67a4cb2d7d4 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 21 Mar 2018 08:30:36 +0100 Subject: [PATCH] Switch to Quad114 as the default resolver Quad9 current returns SERVFAIL for dnscrypt.info and there have been reports of it not working as expected in some countries as well. --- dnscrypt-proxy/example-dnscrypt-proxy.toml | 2 +- dnscrypt-proxy/xtransport.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dnscrypt-proxy/example-dnscrypt-proxy.toml b/dnscrypt-proxy/example-dnscrypt-proxy.toml index 540c6a56..c776172c 100644 --- a/dnscrypt-proxy/example-dnscrypt-proxy.toml +++ b/dnscrypt-proxy/example-dnscrypt-proxy.toml @@ -110,7 +110,7 @@ cert_refresh_delay = 240 ## It will not be used if the configured system DNS works. ## A resolver supporting DNSSEC is recommended. This may become mandatory. -fallback_resolver = '9.9.9.9:53' +fallback_resolver = '114.114.114.114:53' ## Never try to use the system DNS settings; unconditionally use the diff --git a/dnscrypt-proxy/xtransport.go b/dnscrypt-proxy/xtransport.go index 968d290c..232edeba 100644 --- a/dnscrypt-proxy/xtransport.go +++ b/dnscrypt-proxy/xtransport.go @@ -19,7 +19,7 @@ import ( "github.com/miekg/dns" ) -const DefaultFallbackResolver = "9.9.9.9:53" +const DefaultFallbackResolver = "114.114.114.114:53" type CachedIPs struct { sync.RWMutex