Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

3 Answers

up vote 13 down vote accepted
>>> import socket
>>> socket.gethostbyaddr("69.59.196.211")
('stackoverflow.com', ['211.196.59.69.in-addr.arpa'], ['69.59.196.211'])

For implementing the timeout on the function, this stackoverflow thread has answers on that.

share|improve this answer
what about something like 'http:/1.0.1.0/blah/blahm.html' ? – Eiyrioü von Kauyf Dec 12 '12 at 16:42
@Eiyrioü von Kauyf: That was not the question asked (return a hostname when specified an ip address). – ChristopheD Apr 18 at 14:54
it's the same question - however i'm asking do you have a suggested way to normalize that and do socket.gethostbyaddr("1.0.1.0") or the like? It's the same question but the input format is different - gethostbyaddr does not like non normalized input. – Eiyrioü von Kauyf Apr 18 at 17:44
>>> import socket
>>> if hasattr(socket, 'setdefaulttimeout'):
>>>     # Set the default timeout on sockets to 5 seconds
>>>     socket.setdefaulttimeout(5)
>>> socket.gethostbyaddr("69.59.196.211")
('stackoverflow.com', ['211.196.59.69.in-addr.arpa'], ['69.59.196.211'])
share|improve this answer

What you're trying to accomplish is called Reverse DNS lookup.

socket.gethostbyaddr("IP") 
# => (hostname, alias-list, IP)

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.