Files
2025-10-01 13:58:58 +08:00
..
2024-08-19 15:30:21 +08:00
2021-05-10 16:43:07 +08:00
2019-08-04 00:29:21 +08:00
2024-07-08 14:55:11 +08:00
2025-10-01 13:58:58 +08:00
2021-04-28 12:36:41 +00:00
2024-04-19 12:41:18 +08:00

Android DoT / DoH config

Go HERE

Dnscrypt-proxy

Go HERE

Knot-resolver

-- Load useful modules
modules = {
        'policy',
        'hints > iterate',  -- Load /etc/hosts and allow custom root hints
--      'stats',            -- Track internal statistics
--      'predict',          -- Prefetch expiring/frequent records
}
net.listen({'::1', '127.0.0.1'}, 53)
-- Cache size
cache.size = 100 * MB

-- Forward queries to Blahdns
policy.add(policy.all(policy.TLS_FORWARD({{'78.46.244.143@853', hostname='dot-de.blahdns.com', ca_file='/etc/ssl/certs/ca-certificates.crt'}})))

Unbound

Go HERE

Stubby

Go HERE

Windows

Simplednscrypt -> https://simplednscrypt.org/ and install

Kdig

kdig google.com @dot-de.blahdns.com +tls

getdns

sudo apt install getdns-utils
getdns_query @78.46.244.143 -s -L -A www.google.com

Curl

curl -H 'accept: application/dns-json' 'https://doh-jp.blahdns.com/dns-query?name=www.google.com&type=A'

Facebook python doh-proxy

sudo apt install python3-pip python3-setuptools python3-wheel
sudo -H pip3 install doh-proxy
doh-client --domain doh-de.blahdns.com --qname google.com --qtype A

Linux-systemd

nano /etc/systemd/resolved.conf

DNS=478.46.244.143
DNSOverTLS=opportunistic

// Save and restart service
sudo systemctl restart systemd-resolved
// Check settings
resolvectl status
resolvectl query dot-de.blahdns.com -t A