DNS/Troubleshooting
Appearance
(Redirected from Dns/troubleshooting)
Testing Resources[edit | edit source]
Configuration Tests
DNSSEC Tests
DNS Global Speed Tests
Testing a DNS Entry with dig[edit | edit source]
First git the list of DNS root servers by using the following command
dig ns . +short
You should get a list of the different root servers that will look like this (but in a different order).
e.root-servers.net. d.root-servers.net. b.root-servers.net. l.root-servers.net. k.root-servers.net. m.root-servers.net. i.root-servers.net. g.root-servers.net. j.root-servers.net. a.root-servers.net. c.root-servers.net. f.root-servers.net. h.root-servers.net.
Choose one at random, and run the below dig query to find the list of NS servers for the TLD (Top Level Domain) you are looking up for (for example .us .edu .com)
Or if you are checking the domain umn.edu, your full list of commands would be:
dig ns . # Get list of Root Servers dig ns edu. @l.root-servers.net. # Get list of Name Servers for TLD edu dig ns umn.edu. @g.edu-servers.net. # Get list of Name Servers for domain umn.edu dig a www.umn.edu. @ns-auth-1.umn.edu. # get the A record for host www.umn.edu