Tools/DNS & Network/DNS Lookup

DNS Lookup

Query DNS records for any domain. View A, AAAA, CNAME, MX, TXT, NS, and more.

Input

Quick Examples

Results

Enter a domain and click Lookup to query DNS records.

What is a DNS record?

DNS records are the "instructions" stored in a domain's authoritative nameservers. When your browser asks "where is example.com?", a recursive resolver walks from the root DNS servers down through each level (.comexample.com's nameserver) and fetches the relevant records.

Each record has:

  • Name — the hostname it applies to (www.example.com, @ for root, mail for mail.example.com).
  • Type — A, AAAA, CNAME, MX, TXT, etc.
  • TTL (Time To Live) — seconds resolvers should cache the answer. Low TTL (60-300s) for pre-migration; high TTL (3600-86400s) for stable records to reduce lookup load.
  • Data — the actual value (IP address, hostname, text, priority, etc.).

Tell the authoritative nameserver once, and the global DNS system propagates the answer to resolvers worldwide within minutes to days (depending on TTLs along the path).

DNS record types — what each one does

TypePurposeExample value
AMaps hostname to IPv4 address93.184.216.34
AAAAMaps hostname to IPv6 address2606:2800:220:1:...
CNAMEAlias — "look up the A record of this other name"www.example.com → example.com
MXMail server for this domain10 mx1.example.com (priority + host)
TXTArbitrary text — SPF, DKIM, domain verification, DMARCv=spf1 include:_spf.google.com ~all
NSNameservers authoritative for this domainns1.cloudflare.com
SOAStart of Authority — DNS zone metadataserial, refresh, retry, expire times
PTRReverse DNS — IP to hostnameUsed for email spam reputation
SRVService discovery — hostname+port for a protocol_sip._tcp.example.com → 10 60 5060 sip.example.com
CAAWhich CAs may issue certificates for this domain0 issue "letsencrypt.org"
DNSKEY / DS / RRSIGDNSSEC cryptographic signing(for integrity, not name resolution)

Our DNS Lookup queries all common types in one request and displays them grouped — equivalent to running dig multiple times against a public resolver.

Common DNS troubleshooting scenarios

  • "Site didn't load after I updated DNS" — TTL (time to live) controls how long resolvers cache the old value. Pre-migration, lower TTL to 60-300s so the new value propagates fast. Our lookup shows current TTL.
  • "Email isn't being delivered" — check MX record (who receives), then TXT for SPF (who can send on your behalf), DKIM (message signature), DMARC (policy).
  • "HTTPS works but wrong cert" — check CAA records; if set, only the listed CAs can issue. Remove or update.
  • "Different results from different DNS servers" — propagation lag. Use dig @8.8.8.8, @1.1.1.1, @208.67.222.222 to check from major public resolvers. Our lookup uses Google Public DNS.
  • "Subdomain not resolving but root domain does" — missing A/CNAME record at the subdomain name. Wildcards (*.example.com) are per-label — * matches one label, not multiple.

Frequently Asked Questions

What is DNS?

The Domain Name System (DNS) translates human-readable domain names (like google.com) into IP addresses that computers use to communicate.

What are the different DNS record types?

A records map to IPv4 addresses, AAAA to IPv6, CNAME for aliases, MX for mail servers, TXT for verification, NS for nameservers, SOA for zone authority.

How long does DNS propagation take?

DNS changes typically propagate within 24-48 hours, though most updates are visible within 1-4 hours depending on TTL values.

Copyright © 2026 BuildStudio. All rights reserved.

Designed and Developed by Webority Technologies

Copied to clipboard