Zonemaster::ASNLookup - do lookups of ASNs for IP addresses
Contents
Function
get($addr)
Takes a string (or a Net::IP object) with a single IP address, does a lookup in a Cymru-style DNS
zone and returns a list of AS numbers for the address, if any can be found.
get_with_prefix($addr)
As get(), except it returns a list of a reference to a list with the AS numbers, and a Net::IP object
representing the prefix of the AS.
perl v5.32.0 2021-01-06 Zonemaster::ASNLookup(3pm)
Name
Zonemaster::ASNLookup - do lookups of ASNs for IP addresses
Synopsis
my ($asnref, $prefix) = Zonemaster::ASNLookup->get_with_prefix( '8.8.4.4' );
my $asnref = Zonemaster::ASNLookup->get( '192.168.0.1' );
