Net::IPv6Addr(3pm) | User Contributed Perl Documentation | Net::IPv6Addr(3pm) |
Net::IPv6Addr - Check and manipulate IPv6 addresses
This documents version 1.02 of Net::IPv6Addr corresponding to git commit f9065cb7b044da442df16443d65593a5a3fc6baa <https://github.com/benkasminbullock/net-ipv6addr/commit/f9065cb7b044da442df16443d65593a5a3fc6baa> released on Wed Mar 31 11:11:47 2021 +0900.
use Net::IPv6Addr; my $addr = "dead:beef:cafe:babe::f0ad"; Net::IPv6Addr::ipv6_parse($addr); my $x = Net::IPv6Addr->new($addr); print $x->to_string_preferred(), "\n";
produces output
dead:beef:cafe:babe:0:0:0:f0ad
(This example is included as synopsis.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/synopsis.pl> in the distribution.)
"Net::IPv6Addr" checks whether strings contain valid IPv6 addresses, and converts IPv6 addresses into various formats.
All of "new", "is_ipv6", and "ipv6_parse" can process the following formats:
This is the form described as the "preferred form" in section 2.2 of "RFC1884" et al. Output with "to_string_preferred".
This is the "canonical text representation format" of "RFC5952". Output with "to_string_compressed".
Output with "to_string_ipv4".
Output with "to_string_ipv4_compressed".
This encoding was given in "RFC1924" as an April Fool's joke. Output with "to_string_base85".
In addition, the following formats can be output:
The methods and functions are listed in alphabetical order. All except "new" serve as both object methods and standalone functions.
use Net::IPv6Addr 'from_bigint'; print from_bigint ('12345678901234567890')->to_string_compressed ();
produces output
::ab54:a98c:eb1f:ad2
(This example is included as from-bigint.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/from-bigint.pl> in the distribution.)
Given a string or a Math::BigInt object containing a number, this converts it into a Net::IPv6Addr object.
Parameters
A string or a Math::BigInt object. If the input is a scalar, it's converted into a Math::BigInt object.
Returns
A Net::IPv6Addr object
Notes
Invalid input will generate an exception.
This function was added in "0.95".
use Net::IPv6Addr; my $obj = Net::IPv6Addr->new ('dead:beef:cafe:babe:dead:beef:cafe:babe'); if ($obj->in_network ('dead:beef:ca0::/21')) { print $obj->to_string_compressed, " is in network.\n"; }
produces output
dead:beef:cafe:babe:dead:beef:cafe:babe is in network.
(This example is included as inet.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/inet.pl> in the distribution.)
Parameters
If used as an object method, a network and its size in bits
my $ok = $x->in_network ("aa:bb:cc:dd::", 64);
If used as a subroutine, an IPv6 address string in any format, followed by a network address string and its size in bits.
my $addr = 'fd00::54:20c:29fe:fe14:ab4b'; my $ok = Net::IPv6Addr::in_network ($addr, "aa:bb:cc:dd::", 64);
The network size may also be given with the / notation after the network address string:
my $ok = $x->in_network("aa:bb:cc:dd::/64");
Returns
A true value if the address $x is a member of the network given as the argument, or false otherwise.
Notes
Invalid input will generate an exception.
Prior to version "0.9", this did not work correctly unless the net size was a multiple of sixteen.
use Net::IPv6Addr 'in_network_of_size'; my $obj = in_network_of_size ('dead:beef:cafe:babe:dead:beef:cafe:babe', 42); print $obj->to_string_compressed ();
produces output
dead:beef:cac0::
(This example is included as inos.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/inos.pl> in the distribution.)
Given an input IPv6 address $x, this returns the $n most-significant bits of $x as a new Net::IPv6Addr object.
Parameters
If used as an object method, network size in bits:
my $obj = $x->in_network_of_size (64);
If used as a subroutine, an IPv6 address string in any format and a network size in bits:
my $obj = in_network_of_size ($addr, 64);
Network size may also be given with "/" notation:
my $obj = in_network_of_size ("$addr/64");
Returns
The $n most-significant bits of $x as a new Net::IPv6Addr object.
Notes
Invalid input will generate an exception.
Prior to version "0.9", this did not work correctly unless the net size was a multiple of sixteen.
my $niok = ipv6_chkip ('dead:beef:cafe:babe::f0ad');
Parameters
An IPv6 address string, without a prefix.
Returns
A true value (a code reference for the parser for this IP) if it's a valid address; a false value ("undef") if not.
my ($ni, $pl) = ipv6_parse ('dead:beef:cafe:babe::f0ad');
Parameters
Either a string containing an IPv6 address string, which may also include a "/" character and a numeric prefix length,
my ($x, $y) = ipv6_parse ("a::/24");
or an IPv6 address string, with an optional second argument consisting of a numeric prefix length:
my ($x, $y) = ipv6_parse('a::', '24');
Returns
Called in array context, the return value is a list consisting of the address string and the prefix, if it parses correctly. Called in scalar context, the address and prefix are concatenated with "/".
Notes
Throws an exception on malformed input.
my $niok = is_ipv6 ('dead:beef:cafe:babe::f0ad');
Parameters
Identical to "ipv6_parse".
Returns
This returns the return value of "ipv6_parse", called in scalar context, if it does parse out correctly, otherwise it returns "undef". Unlike "ipv6_parse", "is_ipv6" does not throw exceptions.
my $ni = Net::IPv6Addr->new ('dead:beef:cafe:babe::f0ad');
Create a new Net::IPv6Addr object from a string. Internally, the object is a blessed array reference containing the eight parts of the address as integers.
Parameters
A string to be interpreted as an IPv6 address.
Returns
A "Net::IPv6Addr" object if successful.
Notes
Throws an exception if the string isn't a valid address.
use Net::IPv6Addr 'to_array'; my @int = to_array ('dead::beef'); my $ipobj = Net::IPv6Addr->new ('dead::beef'); my @int2 = $ipobj->to_array (); print "@int\n@int2\n";
produces output
dead 0000 0000 0000 0000 0000 0000 beef dead 0000 0000 0000 0000 0000 0000 beef
(This example is included as array.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/array.pl> in the distribution.)
Convert an IPv6 address into an array of eight hexadecimal numbers.
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
An array [0..7] of 16-bit hexadecimal numbers (strings).
Notes
Invalid input will generate an exception.
See also "to_intarray" and "to_bigint".
use Net::IPv6Addr 'to_bigint'; my $int = to_bigint ('dead::beef'); my $ipobj = Net::IPv6Addr->new ('dead::beef'); my $int2 = $ipobj->to_bigint (); print "$int\n$int2\n";
produces output
295986882420777848964380943247191621359 295986882420777848964380943247191621359
(This example is included as bigint.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/bigint.pl> in the distribution.)
Convert an IPv6 address into a Math::BigInt object containing the IP address as a single number.
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
The BigInt representation of the given IPv6 address.
Notes
Invalid input will generate an exception.
See also "from_bigint", "to_intarray" and "to_array".
use Net::IPv6Addr 'to_array'; my @int = to_array ('dead::beef'); my $ipobj = Net::IPv6Addr->new ('dead::beef'); my @int2 = $ipobj->to_array (); print "@int\n@int2\n";
produces output
dead 0000 0000 0000 0000 0000 0000 beef dead 0000 0000 0000 0000 0000 0000 beef
(This example is included as array.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/array.pl> in the distribution.)
Convert an IPv6 address into an array of eight integer numbers.
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
An array [0..7] of numbers.
Notes
Invalid input will generate an exception.
See also "to_array" and "to_bigint".
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
The IPv6 address in the style detailed by "RFC1924".
Notes
Invalid input will generate an exception.
The base 85 encoding described in "RFC1924" was an April Fool's joke.
use Net::IPv6Addr 'to_string_compressed'; print to_string_compressed ('dead:beef:0000:0000:0000:0000:cafe:babe');
produces output
dead:beef::cafe:babe
(This example is included as compressed.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/compressed.pl> in the distribution.)
This provides the "canonical text representation format" of "RFC5952".
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
The IPv6 address in the "compressed" ("RFC1884" et al.) or "canonical" ("RFC5952") format. Hexadecimal numbers are reduced to lower case, consecutive zero elements are reduced to double colons, and leading zeros are removed from strings of hexadecimal digits. All treatment of ambiguities is as per RFC5952. (See t/rfc5952.t <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/t/rfc5952.t> for tests.)
Notes
Invalid input will generate an exception.
use Net::IPv6Addr 'to_string_ip6_int'; my $s = to_string_ip6_int ('dead::beef'); my $ipobj = Net::IPv6Addr->new ('dead::beef'); my $s2 = $ipobj->to_string_ip6_int (); print "$s\n$s2\n";
produces output
f.e.e.b.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.a.e.d.IP6.INT. f.e.e.b.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.a.e.d.IP6.INT.
(This example is included as string-ip6-int.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/string-ip6-int.pl> in the distribution.)
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
The reverse-address pointer as defined by "RFC1886".
Notes
Invalid input will generate an exception.
The reverse process of converting these into Net::IPv6Addr objects is not supported.
use Net::IPv6Addr ':all'; print to_string_ipv4_compressed ('dead:beef:0:3:2:1:cafe:babe');
produces output
dead:beef::3:2:1:202.254.186.190
(This example is included as to-string-ipv4.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/to-string-ipv4.pl> in the distribution.)
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
The IPv6 address in the IPv4 format detailed by "RFC1884" et al.
Notes
When used as a subroutine, invalid input will generate an exception.
From version "0.95", this allows any IPv6 address to be produced, not just the restricted forms allowed previously.
use Net::IPv6Addr ':all'; print to_string_ipv4_compressed ('dead:beef:0:3:2:1:cafe:babe');
produces output
dead:beef::3:2:1:202.254.186.190
(This example is included as to-string-ipv4-comp.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/to-string-ipv4-comp.pl> in the distribution.)
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
The IPv6 address in the compressed IPv4 format detailed by "RFC1884" et al.
Notes
When used as a subroutine, invalid input will generate an exception.
From version "0.95", this allows any IPv6 address to be produced, not just the restricted forms allowed previously.
use Net::IPv6Addr 'to_string_preferred'; print to_string_preferred ('dead:beef:cafe:babe::f0ad');
produces output
dead:beef:cafe:babe:0:0:0:f0ad
(This example is included as preferred.pl <https://fastapi.metacpan.org/source/BKB/Net-IPv6Addr-1.02/examples/preferred.pl> in the distribution.)
Parameters
If used as an object method, none; if used as a subroutine, an IPv6 address string in any format.
Returns
The IPv6 address, formatted in the "preferred" way (as detailed by "RFC1884" et al).
Notes
Invalid input will generate an exception.
As of version 1.02, "from_bigint", "in_network", "in_network_of_size", "ipv6_chkip", "ipv6_parse", "is_ipv6", "to_array", "to_bigint", "to_intarray", "to_string_base85", "to_string_compressed", "to_string_ip6_int", "to_string_ipv4", "to_string_ipv4_compressed", "to_string_preferred" may be exported on demand. All the exported functions may be exported using
use Net::IPv6Addr ':all';
Search grep.cpan.me for uses of this module <http://grep.cpan.me/?q=Net%3A%3AIPv6Addr%5Cb>
The following RFCs (requests for comment, internet standards documentation) contain information on IPv6.
Addressing Architecture series
These are all the same standard, with updates. The most recent one is the active one.
Other
This was an April Fool's joke.
This contains a "recommendation for a canonical text representation format of IPv6 addresses" which corresponds to the output of "to_string_compressed" in this module.
The links go to the plain text online versions of the RFCs.
There are a very large number of CPAN modules which deal with IPv6 addresses. The following list gives all the ones I know about which overlap with this module, in alphabetical order.
It insists on having a prefix with the IP address, so
my $ipv6 = IPv6::Address->new ('2001:0:0:1:0:0:0:1');
actually fails, you have to use
my $ipv6 = IPv6::Address->new ('2001:0:0:1:0:0:0:1/64');
This module was originally written by Tony Monroe in 2001 to simplify the task of maintaining DNS records after he set himself up with Freenet6.
In 2017 the module was adopted by Ben Bullock with the help of Neil Bowers as part of "CPAN day". Significant changes to the module since then include the following:
Math::Base85 dependence removed. This module is only needed to support the April Fool's joke method of IPv6 addresses, so if the user doesn't already have Math::Base85, the module now disables support for the April Fool addresses.
The restriction on mixed address inputs removed in "0.92" was also removed in the output routines "to_string_ipv4" and "to_string_ipv4_compressed".
Tony Monroe(*)
The module's interface resembles Net::IPv4Addr by Francis J. Lacoste <francis dot lacoste at iNsu dot COM>.
Some fixes and subroutines from Jyrki Soini <jyrki dot soini at sonera dot com>.
(*) The current module maintainer (BKB) does not have any contact information for Tony Monroe. Those wishing to contact him can do so via Neil Bowers (see his CPAN user page for contact details <https://metacpan.org/author/NEILB>).
This distribution is copyright (c) 2001-2002 Tony Monroe. All rights reserved. This software is distributed under the same license terms as Perl itself. This software comes with NO WARRANTIES WHATSOEVER, express, implied, or otherwise.
2021-09-21 | perl v5.32.1 |