diff options
author | Nick Lowe <nick.lowe@gmail.com> | 2020-12-04 17:47:47 +0000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2020-12-06 08:51:32 -1000 |
commit | ce5bcff304e474d604ac0e25de7b6b124f764351 (patch) | |
tree | 0dc8f9e80a6e89f34f43048db87e3fd29c694f5d /package/network/services/hostapd | |
parent | 3d8cb2300e578d50f86a758a5e8bb74ebf25afa8 (diff) | |
download | upstream-ce5bcff304e474d604ac0e25de7b6b124f764351.tar.gz upstream-ce5bcff304e474d604ac0e25de7b6b124f764351.tar.bz2 upstream-ce5bcff304e474d604ac0e25de7b6b124f764351.zip |
hostapd: Disable 802.11b data rates by default
Set legacy_rates to 0 by default to disable 802.11b data rates by default.
The time has long come where 802.11b DSSS/CCK data rates should be disabled
by default in OpenWRT. Users in need of 802.11b client support can reasonably
enable these where they are needed.
The balance of equities has significantly, and for a long time, tipped
such that dropping backwards compatibility by default with 802.11b
devices is appropriate, proportionate and justified. By doing so,
management and control traffic is moved by default to a 20
MHz wide 6 Mb/s OFDM data rate instead of a 22 MHz wide 1 Mb/s DSSS data
rate. This is significantly more airtime efficient.
Signed-off-by: Nick Lowe <nick.lowe@gmail.com>
Diffstat (limited to 'package/network/services/hostapd')
-rw-r--r-- | package/network/services/hostapd/Makefile | 2 | ||||
-rw-r--r-- | package/network/services/hostapd/files/hostapd.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile index 1e20b56200..61b2a548ef 100644 --- a/package/network/services/hostapd/Makefile +++ b/package/network/services/hostapd/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=hostapd -PKG_RELEASE:=17 +PKG_RELEASE:=18 PKG_SOURCE_URL:=http://w1.fi/hostap.git PKG_SOURCE_PROTO:=git diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index a41254d6db..41b04e6029 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -123,7 +123,7 @@ hostapd_prepare_device_config() { set_default country_ie 1 set_default spectrum_mgmt_required 0 set_default doth 1 - set_default legacy_rates 1 + set_default legacy_rates 0 set_default airtime_mode 0 set_default cell_density 0 |