Eine Aufzeichnung darüber, wann ich Probleme hatte, eine Verbindung zu einem 5-GHz-Netzwerk herzustellen, obwohl ich mit Raspberry Pi 4 eine Verbindung zu einem 2,4-GHz-Netzwerk herstellen konnte.
Wenn Sie nur die SSID und die PSK in wpa_supplicant.conf
schreiben, können Sie keine Verbindung herstellen, und das Fehlerprotokoll sieht wie folgt aus.
Successfully initialized wpa_supplicant
wlan0: Trying to associate with SSID 'Buffalo-A-1234'
wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:24:a5:**:**:** status_code=16
wlan0: Trying to associate with SSID 'Buffalo-A-1234'
wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:24:a5:**:**:** status_code=16
wlan0: Trying to associate with SSID 'Buffalo-A-1234'
wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:24:a5:**:**:** status_code=16
wlan0: Trying to associate with SSID 'Buffalo-A-1234'
wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:24:a5:**:**:** status_code=16
Ich habe "wpa_supplicant.conf" wie folgt geschrieben und konnte eine Verbindung herstellen.
wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=JP
network={
ssid="Buffalo-A-1234"
key_mgmt=WPA-PSK WPA-PSK-SHA256
psk="********"
pairwise=CCMP
group=CCMP
proto=WPA2
ieee80211w=1
}
Es scheint, dass der Grund, warum es schwierig war, eine Verbindung herzustellen, darin bestand, dass die Verschlüsselung des drahtlosen AP, der das 5-GHz-Netzwerk bereitstellt, "WPA2-PSK / WPA3-SAE Mixed" war, und es scheint, dass "key_mgmt = WPA-PSK-SHA256" wesentlich war. (Referenz: wpa \ _ Supplicant \ -ArchWiki).
Recommended Posts