$ dig hobbes.gtlug.orgwhich returns a lot of verbose information, among which is:
hobbes.gtlug.org. 56846 A 130.18.92.25so the IP address is determined to be "130.18.92.25". To get all the information contained in the DNS about "hobbes.gtlug.org", one might use:
$ dig any hobbes.gtlug.org ... hobbes.gtlug.org. 85967 TXT "1 Research Boulevard" hobbes.gtlug.org. 85967 TXT "Starkville, MS" hobbes.gtlug.org. 85967 TXT "(601) 324-xxxx" hobbes.gtlug.org. 85967 TXT "David L. Simmons" hobbes.gtlug.org. 52639 A 130.18.92.25 ...To find out which machine serves as a nameserver for the domain "gtlug.org", one could use:
$ dig ns gtlug.org ... gtlug.org. 77634 NS calvin.gtlug.org. gtlug.org. 77634 NS DUNE.EE.MSSTATE.EDU. ...Knowing that the machine "calvin.gtlug.org" is a nameserver for the "gtlug.org" domain, we can ask it directly for information about the host "hobbes.gtlug.org" and perhaps get more information:
$ dig @calvin.gtlug.org any hobbes.gtlug.org ... hobbes.gtlug.org. 86400 A 130.18.92.25 hobbes.gtlug.org. 86400 MX 10 hobbes.gtlug.org. hobbes.gtlug.org. 86400 MX 20 Dune.EE.MsState.Edu. hobbes.gtlug.org. 86400 HINFO i486/66 Linux hobbes.gtlug.org. 86400 TXT "David L. Simmons" hobbes.gtlug.org. 86400 TXT "1 Research Boulevard" hobbes.gtlug.org. 86400 TXT "Starkville, MS" hobbes.gtlug.org. 86400 TXT "(601) 324-xxxx" ...We might, if we are nosy, ask for a zone transfer of the "gtlug.org" domain:
dig @calvin.gtlug.org axfr gtlug.org ... [pages of zone information displayed] ...NOTE: Zone transfers are potentially expensive on bandwidth and cpu, and it is probably not very friendly to be performing zone transfers on nameservers that aren't yours. Some nameservers disable public zone transfers altogether.
To query "hobbes.gtlug.org":
$ host hobbes.gtlug.org hobbes.gtlug.org has address 130.18.92.25 hobbes.gtlug.org mail is handled by Dune.EE.MsState.Edu hobbes.gtlug.org mail is handled by hobbes.gtlug.orgTo query all information on "hobbes.gtlug.org":
$ host -t any hobbes.gtlug.org hobbes.gtlug.org descriptive text "1 Research Boulevard" hobbes.gtlug.org descriptive text "Starkville, MS" hobbes.gtlug.org descriptive text "(601) 324-xxxx" hobbes.gtlug.org descriptive text "David L. Simmons" hobbes.gtlug.org has address 130.18.92.25 hobbes.gtlug.org mail is handled by Dune.EE.MsState.Edu hobbes.gtlug.org mail is handled by hobbes.gtlug.orgTo find out the nameserver for the "gtlug.org" domain:
host -t ns gtlug.org gtlug.org NS calvin.gtlug.org gtlug.org NS DUNE.EE.MSSTATE.EDU