How can I look up a hostname given an IP address? Furthermore, how can I specify a timeout in case no such reverse DNS entry exists? Trying to keep things as fast as possible. Or is there a better way? Thank you!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
For implementing the timeout on the function, this stackoverflow thread has answers on that. |
|||||||
|
|
|||
|
|
|
What you're trying to accomplish is called Reverse DNS lookup.
http://docs.python.org/library/socket.html?highlight=gethostbyaddr#socket.gethostbyaddr However, for the timeout part I have read about people running into problems with this. I would check out PyDNS or this solution for more advanced treatment. |
||||
|
|