Net::DNS::RR::AAAA(3) User Contributed Perl Documentation Net::DNS::RR::AAAA(3)

Net::DNS::RR::AAAA - DNS AAAA resource record

    use Net::DNS;
    $rr = new Net::DNS::RR('name IN AAAA address');
    $rr = new Net::DNS::RR(
        name    => 'example.com',
        type    => 'AAAA',
        address => '2001:DB8::8:800:200C:417A'
        );

Class for DNS IPv6 Address (AAAA) resource records.

The available methods are those inherited from the base class augmented by the type-specific methods defined in this package.

Use of undocumented package features or direct access to internal data structures is discouraged and could result in program termination or other unpredictable behaviour.

    $IPv6_address = $rr->address;

Returns the text representation of the IPv6 address.

    $IPv6_address = $rr->address_long;

Returns the text representation specified in RFC3513, 2.2(1).

    $IPv6_address = $rr->address_short;

Returns the textual form of address recommended by RFC5952.

Copyright (c)1997-1998 Michael Fuhr.

Portions Copyright (c)2002-2004 Chris Reinhardt.

Portions Copyright (c)2012 Dick Franks.

Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.

All rights reserved.

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.

perl, Net::DNS, Net::DNS::RR, RFC3596, RFC3513, RFC5952

2014-01-16 perl v5.34.0