NAME

Net::Whois::RIS - Whois lookup on RIPE RIS

VERSION

Version 0.1

SYNOPSIS

The module query the RIPE Routing Information Service (RIS) to get information about a specific IP address. You can get information like the AS number announcing the IP address/network.

use Net::Whois::RIS;

my $foo = Net::Whois::RIS->new();
$foo->getIPInfo("8.8.8.8");
print $foo->getOrigin();
print $foo->getDescr();

methods

The object oriented interface to Net::Whois::RIS is described in this section.

The following methods are provided:

Net::Whois::RIS->new();

This constructor returns a new Net::Whois::RIS object encapsulating whois request to RIPE RIS.

getIPInfo($ipaddress);

The method is gathering the information from the RIS service.

getOrigin();

The method returns a string containing the origin of the network/IP requested.

getDescr();

The method returns a string containing the description of the AS announcing the network/IP requested.

AUTHOR

Alexandre Dulaunoy, <adulau at foo.be>

BUGS

Please report any bugs or feature requests to bug-net-whois-ris at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-Whois-RIS. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Net::Whois::RIS

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2010 Alexandre Dulaunoy.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.