Hmmm - can you do some screenshots or text file copies of what you are seeing when you run your NSLOOKUP and IPCONFIG commands? I know some people are worried about names and IP addresses, so please feel free to edit if you need to. I would investgate the following (with results from my test network)
Code:
C:\Users\jonathan>nslookup
Default Server: jon-dc01.jonathan.local
Address: 192.168.101.1
Any timeouts or failed lookups here should be investigated
Then type in the name of the machine (FQDN if the DNS suffixes are not in place)
Code:
> jon-win8
Server: jon-dc01.jonathan.local
Address: 192.168.101.1
Name: jon-win8.jonathan.local
Address: 192.168.101.17
The first line shows you the dns server resolving it and the second the resolved name
You should then be able to put in the IP address as follows:
Code:
> 192.168.101.17
Server: jon-dc01.jonathan.local
Address: 192.168.101.1
Name: jon-win8.jonathan.local
Address: 192.168.101.17
If you do not have a reverse DNS zone setup, then you get the following (note the change to the IP address I am looking up)
Code:
> 192.168.10.17
Server: jon-dc01.jonathan.local
Address: 192.168.101.1
*** jon-dc01.jonathan.local can't find 192.168.10.17: Non-existent domain
But you will also get this message if the DNS zone is setup but the IP address is not registered. To help with deciding this, I would turn debug mode on so you can see where the response is coming from:
If there is no reverse DNS zone then it will look as follows
Code:
> 192.168.10.17
Server: jon-dc01.jonathan.local
Address: 192.168.101.1
------------
Got answer:
HEADER:
opcode = QUERY, id = 7, rcode = NXDOMAIN
header flags: response, want recursion, recursion avail.
questions = 1, answers = 0, authority records = 1, additional = 0
QUESTIONS:
17.10.168.192.in-addr.arpa, type = PTR, class = IN
AUTHORITY RECORDS:
-> 168.192.in-addr.arpa
ttl = 749 (12 mins 29 secs)
primary name server = prisoner.iana.org
responsible mail addr = hostmaster.root-servers.org
serial = 1
refresh = 604800 (7 days)
retry = 60 (1 min)
expire = 604800 (7 days)
default TTL = 604800 (7 days)
------------
*** jon-dc01.jonathan.local can't find 192.168.10.17: Non-existent domain As you can see, it has looked out onto the internet in an attempt to resolve it. If the DNS record is just not being registered, you will see the following:
Code:
> 192.168.101.99
Server: jon-dc01.jonathan.local
Address: 192.168.101.1
------------
Got answer:
HEADER:
opcode = QUERY, id = 9, rcode = NXDOMAIN
header flags: response, auth. answer, want recursion, recursion avail.
questions = 1, answers = 0, authority records = 1, additional = 0
QUESTIONS:
99.101.168.192.in-addr.arpa, type = PTR, class = IN
AUTHORITY RECORDS:
-> 101.168.192.in-addr.arpa
ttl = 3600 (1 hour)
primary name server = jon-dc01.jonathan.local
responsible mail addr = hostmaster.jonathan.local
serial = 26
refresh = 900 (15 mins)
retry = 600 (10 mins)
expire = 86400 (1 day)
default TTL = 3600 (1 hour)
------------
*** jon-dc01.jonathan.local can't find 192.168.101.99: Non-existent domain Here, you can see it is still being resolved locally, but not finding anything.
If the results are similar to the second one, then you need to look at the DNS settings on the client to see where it thinks it should be trying to register it. You can also force it by ipconfig/registerdns (on the client)
Jonathan