From 6e8bb689969529922f9afeb4026fce6b80d72e39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Enrique=20Rodr=C3=ADguez=20Valencia?= Date: Tue, 12 May 2020 19:37:28 +0200 Subject: [PATCH] hostapd: Add disable_vht when using NOHT/HT* modes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit disable_vht parameter needs to be set when using wpa_supplicant NOHT/HT* modes. Signed-off-by: Enrique Rodríguez Valencia --- package/network/services/hostapd/files/hostapd.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index 637f298ad9..09de3994b8 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -772,7 +772,8 @@ wpa_supplicant_set_fixed_freq() { case "$htmode" in VHT80) append network_data "max_oper_chwidth=1" "$N$T";; VHT160) append network_data "max_oper_chwidth=2" "$N$T";; - *) append network_data "max_oper_chwidth=0" "$N$T";; + VHT20|VHT40) append network_data "max_oper_chwidth=0" "$N$T";; + *) append network_data "disable_vht=1" "$N$T";; esac } -- 2.25.1