Hello,
I am using Debian Bullseye IoT Image 2023-08-05. I have wpa_cli running with wpa_supplicant@wlan0.service active and wpa_supplicant.service masked and inactive.
I am able to use wpa_cli to connect with WiFi AP with security WPA2 using below settings:
network={
ssid="<SSID>"
psk="<PASSWORD>"
mesh_fwding=1
}
Able to connect with WiFi AP without security using config below:
network={
ssid="<SSID>"
key_mgmt=NONE
mesh_fwding=1
}
I couldn’t connect to SSID with WPA3 security. Used below settings:
network={
ssid="<SSID>"
key_mgmt=SAE
sae_password="<PASSWORD>"
ieee80211w=2
mesh_fwding=1
}
It failed stating:
<4>WPA: Failed to select authenticated key management type
<4>WPA: Failed to set WPA key management and encryption suites
Is this a problem due to driver or am I trying to set it up with wrong network settings in /etc/wpa_supplicant/wpa_supplicant-wlan0.conf file?