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 = Net::DNS::RR->new('client.example.com. DHCID ( AAAB
11 xLmlskllE0MVjd57zHcWmEH3pCQ6VytcKD//7es/deY=');
12
13 $rr = Net::DNS::RR->new(
14 name => 'client.example.com',
15 type => 'DHCID',
16 digest => 'ObfuscatedIdentityData',
17 digesttype => 1,
18 identifiertype => 2,
19 );
20
22 DNS RR for Encoding DHCP Information (DHCID)
23
25 The available methods are those inherited from the base class augmented
26 by the type-specific methods defined in this package.
27
28 Use of undocumented package features or direct access to internal data
29 structures is discouraged and could result in program termination or
30 other unpredictable behaviour.
31
32 identifiertype
33 $identifiertype = $rr->identifiertype;
34 $rr->identifiertype( $identifiertype );
35
36 The 16-bit identifier type describes the form of host identifier used
37 to construct the DHCP identity information.
38
39 digesttype
40 $digesttype = $rr->digesttype;
41 $rr->digesttype( $digesttype );
42
43 The 8-bit digest type number describes the message-digest algorithm
44 used to obfuscate the DHCP identity information.
45
46 digest
47 $digest = $rr->digest;
48 $rr->digest( $digest );
49
50 Binary representation of the digest of DHCP identity information.
51
53 Copyright (c)2009 Olaf Kolkman, NLnet Labs.
54
55 All rights reserved.
56
57 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
58
60 Permission to use, copy, modify, and distribute this software and its
61 documentation for any purpose and without fee is hereby granted,
62 provided that the original copyright notices appear in all copies and
63 that both copyright notice and this permission notice appear in
64 supporting documentation, and that the name of the author not be used
65 in advertising or publicity pertaining to distribution of the software
66 without specific prior written permission.
67
68 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
69 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
70 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
71 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
72 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
73 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
74 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
75
77 perl Net::DNS Net::DNS::RR RFC4701
78 <https://tools.ietf.org/html/rfc4701>
79
80
81
82perl v5.38.0 2023-07-21 Net::DNS::RR::DHCID(3)