diff options
author | Polynomialdivision <vincent@systemli.org> | 2020-03-28 12:17:57 +0100 |
---|---|---|
committer | Polynomialdivision <vincent@systemli.org> | 2020-04-02 11:12:01 +0200 |
commit | 9707acf72fd789b917c97f93ac0bb2fede9a86f4 (patch) | |
tree | a6e022f66b6fb19be3a8d1e2b8744fe0e4a6fbea /applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua | |
parent | 0adf93de3b78fae8a19843906852abad6c7855ae (diff) |
luci-app-dawn: add luci app for dawn
Dawn is a decentralized WiFi controller.
Just install dawn and the APs will find each other via umdns. They
periodically exchange information about connected clients, wireless
statistics and other needed information. With that, the daemon load
balances clients between different APs through association control.
Luci-app-dawn is the graphical user interface.
It allows to:
- Configure dawn
- View Wireless Network Overview
- View Hearing Map
The hearing map is the list of all probe requests seen from a client
from all APs that are running the controller.
Signed-off-by: Nick Hainke <vincent@systemli.org>
Diffstat (limited to 'applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua')
-rw-r--r-- | applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua b/applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua new file mode 100644 index 000000000..ab0c170f9 --- /dev/null +++ b/applications/luci-app-dawn/luasrc/model/cbi/dawn/dawn_config.lua @@ -0,0 +1,42 @@ +m = Map("dawn", translate("Dawn Configuration"), translate("")) +s = m:section(TypedSection, "metric", "Metric", "Metric"); s.anonymous = true; +s:option(Value, "ht_support", "High Throughput Support") +s:option(Value, "no_ht_support", "No High Throughput Support") +s:option(Value, "vht_support", "Very High Throughput Support") +s:option(Value, "no_vht_support", "No Very High Throughput Support") +s:option(Value, "rssi", "RSSI") +s:option(Value, "low_rssi", "Low RSSI") +s:option(Value, "freq", "5GHz") +s:option(Value, "chan_util", "Channel Utilization") +s:option(Value, "max_chan_util", "Above Maximum Channel Utilization") + +s = m:section(TypedSection, "metric", "Threshold", "Thresholds"); s.anonymous = true; +s:option(Value, "bandwith_threshold", "Bandwidth Threshold") +s:option(Value, "rssi_val", "RSSI Threshold") +s:option(Value, "low_rssi_val", "Low RSSI Threshold") +s:option(Value, "chan_util_val", "Channel Utilization Threshold") +s:option(Value, "max_chan_util_val", "Maximaum Channel Utilization Threshold") +s:option(Value, "min_probe_count", "Minimum Probe Count") +s:option(Value, "min_number_to_kick", "Minimum Number After Kicking Client") + +s = m:section(TypedSection, "metric", "Evaluate", "What should be evaluated?"); s.anonymous = true; +s:option(Flag, "kicking", "Activate Kicking") +s:option(Flag, "eval_probe_req", "Evaluate Probe Requests") +s:option(Flag, "eval_auth_req", "Evaluate Authentication Requests") +s:option(Flag, "eval_assoc_req", "Evaluate Association Requests") +s:option(Flag, "use_station_count", "Use Station Count") + +s = m:section(TypedSection, "metric", "IEE802.11", "Reasons for denying"); s.anonymous = true; +s:option(Value, "deny_auth_reason", "Denying Authentication") +s:option(Value, "deny_assoc_reason", "Denying Association") + +s = m:section(TypedSection, "times", "Time Configuration", "Time Configs"); s.anonymous = true; +s:option(Value, "update_client", "Update Client Information Interval") +s:option(Value, "denied_req_threshold", "Checking if client is connected") +s:option(Value, "remove_client", "Remove Client Information") +s:option(Value, "remove_probe", "Remove Hearing Map Information") +s:option(Value, "update_hostapd", "Check for new Hostapd Sockets") +s:option(Value, "update_tcp_con", "Check for new Routers") +s:option(Value, "update_chan_util", "Update Channel Utilization Interval") + +return m
\ No newline at end of file |