From a43904d8ac52d63c292a4cbb5a238eac43f92d91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20M=2E=20C=C3=B4t=C3=A9?= Date: Thu, 16 Nov 2023 23:53:35 -0500 Subject: [PATCH] Updated default config file to use DoH by default. Clear text DNS can get throttled by ISP or some IDS. This default helps alleviate this behavior. --- configs/dnscheck.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/configs/dnscheck.yaml b/configs/dnscheck.yaml index f6a79c9..bef7704 100755 --- a/configs/dnscheck.yaml +++ b/configs/dnscheck.yaml @@ -3,39 +3,39 @@ rateLimit: 100 dnsservers: - name: Quad9 description: Malware Blocking, DNSSEC Validation - ip: 9.9.9.9 + ip: https://dns.quad9.net/dns-query # rateLimit: 10 - name: Quad9 Secured description: "Secured w/ECS: Malware blocking, DNSSEC Validation, ECS enabled" - ip: 9.9.9.11 + ip: https://dns11.quad9.net/dns-query - name: Quad9 Unsecured description: "Unsecured: No Malware blocking, no DNSSEC validation (for experts only!)" - ip: 9.9.9.10 + ip: https://dns10.quad9.net/dns-query - name: Cloudflare description: Cloudflare DNS(https://1.1.1.1/) - ip: 1.1.1.1 + ip: https://cloudflare-dns.com/dns-query - name: Google description: Google DNS (https://developers.google.com/speed/public-dns) - ip: 8.8.8.8 + ip: https://dns.google/dns-query - name: OpenDNS description: OpenDNS Family Shield - ip: 208.67.222.123 + ip: https://doh.familyshield.opendns.com/dns-query - name: CIRA Private description: DNS resolution only - ip: 149.112.121.10 + ip: https://private.canadianshield.cira.ca/dns-query - name: CIRA Protected description: Malware and phishing protection - ip: 149.112.121.20 + ip: https://protected.canadianshield.cira.ca/dns-query - name: CIRA Family description: Protected + blocking pornographic content - ip: 149.112.121.30 + ip: https://family.canadianshield.cira.ca/dns-query - name: Adguard description: Block ads and trackers - ip: 94.140.14.14 + ip: https://dns.adguard-dns.com/dns-query - name: Adguard Non-Filtering description: Does not block ads, trackers, or any other DNS requests - ip: 94.140.14.140 + ip: https://unfiltered.adguard-dns.com/dns-query - name: Adguard Family protection description: Block ads, trackers, adult content, and enable Safe Search and Safe Mode, where possible - ip: 94.140.14.15 + ip: https://family.adguard-dns.com/dns-query \ No newline at end of file