mirror of
https://github.com/ookangzheng/blahdns.git
synced 2025-12-13 12:45:37 +07:00
1.9 KiB
Executable File
1.9 KiB
Executable File
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

