1Net::DNS::RR::SOA(3)  User Contributed Perl Documentation Net::DNS::RR::SOA(3)
2
3
4

NAME

6       Net::DNS::RR::SOA - DNS SOA resource record
7

SYNOPSIS

9       "use Net::DNS::RR";
10

DESCRIPTION

12       Class for DNS Start of Authority (SOA) resource records.
13

METHODS

15   mname
16           print "mname = ", $rr->mname, "\n";
17
18       Returns the domain name of the original or primary nameserver for this
19       zone.
20
21   rname
22           print "rname = ", $rr->rname, "\n";
23
24       Returns a domain name that specifies the mailbox for the person
25       responsible for this zone.
26
27   serial
28           print "serial = ", $rr->serial, "\n";
29
30       Returns the zone's serial number.
31
32   refresh
33           print "refresh = ", $rr->refresh, "\n";
34
35       Returns the zone's refresh interval.
36
37   retry
38           print "retry = ", $rr->retry, "\n";
39
40       Returns the zone's retry interval.
41
42   expire
43           print "expire = ", $rr->expire, "\n";
44
45       Returns the zone's expire interval.
46
47   minimum
48           print "minimum = ", $rr->minimum, "\n";
49
50       Returns the minimum (default) TTL for records in this zone.
51
53       Copyright (c) 1997-2002 Michael Fuhr.
54
55       Portions Copyright (c) 2002-2004 Chris Reinhardt.
56
57       All rights reserved.  This program is free software; you may
58       redistribute it and/or modify it under the same terms as Perl itself.
59

SEE ALSO

61       perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet,
62       Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, RFC 1035 Section
63       3.3.13
64
65
66
67perl v5.10.1                      2009-01-26              Net::DNS::RR::SOA(3)
Impressum