1Net::DNS::RR::SOA(3) User Contributed Perl Documentation Net::DNS::RR::SOA(3)
2
3
4
6 Net::DNS::RR::SOA - DNS SOA resource record
7
9 "use Net::DNS::RR";
10
12 Class for DNS Start of Authority (SOA) resource records.
13
15 mname
16
17 print "mname = ", $rr->mname, "\n";
18
19 Returns the domain name of the original or primary nameserver for this
20 zone.
21
22 rname
23
24 print "rname = ", $rr->rname, "\n";
25
26 Returns a domain name that specifies the mailbox for the person respon‐
27 sible for this zone.
28
29 serial
30
31 print "serial = ", $rr->serial, "\n";
32
33 Returns the zone's serial number.
34
35 refresh
36
37 print "refresh = ", $rr->refresh, "\n";
38
39 Returns the zone's refresh interval.
40
41 retry
42
43 print "retry = ", $rr->retry, "\n";
44
45 Returns the zone's retry interval.
46
47 expire
48
49 print "expire = ", $rr->expire, "\n";
50
51 Returns the zone's expire interval.
52
53 minimum
54
55 print "minimum = ", $rr->minimum, "\n";
56
57 Returns the minimum (default) TTL for records in this zone.
58
60 Copyright (c) 1997-2002 Michael Fuhr.
61
62 Portions Copyright (c) 2002-2004 Chris Reinhardt.
63
64 All rights reserved. This program is free software; you may redis‐
65 tribute it and/or modify it under the same terms as Perl itself.
66
68 perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet,
69 Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, RFC 1035 Section
70 3.3.13
71
72
73
74perl v5.8.8 2007-08-01 Net::DNS::RR::SOA(3)