DNS Lookup
Query any DNS record type for any domain. Uses Cloudflare's DNS-over-HTTPS for fast, accurate, real-time results.
๐ค A & AAAA Records
A records map a domain to an IPv4 address. AAAA records map to IPv6. These are the most fundamental DNS records โ they tell browsers where to find your server.
๐ง MX Records
Mail Exchange records specify which servers handle email for a domain. Multiple MX records can exist with priority values โ lower numbers have higher priority.
๐ TXT Records
TXT records store text data. Used for SPF (email authentication), DKIM (email signing), DMARC (email policy), and domain ownership verification for Google, Microsoft, and others.
๐ CNAME Records
Canonical Name records are aliases โ they point one domain to another. For example, www.example.com might CNAME to example.com, avoiding the need to maintain duplicate A records.
DNS Lookup โ FAQ
What is DNS propagation and how long does it take?
DNS propagation is the time it takes for DNS changes to spread across all DNS servers worldwide. Changes can take anywhere from a few minutes to 48 hours, depending on the TTL (Time to Live) value of the records being changed. Lower TTL values propagate faster.
What does TTL mean in DNS records?
TTL (Time to Live) is the number of seconds a DNS record is cached by resolvers. A TTL of 3600 means the record is cached for one hour. Lower TTL values allow faster propagation of changes but increase DNS query load on authoritative servers.
Why do I see multiple A records for the same domain?
Multiple A records (round-robin DNS) distribute traffic across several servers. Each DNS query may return a different IP from the pool, providing basic load balancing without additional infrastructure.
What is an SOA record?
Start of Authority records contain administrative information about a zone: the primary nameserver, the email of the domain administrator, and timing values used for zone transfers between nameservers.