diff options
author | Jesus Fernandez Manzano <jesus.manzano@galgus.net> | 2021-07-20 12:13:49 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-08-08 19:50:46 +0200 |
commit | af83e3ce0ff40dcecbe913676343bf86846294f7 (patch) | |
tree | 6191af8ec65070e1a70058e86cf5305ed248d0e8 /package | |
parent | 891c8676a1602d31adf3ab9f913664ae0d3b4029 (diff) | |
download | upstream-af83e3ce0ff40dcecbe913676343bf86846294f7.tar.gz upstream-af83e3ce0ff40dcecbe913676343bf86846294f7.tar.bz2 upstream-af83e3ce0ff40dcecbe913676343bf86846294f7.zip |
hostapd: respect fixed channel BW in HE20 mode
When using htmode 'HE20' with a radio mode that uses wpa-supplicant
(like mesh or sta), it will default to 40 MHz bw if disable_ht40 is not
set. This commit fixes this behaviour.
Signed-off-by: Jesus Fernandez Manzano <jesus.manzano@galgus.net>
Diffstat (limited to 'package')
-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 d65565d801..821905b05e 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -1166,7 +1166,7 @@ wpa_supplicant_set_fixed_freq() { append network_data "frequency=$freq" "$N$T" case "$htmode" in NOHT) append network_data "disable_ht=1" "$N$T";; - HT20|VHT20) append network_data "disable_ht40=1" "$N$T";; + HE20|HT20|VHT20) append network_data "disable_ht40=1" "$N$T";; HT40*|VHT40*|VHT80*|VHT160*) append network_data "ht40=1" "$N$T";; esac case "$htmode" in |