[arch-projects] [netctl][PATCH] Support WPA3-Personal

Jouke Witteveen j.witteveen at gmail.com
Sat Feb 26 17:36:19 UTC 2022


By not introducing a specific security setting for WPA3, we inherrit the
WPA2 key restrictions. For now, that is better than nothing.
---
 src/lib/wpa | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/lib/wpa b/src/lib/wpa
index d081540..3605659 100644
--- a/src/lib/wpa
+++ b/src/lib/wpa
@@ -231,7 +231,8 @@ wpa_make_config_block() {
         fi
       ;;
       wpa)
-        echo "proto=RSN WPA"
+        echo "key_mgmt=WPA-PSK SAE"
+        echo "ieee80211w=1"
         if [[ "${#Key}" -eq 64 && $Key == +([[:xdigit:]]) ]]; then
             echo "psk=$Key"
         else
-- 
2.35.1



More information about the arch-projects mailing list