I am using Comcast. And my router is set up to acquire DNS server automatically. How can I find out the IP address of the DNS server used by my router? I am using Windows. Is there some Windows command that I can use?

link|improve this question
If your device also handles DNS it's more than a router. – andol Dec 20 '09 at 20:42
feedback

migrated from serverfault.com Dec 21 '09 at 0:43

This question came from our site for system administrators and desktop support professionals.

5 Answers

up vote 9 down vote accepted

You can do one of two things:

  1. If you router is just passing Comcast's DNS servers then you can issue an ipconfig /all at the command line and it will tell you (Comcast's servers would be 68.xx.xx.xx not 192.168.xx.xx)

  2. If you router is passing itself as the DNS server, then you should be able to go on the router's admin interface status page and see what DNS servers it got from comcast's DHCP server.

link|improve this answer
Thanks! I followed (2) and found the IP through the router's admin interface. – thebat Dec 21 '09 at 6:20
feedback

Running the recently released Namebench will tell you what DNS server you're using and will also tell you if there are faster ones available.

Word of warning it takes a few minutes to run, but the results are enlightening.

link|improve this answer
I tried this. But it says that my DNS server is 192.168.1.1 – thebat Dec 21 '09 at 6:19
feedback

I can't find the link right now but there are DNS-based domains which will accept a query and return the IP address of the requesting DNS server as the "resolved" answer. They won't report all your configured DNS servers but they could be useful when you don't have access to the DNS box.

A web-based page which include this info is http://www.dnsstuff.com/tools/aboutyou/

link|improve this answer
feedback

You can use the nslookup command to check DNS resolution.
Open a cmd terminal window (Start -> cmd > run). Type:
nslookup www.google.com
The first two lines are the domain server you are using

In my case:
C:> nslookup www.google.com
Server: cns.sanjose.ca.sanfran.comcast.net
Address: 68.87.76.182
[...]

my dns is 68.....

link|improve this answer
feedback

Start-Run-Cmd

ipconfig /all

This should list your DNS servers properly. These are the ones used by your computer, passed on to you by your Comcast cable modem / router.

link|improve this answer
Many SOHO routers don't pass on the upstream DNS servers to their clients via DHCP. – Alnitak Dec 20 '09 at 19:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.