diff options
author | Nick Hainke <vincent@systemli.org> | 2022-06-11 20:29:28 +0200 |
---|---|---|
committer | Nick Hainke <vincent@systemli.org> | 2022-06-11 20:40:55 +0200 |
commit | 0c74ab9a790c81ff57ad1d7741489bf5e1839839 (patch) | |
tree | fbb5dfed88284d76fc16bb4094de94428e74c9c9 /net/dawn/files | |
parent | 90b64f2bd29156671b0975f0d0ada51b6aaa7804 (diff) |
dawn: update to 2022-06-11
4cf9d0b treewide: code and documentation cleanup
48b12ee datastorage: Minor chnages to kicking algorithm to tidy up some handling.
7b615b6 treewide: improve beacon/probe logging
185f31b treewide: improve beacon request handling
0c2e713 datastorage/ubus: Add "soft" kicking algorithm
38f60c5 treewide: RSSI / RCPI handling updates
aba3e81 documentation: Parameter defaults and documentation
3979fdf treewide: cleanup code
e3b3753 scoring: improve scoring algorithm
33f380f treewide: cleanup code
b42193f kicking: improve kicking algorithm
16deab3 treewide: improve mutex handling
31f0a37 test: cleanup tests and add some test scripts
43ca8b8 treewide: fix bugs from Coverity Scan
8ae2a42 utils/storage: improve descriptions
9a9b4dd ubus: Simplify loops and scans in generating hearing map
c833064 treewide: rework mutex
1df5bc5 (master) network: cleanup and improve network handling
3bd349a utils: cleanup
a855087 utils/storage: cleanup
439fe95 ubus/datastorage/msghandler: cleanup
335ace2 datastorage: improve linked list
40ebf48 ubus/datastorage: cleanup
c13c285 utils: cleanup
0e4fc50 documentation: Heavily revised Markdown documentation files
Signed-off-by: Nick Hainke <vincent@systemli.org>
Diffstat (limited to 'net/dawn/files')
-rw-r--r-- | net/dawn/files/dawn.config | 135 |
1 files changed, 70 insertions, 65 deletions
diff --git a/net/dawn/files/dawn.config b/net/dawn/files/dawn.config index 3d08f749c..6e6bdeb4a 100644 --- a/net/dawn/files/dawn.config +++ b/net/dawn/files/dawn.config @@ -1,73 +1,78 @@ -config network - option broadcast_ip '10.0.0.255' - option broadcast_port '1025' - option server_ip '' - option tcp_port '1026' - option network_option '2' # 0 udp broadcast, 1 multicast, 2 tcp - option shared_key 'Niiiiiiiiiiiiick' - option iv 'Niiiiiiiiiiiiick' - option use_symm_enc '0' - option collision_domain '-1' # enter here aps which are in the same collision domain - option bandwidth '-1' # enter network bandwidth +config local + option loglevel '0' -config ordering - option sort_order 'cbfs' +config network + option broadcast_ip '10.0.0.255' + option broadcast_port '1025' + option tcp_port '1026' + option network_option '2' + option shared_key 'Niiiiiiiiiiiiick' + option iv 'Niiiiiiiiiiiiick' + option use_symm_enc '0' + option collision_domain '-1' + option bandwidth '-1' config hostapd - option hostapd_dir '/var/run/hostapd' + option hostapd_dir '/var/run/hostapd' config times - option update_client '10' - option denied_req_threshold '30' - option remove_client '15' - option remove_probe '30' - option remove_ap '460' - option update_hostapd '10' - option update_tcp_con '10' - option update_chan_util '5' - option update_beacon_reports '600' + option update_client '10' + option remove_client '15' + option remove_probe '30' + option remove_ap '460' + option update_hostapd '10' + option update_tcp_con '10' + option update_chan_util '5' + option update_beacon_reports '20' -config metric global - option rssi_weight '0' - option rssi_center '0' - option initial_score '0' - option kicking_threshold '20' - option duration '600' - option rrm_mode 'apt' - option ap_weight '0' - option ht_support '0' - option vht_support '0' - option no_ht_support '0' - option no_vht_support '0' - option rssi '0' - option low_rssi '0' - option freq '0' - option chan_util '0' - option max_chan_util '0' - option rssi_val '-60' - option low_rssi_val '-80' - option chan_util_val '0' - option max_chan_util_val '0' - option min_probe_count '0' - option bandwidth_threshold '6' - option use_station_count '0' - option max_station_diff '0' - option eval_probe_req '0' - option eval_auth_req '0' - option eval_assoc_req '0' - option kicking '0' - option deny_auth_reason '1' - option deny_assoc_reason '17' - option use_driver_recog '1' - option chan_util_avg_period '3' - option set_hostapd_nr '1' +config metric 'global' + option min_probe_count '3' + option bandwidth_threshold '6' + option use_station_count '0' + option max_station_diff '1' + option eval_probe_req '0' + option eval_auth_req '0' + option eval_assoc_req '0' + option kicking '3' + option kicking_threshold '20' + option deny_auth_reason '1' + option deny_assoc_reason '17' + option min_number_to_kick '3' + option chan_util_avg_period '3' + option set_hostapd_nr '0' + option duration '0' + option rrm_mode 'pat' -config metric 802_11a - option rssi_weight '2' - option rssi_center '-70' - option initial_score '125' +config metric '802_11g' + option initial_score '80' + option ht_support '5' + option vht_support '5' + option no_ht_support '0' + option no_vht_support '0' + option rssi '15' + option rssi_val '-60' + option low_rssi_val '-80' + option low_rssi '-15' + option chan_util '0' + option chan_util_val '140' + option max_chan_util '-15' + option max_chan_util_val '170' + option rssi_weight '0' + option rssi_center '-70' -config metric 802_11g - option rssi_weight '2' - option rssi_center '-70' - option initial_score '100' +config metric '802_11a' + option initial_score '100' + option ht_support '5' + option vht_support '5' + option no_ht_support '0' + option no_vht_support '0' + option rssi '15' + option rssi_val '-60' + option low_rssi_val '-80' + option low_rssi '-15' + option chan_util '0' + option chan_util_val '140' + option max_chan_util '-15' + option max_chan_util_val '170' + option rssi_weight '0' + option rssi_center '-70' |