DNS Untangled - Hierarchy, Domains & Zones | Roei Amsalem DNS Untangled - Hierarchy, Domains & Zones | Roei Amsalem

Hierarchy, Domains & Zones

Root does not forward your query to the TLD. Nothing is forwarded. The resolver makes every single query itself, and comes back to the middle after each one — twice holding nothing but a pointer.

You type roeiam.online into Chrome. Every query that follows, in order.

Scroll diagram →

hop 1 hop 2 hop 3 Chrome stub resolver does the work Resolver recursive · caching asks all three servers itself referral only Root  ( . ) a–m.root-servers.net knows every TLD, nothing below them referral only TLD  ( online ) ns01.trs-dns.net · ns10.trs-dns.org knows the delegation, not the records authoritative roeiam.online ns11 · ns12.domaincontrol.com holds every record in the zone
Step 0 of 4 not started
Press Start — or click any server in the diagram
Answer
Authority
Additional
Flags

Four queries, one answer. Step through to see which server actually hands over an address — and how many only point somewhere else.

Domain vs. Zone

The example above illustrates the communication between the host and the resolver, what the resolver is responsible for, and how it interacts with every other component during normal DNS operation.

Querying the right layer

Works for any record type — NS, A, MX, TXT. Same pattern, different targets, answers different questions: what do users currently see vs. what does a specific server say vs. what does the zone actually contain vs. is the delegation chain itself intact. Most tickets are solved by comparing two of these.

users' view
dig roeiam.online

What do users currently see? Asks the configured resolver — cached if it has one.

one server
dig @8.8.8.8 roeiam.online

What does a specific server say? @ only changes the recipient.

ground truth
dig @ns11.domaincontrol.com roeiam.online A +norecurse

What does the zone actually contain? Straight to the authoritative, every cache bypassed.

delegation chain
dig +trace roeiam.online

Is the delegation chain itself intact? Full walk from the root.