1Net::DNS::RR::EUI64(3)User Contributed Perl DocumentationNet::DNS::RR::EUI64(3)
2
3
4
6 Net::DNS::RR::EUI64 - DNS EUI64 resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name IN EUI64 address');
11
12 $rr = new Net::DNS::RR(
13 name => 'example.com',
14 type => 'EUI64',
15 address => '00-00-5e-ef-10-00-00-2a'
16 );
17
19 DNS resource records for 64-bit Extended Unique Identifier (EUI64).
20
21 The EUI64 resource record is used to represent IEEE Extended Unique
22 Identifiers used in various layer-2 networks, ethernet for example.
23
24 EUI64 addresses SHOULD NOT be published in the public DNS. RFC7043
25 describes potentially severe privacy implications resulting from
26 indiscriminate publication of link-layer addresses in the DNS.
27
29 The available methods are those inherited from the base class augmented
30 by the type-specific methods defined in this package.
31
32 Use of undocumented package features or direct access to internal data
33 structures is discouraged and could result in program termination or
34 other unpredictable behaviour.
35
36 address The address field is a 8-octet layer-2 address in network byte
37 order.
38 The presentation format is hexadecimal separated by "-".
39
41 Copyright (c)2013 Dick Franks.
42
43 All rights reserved.
44
45 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
46
48 Permission to use, copy, modify, and distribute this software and its
49 documentation for any purpose and without fee is hereby granted,
50 provided that the above copyright notice appear in all copies and that
51 both that copyright notice and this permission notice appear in
52 supporting documentation, and that the name of the author not be used
53 in advertising or publicity pertaining to distribution of the software
54 without specific prior written permission.
55
56 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
57 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
58 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
59 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
60 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
61 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
62 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
63
65 perl, Net::DNS, Net::DNS::RR, RFC7043
66
67
68
69perl v5.26.3 2018-02-09 Net::DNS::RR::EUI64(3)