DNS Lookup Tool

DNS Records Domain
Anish Nath
DNS Lookup
Domain Name
Enter domain name without http:// or www
Quick Examples
DNS Record Types
TypeDescription
AIPv4 address mapping
AAAAIPv6 address mapping
MXMail server records
NSName server records
TXTText records (SPF, DKIM)
CNAMECanonical name (alias)
CAACertificate Authority
DNS Records

DNS records will appear here

Enter a domain name and click DNS Lookup
CLI Commands
Linux/Mac: Query DNS with dig
$ dig google.com ANY
Windows: Query DNS with nslookup
C:\> nslookup -type=any google.com

Support This Free Tool

Every coffee helps keep the servers running. Every book sale funds the next tool I'm dreaming up. You're not just supporting a site — you're helping me build what developers actually need.

500K+ users
200+ tools
100% private
Privacy Guarantee: Private keys you enter or generate are never stored on our servers. All tools are served over HTTPS.
Understanding DNS Records
What is DNS?

The Domain Name System (DNS) is the internet's phonebook. It translates human-readable domain names (like google.com) into IP addresses that computers use to communicate. When you type a URL in your browser, DNS servers work behind the scenes to find the correct IP address.

Common DNS Record Types
RecordPurposeExample
AMaps domain to IPv4 addressexample.com → 93.184.216.34
AAAAMaps domain to IPv6 addressexample.com → 2606:2800:220:1:...
MXSpecifies mail serversmail.example.com (priority 10)
NSDelegates DNS zone to nameserversns1.example.com
TXTStores text data (SPF, DKIM, verification)v=spf1 include:_spf.google.com ~all
CNAMECreates alias to another domainwww → example.com
CAASpecifies allowed certificate authorities0 issue "letsencrypt.org"
SOAContains zone administration infoPrimary NS, admin email, serial
DNSSEC

DNSSEC adds cryptographic signatures to DNS records, allowing resolvers to verify that responses haven't been tampered with. DNSKEY and DS records are used to establish a chain of trust.

TTL (Time To Live)

TTL specifies how long DNS records are cached. Lower TTL means faster propagation of changes but more DNS queries. Typical values range from 300 (5 min) to 86400 (24 hours).