diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-08-30 20:53:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 20:53:26 +0200 |
commit | 2adba1b8d020dc973c9dd61f43a8ae4b8fbac9c7 (patch) | |
tree | f634ceccf94c83dfba4bd658c3a2914f8edbdafd /modules/luci-mod-network/htdocs/luci-static/resources | |
parent | 629eb171b7ec47c7f608962d013a4f7894fac00d (diff) | |
parent | b2101a23a9116c65c903df6c1d02db16d6da579f (diff) |
Merge pull request #5589 from systemcrash/multi_to_unicast
luci-mod-network: Expose multicast_to_unicast setting
Diffstat (limited to 'modules/luci-mod-network/htdocs/luci-static/resources')
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js | 5 |
1 files changed, 5 insertions, 0 deletions
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 2704ee474b..7570a47ef9 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 @@ -1146,6 +1146,11 @@ return view.extend({ o.depends('mode', 'ap-wds'); o.default = o.enabled; + /* https://w1.fi/cgit/hostap/commit/?id=34f7c699a6bcb5c45f82ceb6743354ad79296078 */ + /* multicast_to_unicast https://github.com/openwrt/openwrt/commit/7babb978ad9d7fc29acb1ff86afb1eb343af303a */ + o = ss.taboption('advanced', form.Flag, 'multicast_to_unicast', _('Multi To Unicast'), _('ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast to the STA MAC address. Note: This is not Directed Multicast Service (DMS) in 802.11v. Note: might break receiver STA multicast expectations.')); + o.rmempty = true; + o = ss.taboption('advanced', form.Flag, 'isolate', _('Isolate Clients'), _('Prevents client-to-client communication')); o.depends('mode', 'ap'); o.depends('mode', 'ap-wds'); |