aboutsummaryrefslogtreecommitdiff
path: root/package/network
diff options
context:
space:
mode:
authorJesus Fernandez Manzano <jesus.manzano@galgus.ai>2024-01-22 13:52:18 +0100
committerFelix Fietkau <nbd@nbd.name>2024-01-25 20:02:40 +0100
commite2f6bfb833a1ba099e1dcf0e569e4ef11c31c391 (patch)
treeec7e5d73f0ccb104e5e7f9a43841a9baf4187a6a /package/network
parentcdc4c551755115e0e1047a0c90a658e6238e96ee (diff)
hostapd: fix 11r defaults when using SAE
When using WPA3-SAE or WPA2/WPA3 Personal Mixed, we can not use ft_psk_generate_local because it will break FT for SAE. Instead use the r0kh and r1kh configuration approach. Signed-off-by: Jesus Fernandez Manzano <jesus.manzano@galgus.ai>
Diffstat (limited to 'package/network')
-rw-r--r--package/network/services/hostapd/files/hostapd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh
index 058d0f404b..ca95fcf70f 100644
--- a/package/network/services/hostapd/files/hostapd.sh
+++ b/package/network/services/hostapd/files/hostapd.sh
@@ -920,7 +920,7 @@ hostapd_set_bss_options() {
set_default reassociation_deadline 1000
case "$auth_type" in
- psk|sae|psk-sae)
+ psk)
set_default ft_psk_generate_local 1
;;
*)