diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2020-06-06 01:19:31 +0000 |
---|---|---|
committer | BenoƮt Ganne <bganne@cisco.com> | 2020-06-11 16:50:55 +0000 |
commit | 4cb21c8e5d70d20df94f5d892471a11488547881 (patch) | |
tree | 64ecd774eeba28c4102145f5fcfc21a4cde396d0 /src/plugins/ikev2/ikev2.c | |
parent | cd35ed48d44615c49617e6d0135396b57cd43cd5 (diff) |
ikev2: don't add DH group in ESP transform proposals
Type: fix
Anouncing DH group in esp transform proposals will enable PFS which is
not suppored now. This fixes issue during rekey when using strongswan as
responder.
Change-Id: Ib9f586113ae0ab9dc67e6ceadff43f8aac463820
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'src/plugins/ikev2/ikev2.c')
-rw-r--r-- | src/plugins/ikev2/ikev2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ikev2/ikev2.c b/src/plugins/ikev2/ikev2.c index bba8876c046..211cf25ef43 100644 --- a/src/plugins/ikev2/ikev2.c +++ b/src/plugins/ikev2/ikev2.c @@ -3011,7 +3011,7 @@ ikev2_set_initiator_proposals (vlib_main_t * vm, ikev2_sa_t * sa, } /* DH */ - if (is_ike || ts->dh_type != IKEV2_TRANSFORM_DH_TYPE_NONE) + if (is_ike) { error = 1; vec_foreach (td, km->supported_transforms) |