DNS terminology

DNS records explained

Understand what common DNS records mean in diagnostics, including A, AAAA, CNAME, MX, TXT, NS, SOA, CAA, and PTR, plus how to interpret real lookup results without overreading them.

DNS lookups are easy to misuse because the output looks authoritative even when it only answers one narrow question. A record may exist and still point to the wrong place. A resolver may return a useful answer while a different location still sees stale data. And not every record type matters for the same symptom. Reading DNS well means understanding both the record type and the troubleshooting context around it.

Record type answers a specific question

An A record helps with web reachability. An MX record does not. A TXT record may matter for email or verification without affecting website loading at all.

One answer is not the whole DNS story

Resolver choice, TTL, delegation, and propagation timing all affect what you see at any given moment.

Match the record to the symptom

When a website will not load, A, AAAA, CNAME, NS, and sometimes CAA or PTR usually matter more than broad DNS data dumps.

01

When this guide is useful

Use it when DNS output is visible but the practical meaning of the record still is not clear.

You see a record but do not know whether it matters

A valid-looking answer can still be irrelevant to the symptom you are troubleshooting.

You are comparing DNS tools

This helps you understand why DNS Lookup, nslookup, dig, and reverse DNS overlap in some cases and differ in others.

A migration or verification task is in progress

Knowing the meaning of each record prevents accidental changes to the wrong layer during domain moves and provider updates.

02

What the main DNS record types mean

These are the record types most likely to appear during website and network diagnostics.

RecordWhat it points toWhy it matters in diagnostics
AAn IPv4 addressUsually one of the first records to check when a hostname should resolve to a web server.
AAAAAn IPv6 addressImportant when a site behaves differently over IPv6 or appears reachable only for some users.
CNAMEAnother hostnameUseful when the visible hostname is really an alias to a provider edge or managed platform host.
MXMail serversRelevant to email delivery, not direct website reachability.
TXTFree-form verification or policy textCommon for SPF, domain verification, and platform setup tasks, but usually not the cause of a web outage.
NSAuthoritative nameserversCritical when delegation itself looks wrong or answers differ between zones and providers.
SOAZone authority metadataHelpful for understanding the zone origin and serial-related clues during DNS administration.
CAAWhich certificate authorities may issue certsImportant when HTTPS issuance or renewal fails even though the domain otherwise resolves correctly.
PTRReverse mapping from IP to hostnameUseful for reverse DNS, reputation checks, and understanding how an address identifies itself.

03

How to interpret lookup results without overreading them

The record exists, the lookup returned data, and yet the conclusion can still be wrong. That is the trap.

A returned record does not prove the target is correct

A hostname can resolve successfully and still point to an old server, a wrong edge, or an IP that no longer serves the right site.

Delegation problems can hide above the record level

If NS or zone authority is broken, the record you want may not be the first thing to investigate.

Propagation is time-sensitive

Different resolvers may hold different cached answers for a while, especially after a DNS change. One clean lookup does not erase propagation lag elsewhere.

Reverse DNS answers a different question

PTR does not tell you whether a website hostname resolves correctly for users. It tells you how an IP maps back to a name.

04

Which DNS-related tool to use next

Pick the page that matches the question you actually need answered, not just the one that sounds familiar.

05

Common DNS reading mistakes

These are the shortcuts that lead to the wrong infrastructure conclusion.

  • Assuming that any returned A record proves the website is healthy.
  • Blaming TXT or MX records for a web loading issue that is really about A, AAAA, CNAME, NS, or the web service itself.
  • Ignoring nameserver delegation when answers look inconsistent between tools.
  • Confusing PTR output with the forward DNS records that real users rely on.

FAQ: DNS records in diagnostics

Which records matter most when a website will not load?

Usually A, AAAA, CNAME, and NS are the first place to look. CAA matters when certificate issuance fails, and PTR is usually separate from forward website resolution.

Does a correct DNS answer prove the website should work?

No. It only proves the resolver returned that answer. The IP may still host the wrong service, the port may be closed, or HTTPS may fail later in the path.

Why do DNS tools sometimes show different answers?

Resolver choice, cached data, delegation differences, and timing after DNS changes can all produce different results across tools and locations.

Related tools

Related guides