diff options
| author | Jesus Fernandez Manzano | 2024-01-22 12:52:18 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-07-08 20:27:11 +0000 |
| commit | 6681c0285dc15e72de1329ec356cc4e2ab872556 (patch) | |
| tree | c59b0292efc6fcdd9e164aa258c77e4e24044799 | |
| parent | 38cea0bea17941b7a392fcdbef4faec2d146a398 (diff) | |
| download | openwrt-6681c0285dc15e72de1329ec356cc4e2ab872556.tar.gz | |
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>
(cherry picked from commit e2f6bfb833a1ba099e1dcf0e569e4ef11c31c391)
Fixes: https://github.com/openwrt/luci/issues/6930
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Link: https://github.com/openwrt/openwrt/pull/15899
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/network/services/hostapd/files/hostapd.sh | 2 |
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 2fcc46248d..03f34f8b21 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -858,7 +858,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 ;; *) |