This ends up breaking wifi-station and wifi-vlan as it depends on
config.auth_type being either psk or psk-sae. When set to psk2,
this would be unset causing that feature to not work.
See discussion in https://github.com/openwrt/openwrt/issues/20705#issuecomment-
3568446006
Signed-off-by: Rany Hany <rany_hany@riseup.net>
Link: https://github.com/openwrt/openwrt/pull/20914
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
break;
case 'psk':
+ case 'psk2':
case 'psk-mixed':
- config.auth_type = "psk";
+ config.auth_type = 'psk';
wpa3_pairwise = null;
break;
wpa3_pairwise = null;
break;
- case 'psk2':
- wpa3_pairwise = null;
- break;
-
default:
config.wpa_pairwise = null;
wpa3_pairwise = null;