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

NAME

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

SYNOPSIS

9           use Net::DNS;
10           $rr = new Net::DNS::RR('name NS nsdname');
11
12           $rr = new Net::DNS::RR(
13               name    => 'example.com',
14               type    => 'NS',
15               nsdname => 'ns.example.com',
16               );
17

DESCRIPTION

19       Class for DNS Name Server (NS) resource records.
20

METHODS

22       The available methods are those inherited from the base class augmented
23       by the type-specific methods defined in this package.
24
25       Use of undocumented package features or direct access to internal data
26       structures is discouraged and could result in program termination or
27       other unpredictable behaviour.
28
29   nsdname
30           $nsdname = $rr->nsdname;
31
32       A domain name which specifies a host which should be authoritative for
33       the specified class and domain.
34
36       Copyright (c)1997-2002 Michael Fuhr.
37
38       Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
39
40       All rights reserved.
41
42       This program is free software; you may redistribute it and/or modify it
43       under the same terms as Perl itself.
44

SEE ALSO

46       perl, Net::DNS, Net::DNS::RR, RFC1035 Section 3.3.11
47
48
49
50perl v5.16.3                      2012-12-28               Net::DNS::RR::NS(3)
Impressum