1Net::DNS::RR::CSYNC(3)User Contributed Perl DocumentationNet::DNS::RR::CSYNC(3)
2
3
4
6 Net::DNS::RR::CSYNC - DNS CSYNC resource record
7
9 use Net::DNS;
10 $rr = Net::DNS::RR->new('name CSYNC SOAserial flags typelist');
11
13 Class for DNSSEC CSYNC resource records.
14
16 The available methods are those inherited from the base class augmented
17 by the type-specific methods defined in this package.
18
19 Use of undocumented package features or direct access to internal data
20 structures is discouraged and could result in program termination or
21 other unpredictable behaviour.
22
23 SOAserial
24 soaserial
25 $soaserial = $rr->soaserial;
26 $rr->soaserial( $soaserial );
27
28 The SOA Serial field contains a copy of the 32-bit SOA serial number
29 from the child zone.
30
31 flags
32 $flags = $rr->flags;
33 $rr->flags( $flags );
34
35 The flags field contains 16 bits of boolean flags that define
36 operations which affect the processing of the CSYNC record.
37
38 immediate
39 $rr->immediate(1);
40
41 if ( $rr->immediate ) {
42 ...
43 }
44
45 If not set, a parental agent must not process the CSYNC record
46 until the zone administrator approves the operation through an out-
47 of-band mechanism.
48
49 soaminimum
50 $rr->soaminimum(1);
51
52 if ( $rr->soaminimum ) {
53 ...
54 }
55
56 If set, a parental agent querying child authoritative servers must
57 not act on data from zones advertising an SOA serial number less
58 than the SOAserial value.
59
60 typelist
61 @typelist = $rr->typelist;
62 $typelist = $rr->typelist;
63
64 The type list indicates the record types to be processed by the
65 parental agent. When called in scalar context, the list is interpolated
66 into a string.
67
69 Copyright (c)2015 Dick Franks
70
71 All rights reserved.
72
73 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
74
76 Permission to use, copy, modify, and distribute this software and its
77 documentation for any purpose and without fee is hereby granted,
78 provided that the original copyright notices appear in all copies and
79 that both copyright notice and this permission notice appear in
80 supporting documentation, and that the name of the author not be used
81 in advertising or publicity pertaining to distribution of the software
82 without specific prior written permission.
83
84 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
85 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
86 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
87 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
88 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
89 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
90 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
91
93 perl Net::DNS Net::DNS::RR RFC7477
94 <https://tools.ietf.org/html/rfc7477>
95
96
97
98perl v5.38.0 2023-07-21 Net::DNS::RR::CSYNC(3)