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