swanctl: Document keX_ prefix and replace DH with KE
This commit is contained in:
+43
-28
@@ -66,15 +66,20 @@ connections.<conn>.remote_port = 500
|
|||||||
connections.<conn>.proposals = default
|
connections.<conn>.proposals = default
|
||||||
Comma separated proposals to accept for IKE.
|
Comma separated proposals to accept for IKE.
|
||||||
|
|
||||||
A proposal is a set of algorithms. For non-AEAD algorithms, this includes
|
A proposal is a set of algorithms. For non-AEAD IKE proposals, this includes
|
||||||
for IKE an encryption algorithm, an integrity algorithm, a pseudo random
|
an encryption algorithm, an integrity algorithm, a pseudo-random function
|
||||||
function and a Diffie-Hellman group. For AEAD algorithms, instead of
|
and a key exchange method. For AEAD proposals, instead of encryption and
|
||||||
encryption and integrity algorithms, a combined algorithm is used.
|
integrity algorithms, a combined mode algorithm is used.
|
||||||
|
|
||||||
In IKEv2, multiple algorithms of the same kind can be specified in a single
|
With peers that support multiple IKEv2 key exchanges (RFC 9370), up to seven
|
||||||
proposal, from which one gets selected. In IKEv1, only one algorithm per
|
additional key exchanges may be negotiated. They can be configured by
|
||||||
|
prefixing the algorithm keyword with **keX_** (where X is a number between
|
||||||
|
1 and 7).
|
||||||
|
|
||||||
|
For IKEv2, multiple algorithms of the same kind can be specified in a single
|
||||||
|
proposal, from which one gets selected. For IKEv1, only one algorithm per
|
||||||
kind is allowed per proposal, more algorithms get implicitly stripped. Use
|
kind is allowed per proposal, more algorithms get implicitly stripped. Use
|
||||||
multiple proposals to offer different algorithms combinations in IKEv1.
|
multiple proposals to offer different algorithm combinations with IKEv1.
|
||||||
|
|
||||||
Algorithm keywords get separated using dashes. Multiple proposals may be
|
Algorithm keywords get separated using dashes. Multiple proposals may be
|
||||||
separated by commas. The special value _default_ forms a default proposal
|
separated by commas. The special value _default_ forms a default proposal
|
||||||
@@ -173,7 +178,7 @@ connections.<conn>.childless = allow
|
|||||||
|
|
||||||
Use childless IKE_SA initiation (RFC 6023) for IKEv2, with the first
|
Use childless IKE_SA initiation (RFC 6023) for IKEv2, with the first
|
||||||
CHILD_SA created with a separate CREATE_CHILD_SA exchange (e.g. to use an
|
CHILD_SA created with a separate CREATE_CHILD_SA exchange (e.g. to use an
|
||||||
independent DH exchange for all CHILD_SAs). Acceptable values are _allow_
|
independent key exchange for all CHILD_SAs). Acceptable values are _allow_
|
||||||
(the default), _prefer_, _force_ and _never_. If set to _allow_, responders
|
(the default), _prefer_, _force_ and _never_. If set to _allow_, responders
|
||||||
will accept childless IKE_SAs (as indicated via notify in the IKE_SA_INIT
|
will accept childless IKE_SAs (as indicated via notify in the IKE_SA_INIT
|
||||||
response) while initiators continue to create regular IKE_SAs with the first
|
response) while initiators continue to create regular IKE_SAs with the first
|
||||||
@@ -690,15 +695,20 @@ connections.<conn>.children.<child>.ah_proposals =
|
|||||||
AH proposals to offer for the CHILD_SA.
|
AH proposals to offer for the CHILD_SA.
|
||||||
|
|
||||||
AH proposals to offer for the CHILD_SA. A proposal is a set of algorithms.
|
AH proposals to offer for the CHILD_SA. A proposal is a set of algorithms.
|
||||||
For AH, this includes an integrity algorithm and an optional Diffie-Hellman
|
For AH, this includes an integrity algorithm and an optional key exchange
|
||||||
group. If a DH group is specified, CHILD_SA/Quick Mode rekeying and initial
|
method. If a KE method is specified, CHILD_SA/Quick Mode rekeying and
|
||||||
negotiation uses a separate Diffie-Hellman exchange using the specified
|
initial negotiation uses a separate key exchange using the negotiated method
|
||||||
group (refer to _esp_proposals_ for details).
|
(refer to _esp_proposals_ for details).
|
||||||
|
|
||||||
In IKEv2, multiple algorithms of the same kind can be specified in a single
|
With peers that support multiple IKEv2 key exchanges (RFC 9370), up to seven
|
||||||
proposal, from which one gets selected. In IKEv1, only one algorithm per
|
additional key exchanges may be negotiated. They can be configured by
|
||||||
|
prefixing the algorithm keyword with **keX_** (where X is a number between
|
||||||
|
1 and 7).
|
||||||
|
|
||||||
|
For IKEv2, multiple algorithms of the same kind can be specified in a single
|
||||||
|
proposal, from which one gets selected. For IKEv1, only one algorithm per
|
||||||
kind is allowed per proposal, more algorithms get implicitly stripped. Use
|
kind is allowed per proposal, more algorithms get implicitly stripped. Use
|
||||||
multiple proposals to offer different algorithms combinations in IKEv1.
|
multiple proposals to offer different algorithm combinations with IKEv1.
|
||||||
|
|
||||||
Algorithm keywords get separated using dashes. Multiple proposals may be
|
Algorithm keywords get separated using dashes. Multiple proposals may be
|
||||||
separated by commas. The special value _default_ forms a default proposal
|
separated by commas. The special value _default_ forms a default proposal
|
||||||
@@ -710,29 +720,34 @@ connections.<conn>.children.<child>.esp_proposals = default
|
|||||||
ESP proposals to offer for the CHILD_SA.
|
ESP proposals to offer for the CHILD_SA.
|
||||||
|
|
||||||
ESP proposals to offer for the CHILD_SA. A proposal is a set of algorithms.
|
ESP proposals to offer for the CHILD_SA. A proposal is a set of algorithms.
|
||||||
For ESP non-AEAD proposals, this includes an integrity algorithm, an
|
For non-AEAD ESP proposals, this includes an integrity algorithm, an
|
||||||
encryption algorithm, an optional Diffie-Hellman group and an optional
|
encryption algorithm, an optional key exchange method and an optional
|
||||||
Extended Sequence Number Mode indicator. For AEAD proposals, a combined
|
Extended Sequence Number Mode indicator. For AEAD proposals, a combined
|
||||||
mode algorithm is used instead of the separate encryption/integrity
|
mode algorithm is used instead of the separate encryption/integrity
|
||||||
algorithms.
|
algorithms.
|
||||||
|
|
||||||
If a DH group is specified, CHILD_SA/Quick Mode rekeying and initial
|
If a key exchange method is specified, CHILD_SA/Quick Mode rekeying and
|
||||||
negotiation use a separate Diffie-Hellman exchange using the specified
|
initial negotiation use a separate key exchange using the specified method.
|
||||||
group. However, for IKEv2, the keys of the CHILD_SA created implicitly with
|
However, for IKEv2, the keys of the CHILD_SA created implicitly with the
|
||||||
the IKE_SA will always be derived from the IKE_SA's key material. So any DH
|
IKE_SA will always be derived from the IKE_SA's key material. So any key
|
||||||
group specified here will only apply when the CHILD_SA is later rekeyed or
|
exchange method specified here will only apply when the CHILD_SA is later
|
||||||
is created with a separate CREATE_CHILD_SA exchange. A proposal mismatch
|
rekeyed or is created with a separate CREATE_CHILD_SA exchange. A proposal
|
||||||
might, therefore, not immediately be noticed when the SA is established, but
|
mismatch might, therefore, not immediately be noticed when the SA is
|
||||||
may later cause rekeying to fail.
|
established, but may later cause rekeying to fail.
|
||||||
|
|
||||||
|
With peers that support multiple IKEv2 key exchanges (RFC 9370), up to seven
|
||||||
|
additional key exchanges may be negotiated. They can be configured by
|
||||||
|
prefixing the algorithm keyword with **keX_** (where X is a number between
|
||||||
|
1 and 7).
|
||||||
|
|
||||||
Extended Sequence Number support may be indicated with the _esn_ and _noesn_
|
Extended Sequence Number support may be indicated with the _esn_ and _noesn_
|
||||||
values, both may be included to indicate support for both modes. If omitted,
|
values, both may be included to indicate support for both modes. If omitted,
|
||||||
_noesn_ is assumed.
|
_noesn_ is assumed.
|
||||||
|
|
||||||
In IKEv2, multiple algorithms of the same kind can be specified in a single
|
For IKEv2, multiple algorithms of the same kind can be specified in a single
|
||||||
proposal, from which one gets selected. In IKEv1, only one algorithm per
|
proposal, from which one gets selected. For IKEv1, only one algorithm per
|
||||||
kind is allowed per proposal, more algorithms get implicitly stripped. Use
|
kind is allowed per proposal, more algorithms get implicitly stripped. Use
|
||||||
multiple proposals to offer different algorithms combinations in IKEv1.
|
multiple proposals to offer different algorithm combinations with IKEv1.
|
||||||
|
|
||||||
Algorithm keywords get separated using dashes. Multiple proposals may be
|
Algorithm keywords get separated using dashes. Multiple proposals may be
|
||||||
separated by commas. The special value _default_ forms a default proposal
|
separated by commas. The special value _default_ forms a default proposal
|
||||||
|
|||||||
Reference in New Issue
Block a user