From f61c90ed76b97614c79fcfa690b8180623b95062 Mon Sep 17 00:00:00 2001 From: quindecim <49964366+quindecim@users.noreply.github.com> Date: Tue, 11 Oct 2022 00:51:18 +0200 Subject: [PATCH] Move `bootstrap_resolvers` and `netprobe_address` to dns.watch https://nitter.net/censurfridns/status/1491839225192501248#m --- CHANGELOG.md | 2 ++ README.md | 4 ++-- config/dnscrypt-proxy.toml | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfa41a2..f234fdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ ### Changed - Optimized relays. +- Use [dns.watch](https://dns.watch/) `resolver1` and `resolver2` as `bootstrap_resolvers`. +- Use [dns.watch](https://dns.watch/) `resolver1` as `netprobe_address`. ### Removed - `breddns` resolver (unresponsive). diff --git a/README.md b/README.md index bf466de..0db6079 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,9 @@ All the binary files are downloaded from the [official release page](https://git - `dnscrypt_ephemeral_keys = true` (create a new, unique key for every single DNS query) -- `bootstrap_resolvers = ['91.239.100.100:53', '89.233.43.71:53']` (use [UncensoredDNS (Anycast & Unicast)](https://blog.uncensoreddns.org/) instead [CloudFlare](https://archive.today/tS1Ln)) +- `bootstrap_resolvers = ['84.200.69.80:53', '84.200.70.40:53']` (use [resolver1.dns.watch](https://dns.watch/) and [resolver2.dns.watch](https://dns.watch/) instead [CloudFlare](https://archive.today/tS1Ln)) -- `netprobe_address = '91.239.100.100:53'` (use [UncensoredDNS (Anycast)](https://blog.uncensoreddns.org/) instead [CloudFlare](https://archive.today/tS1Ln)) +- `netprobe_address = '84.200.69.80:53'` (use [resolver1.dns.watch](https://dns.watch/) instead [CloudFlare](https://archive.today/tS1Ln)) - `block_ipv6 = true` (immediately respond to IPv6-related queries with an empty response) diff --git a/config/dnscrypt-proxy.toml b/config/dnscrypt-proxy.toml index f4c4211..6e292c3 100644 --- a/config/dnscrypt-proxy.toml +++ b/config/dnscrypt-proxy.toml @@ -248,7 +248,7 @@ dnscrypt_ephemeral_keys = true ## not be sent there. If you're using DNSCrypt or Anonymized DNS and your ## lists are up to date, these resolvers will not even be used. -bootstrap_resolvers = ['91.239.100.100:53', '89.233.43.71:53'] +bootstrap_resolvers = ['84.200.69.80:53', '84.200.70.40:53'] ## Always use the bootstrap resolver before the system DNS settings. @@ -274,7 +274,7 @@ netprobe_timeout = -1 ## On other operating systems, the connection will be initialized ## but nothing will be sent at all. -netprobe_address = '91.239.100.100:53' +netprobe_address = '84.200.69.80:53' ## Offline mode - Do not use any remote encrypted servers.