28 lines
1.4 KiB
Diff
28 lines
1.4 KiB
Diff
From: Beniamino Galvani <bgalvani@redhat.com>
|
|
Date: Mon, 16 Sep 2019 16:14:38 +0200
|
|
Subject: [PATCH 7/7] supplicant: add FT-SAE key-mgmt to verification list
|
|
|
|
FT-SAE is missing in the supplicant configuration verification list,
|
|
causing an activation failure when using SAE and the supplicant
|
|
supports FT.
|
|
|
|
Fixes: d17a0a090555 ('supplicant: allow fast transition for WPA-PSK and WPA-EAP')
|
|
(cherry picked from commit c177a38e88021392412a796154d47168b8b17598)
|
|
---
|
|
src/supplicant/nm-supplicant-settings-verify.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/supplicant/nm-supplicant-settings-verify.c b/src/supplicant/nm-supplicant-settings-verify.c
|
|
index 96666e94f..583aa861e 100644
|
|
--- a/src/supplicant/nm-supplicant-settings-verify.c
|
|
+++ b/src/supplicant/nm-supplicant-settings-verify.c
|
|
@@ -70,7 +70,7 @@ const char * proto_allowed[] = { "WPA", "RSN", NULL };
|
|
const char * key_mgmt_allowed[] = { "WPA-PSK", "WPA-PSK-SHA256", "FT-PSK",
|
|
"WPA-EAP", "WPA-EAP-SHA256", "FT-EAP", "FT-EAP-SHA384",
|
|
"FILS-SHA256", "FILS-SHA384",
|
|
- "IEEE8021X", "WPA-NONE", "SAE",
|
|
+ "IEEE8021X", "WPA-NONE", "SAE", "FT-SAE",
|
|
"NONE", NULL };
|
|
const char * auth_alg_allowed[] = { "OPEN", "SHARED", "LEAP", NULL };
|
|
const char * eap_allowed[] = { "LEAP", "MD5", "TLS", "PEAP", "TTLS", "SIM",
|