How to support WPA3 Enterprise Suite b 192 by wpa-supplicant configuration?
If you configure Wi-Fi setting by wpa_supplicant, you will need to setup a configuration file such as "/etc/wpa_supplicant.conf", and then execute wpa_supplicant as below command.
wpa_supplicant -Dnl80211 -c /etc/wpa_supplicant.conf -i wlan0 -B -ddd
Here is the example of wpa_supplicant.conf to setup "WPA3 Enterprise Suite b 192" network.
ctrl_interface=/var/run/wpa_supplicant
#update_config=1
network={
ssid="Cisco_2802_WPA3_Enterprise"
proto=WPA3
key_mgmt=WPA-EAP-SUITE-B-192
ieee80211w=2
pairwise=GCMP-256
group=GCMP-256
group_mgmt= BIP-GMAC-256
eap=TLS
identity=xxxx
ca_cert="/etc/cert/ca.pem"
client_cert="/etc/cert/user.pem"
private_key="/etc/cert/user.prv"
private_key_passwd="password"
phase1=”tls_suiteb=1”
}