I have an IP address, xx.xx.xx.xx, for which ping works. But when I do an nslookup for that IP address it is failing. Is there a way to find the domain name of the machine with the IP address xx.xx.xx.xx?
|
feedback
|
migrated from stackoverflow.com Jan 5 '10 at 13:22
This question came from our site for professional and enthusiast programmers.
|
The only way to do this is via a reverse DNS lookup. However, if you are saying that The various tools that other posters have mentioned, all ultimately do exactly the same the nslookup will do from your machine. They do a reverse DNS lookup via the "in-addr.arpa" address range (this is a special domain reserved in DNS for reverse lookups). | ||||
|
feedback
|
|
You need to use a "reverse DNS lookup". Try this one online, or Google further for other options. | |||
|
feedback
|
|
Yep, it's called Reverse DNS! Perhaps try: http://remote.12dt.com/ Also consider DNSStuff: http://www.dnsstuff.com/ great website for troubleshooting DNS issues. | |||
feedback
|
|
In order for an IP address to resolve to a hostname, a PTR record must exist in DNS. For example:
The ISP that owns the netblock including your IP (or its delegated zone authority) must set this up. | |||
|
feedback
|
