Class | Net::DNS::RR::A |
In: |
lib/net/dns/rr/a.rb
|
Parent: | RR |
Class for DNS IPv4 Address (A) resource records.
The resource data is an IPv4 (i.e. 32 bit long) address, hold in the instance variable address.
a = Net::DNS::RR::A.new("localhost.movie.edu. 360 IN A 127.0.0.1") a = Net::DNS::RR::A.new(:name => "localhost.movie.edu.", :ttl => 360, :cls => Net::DNS::IN, :type => Net::DNS::A, :address => "127.0.0.1" )
When computing binary data to transmit the RR, the RDATA section is an Internet address expressed as four decimal numbers separated by dots without any embedded space (e.g. "10.2.0.52" or "192.0.5.6").
Assigns a new IPv4 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.