Replies: 3 comments 1 reply
-
|
See the PR and the examples here #102 (review) |
Beta Was this translation helpful? Give feedback.
-
|
dnsx supports DoH (DNS over HTTPS) resolvers using the DoH Examples: # Cloudflare DoH
dnsx -l hosts.txt -r https://cloudflare-dns.com/dns-query
# Google DoH
dnsx -l hosts.txt -r https://dns.google/dns-query
# Quad9 DoH
dnsx -l hosts.txt -r https://dns.quad9.net/dns-queryMultiple DoH resolvers: echo -e "https://cloudflare-dns.com/dns-query\nhttps://dns.google/dns-query" > doh-resolvers.txt
dnsx -l hosts.txt -r doh-resolvers.txtMixed DoH + Standard: echo -e "8.8.8.8\nhttps://cloudflare-dns.com/dns-query" > mixed.txt
dnsx -l hosts.txt -r mixed.txtDoT (DNS over TLS): dnsx -l hosts.txt -r tls://dns.google:853But DoH is the more reliably supported option. Verify it's working: echo "example.com" | dnsx -r https://cloudflare-dns.com/dns-query -resp -aThe format auto-detection happens based on whether the resolver string starts with |
Beta Was this translation helpful? Give feedback.
-
|
dnsx supports DoH (DNS over HTTPS) resolvers using the DoH Examples: # Cloudflare DoH
dnsx -l hosts.txt -r https://cloudflare-dns.com/dns-query
# Google DoH
dnsx -l hosts.txt -r https://dns.google/dns-query
# Quad9 DoH
dnsx -l hosts.txt -r https://dns.quad9.net/dns-queryMultiple DoH resolvers: echo -e "https://cloudflare-dns.com/dns-query\nhttps://dns.google/dns-query" > doh-resolvers.txt
dnsx -l hosts.txt -r doh-resolvers.txtMixed DoH + Standard: echo -e "8.8.8.8\nhttps://cloudflare-dns.com/dns-query" > mixed.txt
dnsx -l hosts.txt -r mixed.txtDoT (DNS over TLS): dnsx -l hosts.txt -r tls://dns.google:853But DoH is the more reliably supported option. Verify it's working: echo "example.com" | dnsx -r https://cloudflare-dns.com/dns-query -resp -aThe format auto-detection happens based on whether the resolver string starts with |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, how do you use this with a DoH/DoT resolver ?
Beta Was this translation helpful? Give feedback.
All reactions