Class Net::DNS::RR::AAAA
In: lib/net/dns/rr/aaaa.rb
Parent: RR

IPv6 Address Record (AAAA)

Class for DNS IPv6 Address (AAAA) resource records.

Methods

address   address=   value  

Public Instance methods

Gets the current IPv6 address for this record.

Returns an instance of IPAddr.

Assigns a new IPv6 address to this record, which can be in the form of a String or an IPAddr object.

Examples

  a.address = "192.168.0.1"
  a.address = IPAddr.new("10.0.0.1")

Returns the new allocated instance of IPAddr.

Gets the standardized value for this record, represented by the value of address.

Returns a String.

[Validate]