DNS Lookup
Query DNS records for any domain
What is DNS?
The Domain Name System is the internet's distributed directory service. When you type anottertoolbox.dev into a browser, a series of DNS queries happens in milliseconds to translate that name into an IP address your browser can connect to. This process is called DNS resolution.
DNS is hierarchical โ a query for www.example.com first asks the root servers, then the .com nameservers, then Example's own nameservers, progressively narrowing down to the authoritative answer.
How to use the DNS Lookup tool
- Enter a domain name โ just the domain (like
google.com), nohttps://needed. The tool strips those automatically. - Select record types to query โ by default, the most common types (A, AAAA, MX, NS, TXT, CNAME) are selected. Toggle types to add or remove them.
- Click Lookup โ results appear grouped by record type, with TTL values shown for each record.
- Copy all results using the button at the top right of the results section.
This tool uses Google's public DNS-over-HTTPS API (dns.google) for real-time, accurate DNS queries.
DNS record types explained
A โ Maps domain to IPv4 address. The most fundamental record.
AAAA โ Maps domain to IPv6 address.
MX โ Specifies mail servers for the domain, with priority values.
NS โ Lists the authoritative nameservers for the domain.
TXT โ Free-form text records, used for SPF, DKIM, DMARC, and verification.
CNAME โ Alias from one name to another.
SOA โ Start of Authority โ contains administrative information about the zone.
CAA โ Certification Authority Authorization โ specifies which CAs can issue SSL certificates for the domain.
Common DNS troubleshooting uses
Verifying DNS propagation โ after changing DNS records, use this tool to check if the new records are visible globally. Remember that TTL determines how long old records are cached.
Debugging email delivery โ look up MX records to verify mail server configuration. Check TXT records for SPF and DKIM entries that affect deliverability.
Checking SSL setup โ look up CAA records to verify which certificate authorities are authorized, and TXT records for ACME challenge verification.
Investigating domain configuration โ NS records show you which nameservers control a domain, which is useful for understanding who manages the DNS.