diff options
| author | Felix Fietkau | 2023-08-31 09:16:04 +0000 |
|---|---|---|
| committer | Felix Fietkau | 2023-09-18 14:52:25 +0000 |
| commit | 98d0ee9dbf7a578093b5e97363e5a07dd28ea99a (patch) | |
| tree | af120af1e3a6c9f136bce2122709f83a0fb852f8 | |
| parent | a701e6e1c28fcca0a73ccc0b05e3b4418a9b1b9d (diff) | |
| download | openwrt-98d0ee9dbf7a578093b5e97363e5a07dd28ea99a.tar.gz | |
hostapd: fix FILS key mgmt type for WPA3 Enterprise 192 bit
Use the SHA384 variant to account for longer keys with more security
Signed-off-by: Felix Fietkau <nbd@nbd.name>
(cherry picked from commit f0d1349b52983400e7526f3ab57dc6a0f2cc771a)
| -rw-r--r-- | package/network/services/hostapd/files/hostapd.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index c6ae6fb98b..36aa6273b6 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -77,6 +77,10 @@ hostapd_append_wpa_key_mgmt() { [ "$fils" -gt 0 ] && { case "$auth_type" in + eap-192) + append wpa_key_mgmt FILS-SHA384 + [ "${ieee80211r:-0}" -gt 0 ] && append wpa_key_mgmt FT-FILS-SHA384 + ;; eap*) append wpa_key_mgmt FILS-SHA256 [ "${ieee80211r:-0}" -gt 0 ] && append wpa_key_mgmt FT-FILS-SHA256 |