1Net::DNS::RR::NSEC(3) User Contributed Perl DocumentationNet::DNS::RR::NSEC(3)
2
3
4

NAME

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

SYNOPSIS

9           use Net::DNS;
10           $rr = new Net::DNS::RR( 'name NSEC nxtdname typelist' );
11

DESCRIPTION

13       Class for DNSSEC NSEC resource records.
14

METHODS

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   nxtdname
24           $nxtdname = $rr->nxtdname;
25           $rr->nxtdname( $nxtdname );
26
27       The Next Domain field contains the next owner name (in the canonical
28       ordering of the zone) that has authoritative data or contains a
29       delegation point NS RRset.
30
31   typelist
32           @typelist = $rr->typelist;
33           $typelist = $rr->typelist;
34
35       typelist() identifies the RRset types that exist at the NSEC RR owner
36       name.  When called in scalar context, the list is interpolated into a
37       string.
38
39   typemap
40           $exists = $rr->typemap($rrtype);
41
42       typemap() returns a Boolean true value if the specified RRtype occurs
43       in the type bitmap of the NSEC record.
44
45   covers
46           $covered = $rr->covers( 'example.foo' );
47
48       covers() returns a Boolean true value if the canonical form of the
49       name, or one of its ancestors, falls between the owner name and the
50       nxtdname field of the NSEC record.
51
53       Copyright (c)2001-2005 RIPE NCC.  Author Olaf M. Kolkman
54
55       Portions Copyright (c)2018 Dick Franks
56
57       All rights reserved.
58
59       Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
60

LICENSE

62       Permission to use, copy, modify, and distribute this software and its
63       documentation for any purpose and without fee is hereby granted,
64       provided that the above copyright notice appear in all copies and that
65       both that copyright notice and this permission notice appear in
66       supporting documentation, and that the name of the author not be used
67       in advertising or publicity pertaining to distribution of the software
68       without specific prior written permission.
69
70       THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
71       OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
72       MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
73       IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
74       CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
75       TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
76       SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
77

SEE ALSO

79       perl, Net::DNS, Net::DNS::RR, RFC4034, RFC3755
80
81
82
83perl v5.30.0                      2019-07-26             Net::DNS::RR::NSEC(3)
Impressum