Skip to content

Instantly share code, notes, and snippets.

@oxavelar
Last active May 17, 2026 13:54
Show Gist options
  • Select an option

  • Save oxavelar/ff7b594dd7a44a7d2e07300fe0bdaa67 to your computer and use it in GitHub Desktop.

Select an option

Save oxavelar/ff7b594dd7a44a7d2e07300fe0bdaa67 to your computer and use it in GitHub Desktop.
OpenWRT DAWN Roam Controller Settings
uci set dawn.@network[0].broadcast_ip="$(ip addr | awk '/inet .*br-lan/ {print $4; exit}')"
uci set dawn.@times[0].update_client='5'
uci set dawn.@times[0].remove_client='40'
uci set dawn.@times[0].remove_probe='20'
uci set dawn.@times[0].update_beacon_reports='10'
uci set dawn.global.kicking='3'
uci set dawn.global.rrm_mode='pat'
uci set dawn.global.kicking_threshold='20'
uci set dawn.global.min_number_to_kick='2'
uci set dawn.global.bandwidth_threshold='-1'
uci set dawn.global.set_hostapd_nr='2'
uci set dawn.global.duration='100'
uci set dawn.global.min_probe_count='2'
uci set dawn.global.eval_probe_req='1'
uci set dawn.global.eval_assoc_req='1'
uci set dawn.global.eval_auth_req='0'
uci set dawn.802_11a.initial_score='180'
uci set dawn.802_11a.rssi_weight='1'
uci set dawn.802_11a.rssi_center='-60'
uci set dawn.802_11a.rssi_val='-70'
uci set dawn.802_11a.low_rssi_val='-85'
uci set dawn.802_11a.rssi='20'
uci set dawn.802_11a.low_rssi='-40'
uci set dawn.802_11a.chan_util='-20'
uci set dawn.802_11a.max_chan_util='-40'
uci set dawn.802_11a.chan_util_val='180'
uci set dawn.802_11a.max_chan_util_val='240'
uci set dawn.802_11g.initial_score='100'
uci set dawn.802_11g.rssi_weight='1'
uci set dawn.802_11g.rssi_center='-60'
uci set dawn.802_11g.rssi_val='-70'
uci set dawn.802_11g.low_rssi_val='-85'
uci set dawn.802_11g.rssi='20'
uci set dawn.802_11g.low_rssi='-10'
uci set dawn.802_11g.chan_util='-20'
uci set dawn.802_11g.max_chan_util='-60'
uci set dawn.802_11g.chan_util_val='120'
uci set dawn.802_11g.max_chan_util_val='220'
uci set dawn.@local[0].loglevel='0'
uci commit && /etc/init.d/dawn restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment