DNS Lookup over HTTPS.
Version added: 0.4.0
- DNS Lookup over HTTPS from various Public DOH Servers like Google/Cloudflare/Quad9.
- https://developers.cloudflare.com/1.1.1.1/encrypted-dns/dns-over-https/make-api-requests/dns-json
- https://developers.google.com/speed/public-dns/docs/doh/json
- https://www.quad9.net/news/blog/doh-with-quad9-dns-servers/
The below requirements are needed on the host that executes this module.
- requests
- name: fetch A record from cloudflare DNS over HTTPS
community.missing_collection.doh:
source: "cloudflare"
domain_name: "example.com"
type: "A"
- name: fetch NS record from Google DNS over HTTPS
community.missing_collection.doh:
source: "google"
name: "example.com"
type: "NS"
- name: fetch mail record from Quad9 DNS over HTTPS
community.missing_collection.doh:
source: "quad9"
name: "example.com"
type: "MX"
Common return values are documented here, the following are the fields unique to this module:
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>