Is there a way to use DiG or nslookup to determine if a server is set to Master or Slave? And if a server is slave, return the Master's IP address?
Is there a way to use DiG or nslookup to determine if a server is set to Master or Slave? And if a server is slave, return the Master's IP address?
No, there is no way. The DNS protocol provides nothing to learn the master/slave relationship from the outside.
Also, this distinction is often gone today. Many domains have only masters, synchronized on a common database.
You can use heuristics (see Maas' suggestions or use the increase of serial numbers, the first name server to increase will be the master) but they are clearly not reliable.
First, technically a DNS server is not necessarily exclusively a master or a slave. This can be different on a domain by domain basis. It might be master for some domains and slave for others.
If the domain name's DNS zone is configured correctly - then you can request the zone's SOA-record which (amongst other things) contains the host name of the primary DNS server (the master).
For example:
You can now do another lookup on the primary server name (from the SOA-record - in this case "ns1.google.com"), to get the master's IP address:
The answer in this case is 216.239.32.10
As far as I know, the answer is no -- certainly no standard way, since there are a billion different DNS server variants. One option would be to have a 'masterdns.mydomain.com' record, guaranteed to contain the IP address of the master (don't even expose it, no need) -- then all you need to do is compare the IP of the DNS server to the IP it gives you for the master, and you're all set. This is also imperfect, because of aliasing / multi-homing / whatever-the-hell (you can't guarantee that it's a different server), but ..
.. you seem to be implying that you're setting all this up yourself, in which case you should just have the masterdns.mydomain.com record.
The command
dig -t SOA your-url
will return the authorative server in the ANSWER section & then if you wish you candig authoritative-server-url
to have the IP. Or you can usehost -t SOA your-url
andhost authoritative-server-url
for a more succint response.