From bac3c5ba026f3d3d38cc6c4240ca899bb6570768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 6 Nov 2023 01:39:14 +0100 Subject: [PATCH] Disable assoc steering, initial delay, add comment, cleanup old comment People should not notice any delay when initially connecting and their device hopefully choose an AP with good connection --- nix/pkgs/openwrt/uci-config.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nix/pkgs/openwrt/uci-config.nix b/nix/pkgs/openwrt/uci-config.nix index 667aeeb..f6e9592 100644 --- a/nix/pkgs/openwrt/uci-config.nix +++ b/nix/pkgs/openwrt/uci-config.nix @@ -332,6 +332,7 @@ in uci set wireless.@wifi-iface[-1].mobility_domain=${pad 4 "0" (lib.toHexString (49920 + netConfig.vlan))} # https://github.com/openwrt/openwrt/issues/7907 + # https://github.com/openwrt/openwrt/commit/2984a0420649733662ff95b0aff720b8c2c19f8a uci set wireless.@wifi-iface[-1].ft_over_ds=0 # as recommend in 7907 and seems to fairly often trigger while testing uci set wireless.@wifi-iface[-1].reassociation_deadline=20000 @@ -353,14 +354,11 @@ in '') (builtins.attrNames hostConfig.wifi))} uci set usteer.@usteer[0].network=mgmt - uci set usteer.@usteer[0].assoc_steering=1 - uci set usteer.@usteer[0].initial_connect_delay=200 uci set usteer.@usteer[0].load_kick_enabled=1 uci set usteer.@usteer[0].load_kick_threshold=67 uci set usteer.@usteer[0].signal_diff_threshold=15 uci set usteer.@usteer[0].load_balancing_threshold=8 uci set usteer.@usteer[0].band_steering_threshold=16 - # uci add_list usteer.@usteer[0].event_log_types probe_req_accept probe_req_deny auth_req_accept auth_req_deny assoc_req_accept assoc_req_deny load_kick_trigger load_kick_reset load_kick_min_clients load_kick_no_client load_kick_client signal_kick uci commit