1Net::DNS::RR::IPSECKEY(U3s)er Contributed Perl DocumentatNieotn::DNS::RR::IPSECKEY(3)
2
3
4

NAME

6       Net::DNS::RR::IPSECKEY - DNS IPSECKEY resource record
7

SYNOPSIS

9           use Net::DNS;
10           $rr = new Net::DNS::RR('name IPSECKEY precedence gatetype algorithm gateway key');
11

DESCRIPTION

13       DNS IPSEC Key Storage (IPSECKEY) resource records.
14

METHODS

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           $rr->precedence( $precedence );
26
27       This is an 8-bit precedence for this record.  Gateways listed in
28       IPSECKEY records with lower precedence are to be attempted first.
29
30   gatetype
31           $gatetype = $rr->gatetype;
32
33       The gateway type field indicates the format of the information that is
34       stored in the gateway field.
35
36   algorithm
37           $algorithm = $rr->algorithm;
38           $rr->algorithm( $algorithm );
39
40       The algorithm type field identifies the public keys cryptographic
41       algorithm and determines the format of the public key field.
42
43   gateway
44           $gateway = $rr->gateway;
45           $rr->gateway( $gateway );
46
47       The gateway field indicates a gateway to which an IPsec tunnel may be
48       created in order to reach the entity named by this resource record.
49
50   pubkey
51   key
52           $key = $rr->key;
53           $rr->key( $key );
54
55       Base64 representation of the optional public key block for the resource
56       record.
57
58   keybin
59           $keybin = $rr->keybin;
60           $rr->keybin( $keybin );
61
62       Binary representation of the public key block for the resource record.
63
65       Copyright (c)2007 Olaf Kolkman, NLnet Labs.
66
67       Portions Copyright (c)2012,2015 Dick Franks.
68
69       All rights reserved.
70
71       Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
72

LICENSE

74       Permission to use, copy, modify, and distribute this software and its
75       documentation for any purpose and without fee is hereby granted,
76       provided that the above copyright notice appear in all copies and that
77       both that copyright notice and this permission notice appear in
78       supporting documentation, and that the name of the author not be used
79       in advertising or publicity pertaining to distribution of the software
80       without specific prior written permission.
81
82       THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
83       OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
84       MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
85       IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
86       CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
87       TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
88       SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
89

SEE ALSO

91       perl, Net::DNS, Net::DNS::RR, RFC4025
92
93
94
95perl v5.26.3                      2018-02-09         Net::DNS::RR::IPSECKEY(3)
Impressum