How do I perform a reverse DNS lookup, that is how do I resolve an IP address to its DNS hostname in Perl?
|
1
|
|||
|
|
|
|
gethostbyaddr and similar calls. See http://perldoc.perl.org/functions/gethostbyaddr.html |
||
|
|
|
|
If you need more detailed DNS info use the Net::DNS module, here is an example:
Original Source EliteHackers.info, more details there as well. |
|||
|
|
|
|
|
||
|
|
|
|
There may be an easier way, but for IPv4, if you can perform ordinary DNS lookups, you can always construct the reverse query yourself. For the IPv4 address A.B.C.D, look up any PTR records at D.C.B.A.in-addr.arpa. For IPv6, you take the 128 hex nibbles and flip them around and append ipv6.arpa. and do the same thing. |
||
|
|
|
|
If gethostbyaddr doesn't fit your needs, Net::DNS is more flexible. |
|||
|
|
|
|
This might be useful...
|
||
|
|
|
|
one-liner:
|
||
|
|
