views:

347

answers:

2

We're currently looking for a reliable Reverse DNS lookup service (Input IP Address -> output domain name) which is accessible by API. Volumes are not not huge but we need a reliable service. Anybody know any providers? experience with them?

NB: I need reverse lookup - i.e. I have the IP address, I want to domain name.

A: 

Why do you need a "provider"? Just issue the DNS requests yourself, either from the command line (nslookup or, better, dig, but you did not indicate your operating system so I cannot say more) or from a program (any programming langauge allow to perform reverse DNS queries.

bortzmeyer
Downvotes without comments are the scourge of Stackoverflow. In this case, was it lazyness or incompetence?
bortzmeyer
A: 

Domaintools does this but you need a membership to get full results. Are they complete? who knows -- the nature of DNS means there is no reliable mapping to really know ALL the forward entries that point at a given IP, without crawling every public DNS server. There's really not even a reliable way to do that, since the only people that truly know every domain that exists are the root registrars.

I'm assuming what you're asking here is not for "true" reverse DNS (which requires a specific entry created in the DNS server). Reverse DNS (PTR records) are basically voluntary, and also require access to the reverse zone (in the case of shared hosting, etc, people often don't have that). In addition, often there are hundreds of domains hosted on the same IP, but only one reverse entry.

gregmac