DNS Records Lookup

Check DNS records for any domain name

DNS Lookup
Query DNS records for any domain

Enter a domain name without http:// or www (e.g., example.com)

What are DNS Records?

DNS (Domain Name System) records are instructions that live in authoritative DNS servers and provide information about a domain including what IP address is associated with that domain and how to handle requests for that domain.

DNS Records
DNS information for your domain

Enter a domain name and click "Search"

DNS records will be displayed here

About DNS Records

DNS (Domain Name System) records are instructions that live in authoritative DNS servers and provide information about a domain including what IP address is associated with that domain and how to handle requests for that domain. These records are essential for routing traffic correctly across the internet.

Common DNS Record Types

Record TypeDescriptionExample
AMaps a domain to an IPv4 addressexample.com. IN A 192.0.2.1
AAAAMaps a domain to an IPv6 addressexample.com. IN AAAA 2001:db8::1
CNAMECreates an alias for another domain namewww.example.com. IN CNAME example.com.
MXSpecifies mail servers for the domainexample.com. IN MX 10 mail.example.com.
TXTStores text information (often for verification)example.com. IN TXT "v=spf1 include:_spf.example.com ~all"
NSSpecifies authoritative name serversexample.com. IN NS ns1.example.com.
SOAStart of Authority - administrative informationexample.com. IN SOA ns1.example.com. admin.example.com. ( 2023010101 ; serial 3600 ; refresh 1800 ; retry 604800 ; expire 86400 ; minimum TTL )
CAASpecifies which Certificate Authorities can issue certificatesexample.com. IN CAA 0 issue "letsencrypt.org"

Why Check DNS Records?

  • Troubleshooting - Diagnose website or email delivery issues related to DNS configuration
  • Verification - Confirm that DNS changes have propagated correctly
  • Security - Check for proper SPF, DKIM, and DMARC records to prevent email spoofing
  • Migration - Ensure all necessary records are captured before moving to a new DNS provider
  • Analysis - Investigate how other websites have configured their DNS for reference

Frequently Asked Questions

How long do DNS changes take to propagate?

DNS propagation can take anywhere from a few minutes to 48 hours, depending on the TTL (Time To Live) values of your DNS records and how quickly DNS servers around the world update their caches. Lower TTL values result in faster propagation, but may increase DNS server load.

What's the difference between an A record and a CNAME record?

An A record maps a domain directly to an IP address, while a CNAME record creates an alias that points to another domain name. For example, an A record might map example.com to 192.0.2.1, while a CNAME record might map www.example.com to example.com (which then needs its own A record).

Why are MX records important?

MX (Mail Exchange) records tell email servers where to deliver email for your domain. Without proper MX records, email delivery to your domain will fail. MX records include a priority value (lower numbers have higher priority) to determine which mail server should be tried first.

What are TXT records used for?

TXT records store text information in the DNS and are commonly used for domain verification (proving you own a domain), SPF records (specifying which servers can send email from your domain), DKIM records (providing cryptographic keys for email authentication), and DMARC policies (instructing receiving servers how to handle authentication failures).