diff options
author | Felix Fietkau <nbd@nbd.name> | 2022-08-30 10:57:26 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2022-08-30 10:58:20 +0200 |
commit | 2984a0420649733662ff95b0aff720b8c2c19f8a (patch) | |
tree | d9fe1367d02afde5f1ac1d126d482e7e9f652344 /package/network | |
parent | c6d6306827e9296faad26981996825ce3e90259d (diff) | |
download | upstream-2984a0420649733662ff95b0aff720b8c2c19f8a.tar.gz upstream-2984a0420649733662ff95b0aff720b8c2c19f8a.tar.bz2 upstream-2984a0420649733662ff95b0aff720b8c2c19f8a.zip |
mac80211: disable ft-over-ds by default
Testing has shown it to be very unreliable in variety of configurations.
It is not mandatory, so let's disable it by default until we have a better
solution.
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package/network')
-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 00de1e07ec..e3b4b1df91 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -889,7 +889,7 @@ hostapd_set_bss_options() { json_get_vars mobility_domain ft_psk_generate_local ft_over_ds reassociation_deadline set_default mobility_domain "$(echo "$ssid" | md5sum | head -c 4)" - set_default ft_over_ds 1 + set_default ft_over_ds 0 set_default reassociation_deadline 1000 case "$auth_type" in |