DNS Lookup
Resolve any DNS record of a domain (or the PTR of an IP) using DNS-over-HTTPS. The query travels encrypted to Cloudflare; the rest of the site stays 100% local.
Queries are resolved via Cloudflare's DNS-over-HTTPS (1.1.1.1) over HTTPS; they do not pass through any redzilla server.
| Name | Type | TTL | Data |
|---|
Runs locally in your browser · no sign-up · nothing leaves your browser
How it works
The tool resolves DNS records for a domain using DNS-over-HTTPS (DoH, RFC 8484): it sends the query encrypted over HTTPS to the Cloudflare JSON endpoint (cloudflare-dns.com, the 1.1.1.1 resolver) and shows the response in a dig-style readout and a table, with the name, type, TTL and data of each record. It supports the A, AAAA, MX, TXT, NS, CNAME, SOA, CAA and PTR types.
For reverse DNS it builds the PTR name automatically: if you enter an IPv4 address it reverses the octets and appends .in-addr.arpa (1.1.1.1 → 1.1.1.1.in-addr.arpa); for IPv6 it expands the address into its 32 reversed nibbles under .ip6.arpa. The response status follows the standard DNS codes: 0 is NOERROR (success) and 3 is NXDOMAIN (the name does not exist).
Example: checking the mail setup of a domain via its MX records
- Type the domain (for example
example.com) and pick the MX type. - The answer lists the mail servers with their priority, for example
10 mail.example.com: the lowest number is tried first. - If the status is NXDOMAIN or there are no answers, the domain publishes no MX records and mail to that domain will fail or fall back to the A record depending on the client.