1Net::DNS::RR::LP(3) User Contributed Perl Documentation Net::DNS::RR::LP(3)
2
3
4
6 Net::DNS::RR::LP - DNS LP resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name IN LP preference locator');
11
12 $rr = new Net::DNS::RR(
13 name => 'example.com',
14 type => 'LP',
15 preference => 10,
16 locator => 'locator.example.com'
17 );
18
20 Class for DNS Locator Pointer (LP) resource records.
21
22 The LP DNS resource record (RR) is used to hold the name of a
23 subnetwork for ILNP. The name is an FQDN which can then be used to
24 look up L32 or L64 records. LP is, effectively, a Locator Pointer to
25 L32 and/or L64 records.
26
28 The available methods are those inherited from the base class augmented
29 by the type-specific methods defined in this package.
30
31 Use of undocumented package features or direct access to internal data
32 structures is discouraged and could result in program termination or
33 other unpredictable behaviour.
34
35 preference
36 $preference = $rr->preference;
37
38 A 16 bit unsigned integer in network byte order that indicates the
39 relative preference for this LP record among other LP records
40 associated with this owner name. Lower values are preferred over
41 higher values.
42
43 locator
44 $locator = $rr->locator;
45
46 The Locator field contains the DNS target name that is used to
47 reference L32 and/or L64 records.
48
50 Copyright (c)2012 Dick Franks.
51
52 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
53
54 All rights reserved.
55
56 This program is free software; you may redistribute it and/or modify it
57 under the same terms as Perl itself.
58
60 perl, Net::DNS, Net::DNS::RR, RFC6742
61
62
63
64perl v5.16.3 2012-12-28 Net::DNS::RR::LP(3)