Link to home
Start Free TrialLog in
Avatar of jasonlkennedy
jasonlkennedy

asked on

I cannot find an (A) record) in DNS...

When I run nslookup against a machine name on the DNS server. it gives me the wrong/old IP address. The machine isn't on our local network anymore and I need to rid the A record from DNS.

mmc for dns
Right click the server
nslookup
I type the computer name and the OLD Ip address shows up.

mmc for DNS
DNS server Forward lookup zone
domain.com
there are no A records for the name that I am looking for.

What gives? tombstone?
Avatar of NJComputerNetworks
NJComputerNetworks
Flag of United States of America image

"The machine isn't on our local network anymore and I need to rid the A record from DNS"  Are you sure that your LOCAL DNS server is giving you this resolution?

type

NSLOOKUP machinename <enter>

If the response says something like:  

Non-authoritative answer:        <--------  This line means that an upstream DNS server has this record and provided the reply.  
Name:    www.yahoo-ht2.akadns.net
Address:  xxx.xx.xxx.xxx
Aliases:  www.yahoo.com


If you get an non-authoritative answer, it means that your local DNS servers are not resolving this...but an upsteam DNS server is...  You would need to correct the DNS entry on the upstream DNS server.
Avatar of jasonlkennedy
jasonlkennedy

ASKER

This machine is local and there is only one DNS server.

The answer for nslookup is from the local DNS server, not an upstream one (which would be the ISP).

Thanks
JAson
on DNS server:   dnscmd /clearcache

On client:  ipconfig /flushdns



In the DNS console....  VIEW --> check off ADVANCED

You can look for the record in CHACHED Lookups....

If you right click CACHED lookups, you can delete ...
Still not it.

This has my head smoking
Do these tests...

NSLOOKUP <enter>       <--- this put you in the nslookup command console

type  ---->    Servername

What IP address is returned?  


type --->  The IP address...

What name is returned?


type --->  Fully qualified name...   i.e.  server1.domain.local   or server1.domain.com

Default Server:  domain.com
Address:  xxx.x.x.xx

> ccpidc1
Server:  domain.com
Address:  xxx.x.x.xx

Name:    domain.com
Address:  xxx.x.xxx.xxx

>  xxx.x.xxx.xxx
Server:  domain.com
Address:  xxx.x.x.xx

Name:    domain.com
Address:   xxx.x.xxx.xxx


CCP is a child domain. CCPIDC1 is the domain controller for that domain.
ASKER CERTIFIED SOLUTION
Avatar of NJComputerNetworks
NJComputerNetworks
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I found the problem.

DNS forward lookup zone was forwarding to WINS whcih had the wrong record because it's not dynamic like DNS.

Thanks for your help
Jason