diff options
| author | Stijn Tintel | 2022-06-27 19:48:59 +0000 |
|---|---|---|
| committer | Stijn Tintel | 2022-06-28 00:27:20 +0000 |
| commit | 87de1ab6553cb9a4bdbae39621962d7f487d1788 (patch) | |
| tree | 1322808f06e0dab214c46190c009f002fa984a80 | |
| parent | 73c424b9e4d7251aa23f110cce1ea70e06c1a51f (diff) | |
| download | usteer-87de1ab6553cb9a4bdbae39621962d7f487d1788.tar.gz | |
main: disable probe steering by default
As probe steering only makes sense in specific deployments, it should be
disabled by default.
Update the example config to reflect this change.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Acked-by: David Bauer <mail@david-bauer.net>
| -rw-r--r-- | main.c | 2 | ||||
| -rw-r--r-- | openwrt/usteer/files/etc/config/usteer | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -104,7 +104,7 @@ void usteer_init_defaults(void) config.link_measurement_interval = 30000; - config.probe_steering = 1; + config.probe_steering = 0; config.roam_kick_delay = 10000; config.roam_process_timeout = 5 * 1000; diff --git a/openwrt/usteer/files/etc/config/usteer b/openwrt/usteer/files/etc/config/usteer index 9c28f3d..f53c338 100644 --- a/openwrt/usteer/files/etc/config/usteer +++ b/openwrt/usteer/files/etc/config/usteer @@ -57,7 +57,7 @@ config usteer #option assoc_steering 0 # Allow ignoring probe requests for steering purposes (0/1) - #option probe_steering 1 + #option probe_steering 0 # Minimum signal-to-noise ratio or signal level (dBm) to allow connections #option min_connect_snr 0 |