|
NAMENet::Whois::ARIN::Network - ARIN whois Network record class SYNOPSIS use Net::Whois::ARIN::Network;
my $net = Net::Whois::ARIN::Network->new(
OrgName => 'Electric Lightwave Inc',
OrgID => 'ELIX',
Address => '4400 NE 77th Ave',
City => 'Vancouver',
StateProv => 'WA',
PostalCode => '98662',
Country => 'US',
RegDate => '1995-07-25',
Updated => '2001-05-17',
NetRange => '207.173.0.0 - 207.173.255.255',
CIDR => '207.173.0.0/16',
NetName => 'ELI-NETBLK5',
NetHandle => 'NET-207-173-0-0-1',
Parent => 'NET-207-0-0-0-0',
NetType => 'Direct Allocation',
NameServer => 'NS.ELI.NET',
Comment => 'ADDRESSES WITHIN THIS BLOCK ARE NON-PORTABLE',
);
printf "%s was given a %s of %s by ARIN.\n",
$net->OrgName,
lc $net->NetType,
$net->CIDR;
DESCRIPTIONThe Net::Whois::ARIN::Network module is simple class which is used to store the attributes of an Network record in ARIN's Whois server. Each attribute of the Network record has an accessor/mutator of the same name. METHODS
ATTRIBUTESThese methods are the accessors/mutators for the fields found in the Whois record.
AUTHORTodd Caine <todd.caine at gmail.com> COPYRIGHT AND LICENSECopyright (c) 2004 Todd Caine. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|