1Net::DNS::RR::DHCID(3)User Contributed Perl DocumentationNet::DNS::RR::DHCID(3)
2
3
4
6 Net::DNS::RR::DHCID - DNS DHCID resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name DHCID algorithm fptype fingerprint');
11
13 DNS RR for Encoding DHCP Information (DHCID)
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 identifiertype
24 $identifiertype = $rr->identifiertype;
25
26 The 16-bit identifier type describes the form of host identifier used
27 to construct the DHCP identity information.
28
29 digesttype
30 $digesttype = $rr->digesttype;
31
32 The 8-bit digest type number describes the message-digest algorithm
33 used to obfuscate the DHCP identity information.
34
35 digest
36 $digest = $rr->digest;
37
38 Binary representation of the digest of DHCP identity information.
39
40 rdata
41 The RDATA for this record is stored in master files as a single block
42 using Base64 representation.
43
44 White space characters may appear anywhere within the Base64 text and
45 will be silently ignored.
46
48 Copyright (c)2009 Olaf Kolkman, NLnet Labs.
49
50 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
51
52 All rights reserved.
53
54 This program is free software; you may redistribute it and/or modify it
55 under the same terms as Perl itself.
56
58 perl, Net::DNS, Net::DNS::RR, RFC4701
59
60
61
62perl v5.16.3 2012-12-28 Net::DNS::RR::DHCID(3)