0

I configured as below in wpa_supplicant2.conf:

ctrl_interface=/var/run/wpa_supplicant 
ctrl_interface_group=0
sae_pwe=2
sae_groups=19 20 21 24 25
update_config=1
network={
    ssid=req_SSID
    proto=RSN
    key_mgmt=SAE 
    sae_pwe=2 
    pairwise=CCMP
    group=CCMP 
    ieee80211w=2 
    psk=PSD 
}

but while running this am getting following error

Successfully initialized wpa_supplicant
Line 8: invalid key_mgmt 'SAE'
Line 8: no key_mgmt values configured.
Line 8: failed to parse key_mgmt 'SAE'.
Line 14: failed to parse network block.
Failed to read or parse configuration '/etc/wpa_supplicant_wpa2.conf'.
: CTRL-EVENT-DSCP-POLICY clear_all
2
  • 1
    What wpa_supplicant version are you using, and are you sure it was compiled with SAE support enabled? Commented Sep 16, 2022 at 8:08
  • wpa_supplicant v2.10
    – yakanna
    Commented Nov 23, 2022 at 11:37

1 Answer 1

0

When you compile wpa_supplicant-2.10, make sure to set CONFIG_SAE=y:

wget https://w1.fi/releases/wpa_supplicant-2.10.tar.gz
tar -xvf wpa_supplicant-2.10.tar.gz
cd wpa_supplicant-2.10

cat > wpa_supplicant/.config << "EOF"
CONFIG_SAE=y
EOF

cd wpa_supplicant && make BINDIR=/usr/sbin LIBDIR=/usr/lib

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .