diff options
| author | Jesus Fernandez Manzano | 2020-03-27 11:19:05 +0000 |
|---|---|---|
| committer | David Bauer | 2020-03-29 23:46:50 +0000 |
| commit | 86440659b5694b82300854778ed3ac20f86c63f1 (patch) | |
| tree | 807d114459ca7a135144cb0738c48337dbc55b3f | |
| parent | af35205626ecea62c75b1a94a6f835aed6c91089 (diff) | |
| download | openwrt-86440659b5694b82300854778ed3ac20f86c63f1.tar.gz | |
hostapd: Add 802.11r support for WPA3-Enterprise
Signed-off-by: Jesus Fernandez Manzano <jesus.manzano@galgus.net>
| -rw-r--r-- | package/network/services/hostapd/files/hostapd.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index 189760157e..542056fe9a 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -47,6 +47,7 @@ hostapd_append_wpa_key_mgmt() { ;; eap192) append wpa_key_mgmt "WPA-EAP-SUITE-B-192" + [ "${ieee80211r:-0}" -gt 0 ] && append wpa_key_mgmt "FT-EAP" ;; eap-eap192) append wpa_key_mgmt "WPA-EAP-SUITE-B-192" |