mirror of
https://github.com/ookangzheng/blahdns.git
synced 2025-12-16 06:05:38 +07:00
106 lines
3.0 KiB
Markdown
Executable File
106 lines
3.0 KiB
Markdown
Executable File
## Android DoT / DoH config
|
|
|
|
Go [HERE](https://github.com/ookangzheng/blahdns/blob/master/client-conf/DoT-or-DoH-Android.md)
|
|
|
|
## Dnscrypt-proxy
|
|
|
|
Go [HERE](https://github.com/ookangzheng/blahdns/tree/master/client-conf/dnscrypt)
|
|
|
|
## Knot-resolver
|
|
|
|
```bash
|
|
-- 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
|
|
|
|
-- To disable DNSSEC validation, uncomment the following line (not recommended)
|
|
trust_anchors.remove('.')
|
|
|
|
-- Forward queries to Blahdns
|
|
policy.add(policy.all(policy.TLS_FORWARD({{'159.69.198.101@443', hostname='dot-de.blahdns.com', ca_file='/etc/ssl/certs/ca-certificates.crt'}})))
|
|
policy.add(policy.all(policy.TLS_FORWARD({{'108.61.201.119@853', hostname='dot-jp.blahdns.com', ca_file='/etc/ssl/certs/ca-certificates.crt'}})))
|
|
policy.add(policy.all(policy.TLS_FORWARD({{'2a0a:e5c0:2:2:0:c8ff:fe68:bf48@853', hostname='dot-ch.blahdns.com', ca_file='/etc/ssl/certs/ca-certificates.crt'}})))
|
|
|
|
```
|
|
|
|
## Unbound
|
|
|
|
```bash
|
|
# /etc/unbound/unbound.conf
|
|
|
|
include: "/etc/unbound/unbound.conf.d/*.conf"
|
|
verbosity: 1
|
|
tls-cert-bundle: "/etc/ssl/certs/ca-certificates.crt"
|
|
interface: 127.0.0.1@53
|
|
interface: 0::1@53
|
|
harden-dnssec-stripped: no # disable DNSSEC
|
|
do-not-query-localhost: no
|
|
|
|
forward-zone:
|
|
name: "."
|
|
forward-tls-upstream: yes
|
|
forward-addr: 2a0a:e5c0:2:2:0:c8ff:fe68:bf48@853#dot-ch.blahdns.com
|
|
forward-addr: 108.61.201.119@853#dot-jp.blahdns.com
|
|
forward-addr: 2001:19f0:7001:1ded:5400:1ff:fe90:945b@443#dot-jp.blahdns.com
|
|
forward-addr: 159.69.198.101@853#dot-de.blahdns.com
|
|
forward-addr:2a01:4f8:1c1c:6b4b::1@443#dot-de.blahdns.com
|
|
|
|
#forward-addr: 116.203.70.156@443#uncensored-dot.dnswarden.com
|
|
```
|
|
|
|
## Stubby
|
|
|
|
Go [HERE](https://github.com/ookangzheng/blahdns/tree/master/client-conf/stubby)
|
|
|
|
|
|
## Windows
|
|
Simplednscrypt -> https://simplednscrypt.org/ and install
|
|
|
|

|
|

|
|
|
|
## Kdig
|
|
```bash
|
|
kdig google.com @dot-jp.blahdns.com +tls
|
|
```
|
|
## getdns
|
|
```bash
|
|
sudo apt install getdns-utils
|
|
getdns_query @108.61.201.119 -s -L -A www.google.com
|
|
```
|
|
|
|
## Curl
|
|
```bash
|
|
curl -H 'accept: application/dns-json' 'https://doh-jp.blahdns.com/dns-query?name=www.google.com&type=A'
|
|
```
|
|
|
|
## Facebook python doh-proxy
|
|
```bash
|
|
sudo apt install python3-pip python3-setuptools python3-wheel
|
|
sudo -H pip3 install doh-proxy
|
|
doh-client --domain doh-jp.blahdns.com --qname google.com --qtype A
|
|
```
|
|
|
|
## Linux-systemd
|
|
```bash
|
|
nano /etc/systemd/resolved.conf
|
|
|
|
DNS=108.61.201.119 159.69.198.101
|
|
DNSOverTLS=opportunistic
|
|
|
|
// Save and restart service
|
|
sudo systemctl restart systemd-resolved
|
|
// Check settings
|
|
resolvectl status
|
|
resolvectl query dot-jp.blahdns.com -t A
|
|
```
|
|
|
|
|