How to Do a DNS Lookup Online
DNS lookups are something developers, sysadmins, and IT teams do dozens of times a week — verifying record propagation, debugging email issues, checking nameservers before a migration, or investigating a suspicious domain.
Check any domain's DNS records instantly with our WHOIS Lookup tool.
Using dig — The Standard Tool
Basic A record lookup
dig toolchecking.com A +short
Query a specific DNS server
dig @8.8.8.8 toolchecking.com A +short dig @1.1.1.1 toolchecking.com A +short
Querying specific resolvers lets you compare what different parts of the world see — useful during propagation.
Check MX records
dig toolchecking.com MX +short
Check TXT records (SPF, DMARC)
dig toolchecking.com TXT +short dig _dmarc.toolchecking.com TXT +short
Trace full resolution path
dig toolchecking.com +trace
Shows every step from root server to authoritative nameserver. Invaluable for debugging unexpected results.
Using nslookup — Windows Native
nslookup works on Windows without installing anything:
nslookup toolchecking.com nslookup -type=MX toolchecking.com nslookup -type=TXT toolchecking.com
Less flexible than dig but always available on Windows.
Browser-Based DNS Lookup
When you don't have terminal access — checking a client site, using a shared machine, or working from a locked-down environment — use a browser-based tool:
Look up DNS records, nameservers and domain registration for any domain
Try WHOIS Lookup Free →
