No connection to a WPA3-SAE / WPA2-PSK WiFi network #1851
Replies: 4 comments 1 reply
-
Do you really need WPA3 ? - If not just reconfigure the AP to use WPA2-PSK only. The limitation seems to be within aarch64 and not necessarily an issue with rAudio. |
Beta Was this translation helpful? Give feedback.
-
I found a forum article here https://bbs.archlinux.org/viewtopic.php?id=292059 which may give you a way forward. I haven't confimed it myself as I haven't enabled WPA3 on my setup. Good Luck. |
Beta Was this translation helpful? Give feedback.
-
Thx. Mark. ssid="network SSID" But i have to little knowledge to go on. |
Beta Was this translation helpful? Give feedback.
-
You need to modify /usr/lib/netctl/wpa - look for the section that looks like this: wpa)
echo "key_mgmt=WPA-PSK SAE"
echo "ieee80211w=1"
if [[ "${#Key}" -eq 64 && $Key == +([[:xdigit:]]) ]]; then
echo "psk=$Key"
else
echo "psk=$(wpa_quote "$Key")"
fi
(was around line 230 onwards in mine) and edit the two wpa)
echo "key_mgmt=WPA-PSK-SHA256 SAE"
echo "ieee80211w=2"
if [[ "${#Key}" -eq 64 && $Key == +([[:xdigit:]]) ]]; then
echo "psk=$Key"
else
echo "psk=$(wpa_quote "$Key")"
fi
The
As I have already mentioned, I haven't done this on any of my systems as I am happy to use WPA2 for the time being. Backup as you go and you should be able to recover if it all turns out messy. Good luck! |
Beta Was this translation helpful? Give feedback.
-
Does nog connect tot a Odido Zyxel T56 modem.
Beta Was this translation helpful? Give feedback.
All reactions