DNS record lookup

Enter a domain and see all of its public DNS records together with their TTL values.

What each record type means

A
The IPv4 address a name points to. This is usually where the website is served from.
AAAA
The same thing for an IPv6 address.
CNAME
An alias to another name. A name that has a CNAME cannot hold any other record.
MX
The hosts that receive mail for the domain. The lower preference number is tried first.
NS
The name servers responsible for the zone. The delegation itself is set at the registry.
TXT
Free text. SPF, DKIM, DMARC and service ownership strings all live here.
SOA
The start of authority record, with the zone serial number and the refresh and retry timers.
CAA
Says which certificate authorities are allowed to issue certificates for this domain.

TTL, and why a change is not visible straight away

TTL is the number of seconds a resolver is allowed to keep an answer in its cache. If an A record has a TTL of 3600, then for up to an hour after you edit it part of the world still sees the old address. Nothing is broken, that is how DNS caching works.

Before a planned move, lower the TTL to 300 seconds, wait for the old TTL to run out everywhere, and only then change the record. Put the TTL back up once the move is finished.

Frequently asked questions

Why do I still see the old IP address?

Your resolver is still holding the previous answer. Wait until the record TTL runs out, or compare several resolvers with the propagation check.

Can the root of a domain have a CNAME?

No. The root of a zone has to carry SOA and NS records, and a CNAME cannot coexist with any other record at the same name. Some DNS providers offer a substitute called ALIAS or ANAME that solves this on their own side.

Why does a long TXT record look split into pieces?

A single TXT string in the DNS protocol cannot be longer than 255 bytes, so a longer value is stored as several strings in one record. Clients join them back together, and this tool shows the joined result.

Does the tool show internal records?

No. Only the public records handed out by the domain name servers are visible. Internal zones and split horizon views cannot be reached from here.