In article <4510e873$1_2@news.bluewin.ch>,
tim.moor@nospam.com says...
>
>dear dns gurus,
>in our datacenter we changed out our primary and secondary dns server.
>these servers resolves dns queries for different services we offer. our isp
>is forwarding all requests regarding our name-space to these new dns
>servers. the clients of our customers points to the dns server of our isp.
>how can i find out, if the both newly installed dns server are resolving
>the dns requests. from a customer client i tried a
>
>nslookup -querytype=soa mydomain.com and
>nslookup -querytype=ns mydomain.com
>
>but this only returns the ip adress from the local windows 2003
>domain-controller and a -> dns request timed out. the clients local w2k3 dc
>is configured to forward all dns requests to the dns server of our isp. is
>there a way to find out, that the new dns server are resolving the requests
>?
>
>thanx alot
>tim
***************** REPLY SEPARATER ********************
You do this exactly the way an outside DNS server would do it. You first of
all ask one of the root servers (DNS servers are pre-configured with the
root servers).
server a.root-servers.net [198.41.0.4]
When you request mydomain.com, it will return all the servers that serve the
..com domains. Then select one of those:
server A.GTLD-SERVERS.NET [192.5.6.30]
When you request mydomain.com, it will return all the servers that serve the
mydomain.com domain.
> mydomain.com
Server: [192.5.6.30]
Address: 192.5.6.30
Name: mydomain.com
Served by:
- ns1.mydomain.com
64.94.117.195
mydomain.com
- ns2.mydomain.com
216.52.121.233
mydomain.com
- ns3.mydomain.com
66.150.161.130
mydomain.com
- ns4.mydomain.com
63.251.83.74
mydomain.com
Select one of those and ask the question again:
> mydomain.com
Server: ns1.mydomain.com
Address: 64.94.117.195
Name: mydomain.com
Address: 216.34.94.184
Done!
J.A. Coutts