From f4d1990cc2210040d5f562b98a5172118e314322 Mon Sep 17 00:00:00 2001 From: Eneas U de Queiroz Date: Sun, 11 Feb 2024 18:37:42 -0300 Subject: [PATCH] wifi-scripts: configure FILS with psk/sae Signed-off-by: Eneas U de Queiroz --- package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh b/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh index 763702e76b1a44..afe921e74bd4e0 100644 --- a/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh +++ b/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh @@ -81,7 +81,7 @@ hostapd_append_wpa_key_mgmt() { append wpa_key_mgmt FILS-SHA384 [ "${ieee80211r:-0}" -gt 0 ] && append wpa_key_mgmt FT-FILS-SHA384 ;; - eap*) + eap*|psk*|sae*) append wpa_key_mgmt FILS-SHA256 [ "${ieee80211r:-0}" -gt 0 ] && append wpa_key_mgmt FT-FILS-SHA256 ;;