1Net::DNS::RR::IPSECKEY(U3s)er Contributed Perl DocumentatNieotn::DNS::RR::IPSECKEY(3)
2
3
4
6 Net::DNS::RR::IPSECKEY - DNS IPSECKEY resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name IPSECKEY precedence gatetype algorithm gateway key');
11
13 DNS IPSEC Key Storage (IPSECKEY) resource records.
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 precedence
24 $precedence = $rr->precedence;
25
26 This is an 8-bit precedence for this record. Gateways listed in
27 IPSECKEY records with lower precedence are to be attempted first.
28
29 gatetype
30 $gatetype = $rr->gatetype;
31
32 The gateway type field indicates the format of the information that is
33 stored in the gateway field.
34
35 algorithm
36 $algorithm = $rr->algorithm;
37
38 The algorithm type field identifies the public keys cryptographic
39 algorithm and determines the format of the public key field.
40
41 gateway
42 $gateway = $rr->gateway;
43
44 The gateway field indicates a gateway to which an IPsec tunnel may be
45 created in order to reach the entity named by this resource record.
46
47 key
48 $key = $rr->key;
49
50 Base64 representation of the optional public key block for the resource
51 record.
52
53 keybin
54 $keybin = $rr->keybin;
55
56 Binary representation of the public key block for the resource record.
57
59 Copyright (c)2007 Olaf Kolkman, NLnet Labs.
60
61 Portions Copyright (c)2012 Dick Franks.
62
63 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
64
65 All rights reserved.
66
67 This program is free software; you may redistribute it and/or modify it
68 under the same terms as Perl itself.
69
71 perl, Net::DNS, Net::DNS::RR, RFC4025
72
73
74
75perl v5.16.3 2012-12-28 Net::DNS::RR::IPSECKEY(3)