diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-07-15 08:16:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-07-15 08:16:22 +0000 |
commit | e23c3bb3397447c04719fd98f0df77ed358a3daa (patch) | |
tree | c1650d2d3e9e1d626d13cdc2346ea9242fbd5e83 /package/network/services/hostapd/files/netifd.sh | |
parent | f08895d0e9771abf403325170cb5877f097c261b (diff) | |
download | mtk-20170518-e23c3bb3397447c04719fd98f0df77ed358a3daa.zip mtk-20170518-e23c3bb3397447c04719fd98f0df77ed358a3daa.tar.gz mtk-20170518-e23c3bb3397447c04719fd98f0df77ed358a3daa.tar.bz2 |
wpa-supplicant: add 802.11r client support
Add 802.11r client support to wpa_supplicant. It's only enabled in
wpa_supplicant-full. hostapd gained 802.11r support in commit r45051.
Tested on a TP-Link TL-WR710N sta psk client with two 802.11r enabled
openwrt accesspoints (TP-Link TL-WDR3600).
Signed-off-by: Stefan Hellermann <stefan@the2masters.de>
SVN-Revision: 46377
Diffstat (limited to 'package/network/services/hostapd/files/netifd.sh')
-rw-r--r-- | package/network/services/hostapd/files/netifd.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/network/services/hostapd/files/netifd.sh b/package/network/services/hostapd/files/netifd.sh index 23d2e7e..a3ffd93 100644 --- a/package/network/services/hostapd/files/netifd.sh +++ b/package/network/services/hostapd/files/netifd.sh @@ -538,7 +538,9 @@ wpa_supplicant_add_network() { json_get_vars \ ssid bssid key \ basic_rate mcast_rate \ - ieee80211w + ieee80211w ieee80211r + + set_default ieee80211r 0 local key_mgmt='NONE' local enc_str= @@ -549,6 +551,8 @@ wpa_supplicant_add_network() { local scan_ssid="scan_ssid=1" local freq + [ "$ieee80211r" -gt 0 ] && wpa_key_mgmt="FT-PSK $wpa_key_mgmt" + [[ "$_w_mode" = "adhoc" ]] && { append network_data "mode=1" "$N$T" [ -n "$channel" ] && { @@ -594,6 +598,7 @@ wpa_supplicant_add_network() { ;; eap) key_mgmt='WPA-EAP' + [ "$ieee80211r" -gt 0 ] && key_mgmt="FT-EAP $key_mgmt" json_get_vars eap_type identity ca_cert [ -n "$ca_cert" ] && append network_data "ca_cert=\"$ca_cert\"" "$N$T" |