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>
This commit is contained in:
Jo-Philipp Wich 2019-09-20 11:30:09 +02:00
parent d10575dfee
commit ccd1523610

View file

@ -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'}],
'': []
};