Authoritative vs non-Authoritative DNS

So here we will discuss what is the difference between Authoritative and Non-Authoritative DNS Servers? But before we debate Authoritative vs non-Authoritative DNS we will first see what is DNS?

The Domain name system (DNS) is basically a record book of the internet. Humans are basically bad at remembering numbers (IP address) that’s the reason we just remember domain names just like google.com, facebook.com, bing.com, justgeek.io, and so on. But computers don’t understand these names they love IP addresses and each server is assigned an IP address. So DNS solves this conflict by assigning domain names with an IP address so that you can load websites on browsers and much more.

So how does DNS work?

To answer this question, we will see what happens when you type google.com in the browser.

  1. Your browser checks the local cache of the DNS to see if there is an IP address assigned to the domain name.
  2. If there is no local cache, then it will send a query to ISP and ask for the IP address of the domain.
  3. If ISP doesn’t have an IP address then it will send a query to root servers, and then root server will help find the IP address of the domain ( there are 13 root servers around the world ). It will redirect you to TLD servers.
  4. Even TLD doesn’t know the IP address of the domain, but then it will reply with the name servers of the domain.
  5. So the name-servers are the final authority of the domain name, they know everything about the domain like its IP address, MX Records, cname records, etc

So here is the Image which will help you to understand this better.

Authoritative vs non-Authoritative DNS

So back to the question, what is Authoritative vs non-Authoritative DNS?

In the scenario above, everything apart from the final authority i.e name-servers are non-authoritative DNS and you may call the final authority the authoritative name-servers.

You must also see TCP or UDP, which one is better

Leave a Comment