From: Nick Lowe Date: Wed, 9 Dec 2020 16:05:14 +0000 (+0000) Subject: luci-mod-network Add description: Hidden SSID, WMM X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=9060c129155e018567716d3f9cfe75b0accf6dc5;p=project%2Fluci.git luci-mod-network Add description: Hidden SSID, WMM luci-mod-network Describe issues: Hidden SSID, WMM The performance and reliability implications of hiding SSIDs or disabling WMM are not commonly known and these settings often end up being misconfigured to harmful effect. To seek to mitigate this, add descriptions explaining that: Where the ESSID is hidden, clients may fail to roam and airtime efficiency may be significantly reduced. Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to 802.11a/802.11g rates. Signed-off-by: Nick Lowe --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index 14647f8342..b46cf0d079 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -1068,11 +1068,11 @@ return view.extend({ return mode; }; - o = ss.taboption('general', form.Flag, 'hidden', _('Hide ESSID')); + o = ss.taboption('general', form.Flag, 'hidden', _('Hide ESSID'), _('Where the ESSID is hidden, clients may fail to roam and airtime efficiency may be significantly reduced.')); o.depends('mode', 'ap'); o.depends('mode', 'ap-wds'); - o = ss.taboption('general', form.Flag, 'wmm', _('WMM Mode')); + o = ss.taboption('general', form.Flag, 'wmm', _('WMM Mode'), _('Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to 802.11a/802.11g rates.')); o.depends('mode', 'ap'); o.depends('mode', 'ap-wds'); o.default = o.enabled;