Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I find the authoritative name-server for a domain name?

Tags:

dns

How can I find the origins of conflicting DNS records?

like image 330
Binarytales Avatar asked Sep 01 '08 14:09

Binarytales


People also ask

How do you find the authoritative DNS server using nslookup?

You'll want the SOA (Start of Authority) record for a given domain name, and this is how you accomplish it using the universally available nslookup command line tool: command line> nslookup > set querytype=soa > stackoverflow.com Server: 217.30. 180.230 Address: 217.30.

What is the authoritative DNS server?

Authoritative DNS is the system that takes an address, like google.com, and provides an answer about the resources in that zone. The typical transaction looks something like this: User types an address into a web browser, or an application calls out to a given name of a resource on the Internet.

Is authoritative name server same as name server?

An authoritative name server is a name server that gives answers in response to questions asked about names in a zone. An authoritative-only name server returns answers only to queries about domain names that have been specifically configured by the administrator.


1 Answers

You'll want the SOA (Start of Authority) record for a given domain name, and this is how you accomplish it using the universally available nslookup command line tool:

command line> nslookup > set querytype=soa > stackoverflow.com Server:         217.30.180.230 Address:        217.30.180.230#53  Non-authoritative answer: stackoverflow.com         origin = ns51.domaincontrol.com # ("primary name server" on Windows)         mail addr = dns.jomax.net       # ("responsible mail addr" on Windows)         serial = 2008041300         refresh = 28800         retry = 7200         expire = 604800         minimum = 86400 Authoritative answers can be found from: stackoverflow.com       nameserver = ns52.domaincontrol.com. stackoverflow.com       nameserver = ns51.domaincontrol.com. 

The origin (or primary name server on Windows) line tells you that ns51.domaincontrol is the main name server for stackoverflow.com.

At the end of output all authoritative servers, including backup servers for the given domain, are listed.

like image 166
Antti Kissaniemi Avatar answered Sep 21 '22 23:09

Antti Kissaniemi