summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-network
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-09-20 11:30:09 +0200
committerJo-Philipp Wich <jo@mein.io>2019-09-20 11:30:09 +0200
commitccd152361072c9e16dfe4a1fac2d9a5c8af092ba (patch)
tree07a745338de64b4627e1c1e86739d3db19dafd10 /modules/luci-mod-network
parentd10575dfee1a09c41fe60ece2f6fe78e41d1946d (diff)
luci-mod-network: default to ieee80211w=2 for OWE
Ref: https://git.openwrt.org/?p=openwrt/openwrt.git;a=blob;f=package/network/services/hostapd/files/hostapd.sh;h=46acbefeeeb771de879dd9926ad170042dff2473;hb=HEAD#l327 Fixes: 63f28fd06 luci-mod-network: default to ieee80211w=1 for OWE Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-mod-network')
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js4
1 files changed, 2 insertions, 2 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 cc71b9050..595cd1e22 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
@@ -1544,8 +1544,8 @@ return L.view.extend({
o.depends({ mode: 'sta-wds', encryption: 'sae-mixed' });
o.depends({ mode: 'sta-wds', encryption: 'owe' });
o.defaults = {
- '2': [{ encryption: 'sae' }],
- '1': [{ encryption: 'sae-mixed'}, { encryption: 'owe' }],
+ '2': [{ encryption: 'sae' }, { encryption: 'owe' }],
+ '1': [{ encryption: 'sae-mixed'}],
'': []
};