Created
June 5, 2015 01:08
-
-
Save itomg/71a520c5d7bb7391907f to your computer and use it in GitHub Desktop.
How to find out your host's domain server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## find out root dns server domain | |
dig . | |
## find out com. server | |
dig @root-server com. | |
## find out your domain dns server | |
dig @com-dns-server your-host.com. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment