Warum kann das WPA2-PSK-WLAN nicht verbunden werden?

1

Der ssid-Name lautet MyCharterWiFi99-2G, Sicherheitsoptionen: Keine, WPA2-PSK [AES], Passphrase: happygiant682, mein Betriebssystem ist debian8.

cat  /etc/wpa_supplicant.conf
network={
    ssid="MyCharterWiFi99-2G"
    psk="happygiant682"
}

#wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf
Successfully initialized wpa_supplicant
# iw wlan0 link
Not connected.

Keine Fehlerinformationen beim Ausführen des Befehls wpa_supplicant. Wpa_supplicant wurde erfolgreich initialisiert. Warum keine Verbindung hergestellt?
Einige Fehlerinformationen treten auf, wenn wpa_supplicant im Debug-Modus ausgeführt wird.

wpa_supplicant  -D nl80211  -i wlan0 -c /etc/wpa_supplicant.conf
Successfully initialized wpa_supplicant
wlan0: SME: Trying to authenticate with 04:a1:51:ba:6a:99 (SSID='MyCharterWiFi99-2G' freq=2417 MHz)
wlan0: Trying to associate with 04:a1:51:ba:6a:99 (SSID='MyCharterWiFi99-2G' freq=2417 MHz)
wlan0: Associated with 04:a1:51:ba:6a:99
wlan0: CTRL-EVENT-DISCONNECTED bssid=04:a1:51:ba:6a:99 reason=3 locally_generated=1
wlan0: SME: Trying to authenticate with 04:a1:51:ba:6a:99 (SSID='MyCharterWiFi99-2G' freq=2417 MHz)
wlan0: Trying to associate with 04:a1:51:ba:6a:99 (SSID='MyCharterWiFi99-2G' freq=2417 MHz)
wlan0: Associated with 04:a1:51:ba:6a:99
wlan0: CTRL-EVENT-DISCONNECTED bssid=04:a1:51:ba:6a:99 reason=3 locally_generated=1
wlan0: SME: Trying to authenticate with 04:a1:51:ba:6a:99 (SSID='MyCharterWiFi99-2G' freq=2417 MHz)
wlan0: Trying to associate with 04:a1:51:ba:6a:99 (SSID='MyCharterWiFi99-2G' freq=2417 MHz)
wlan0: Associated with 04:a1:51:ba:6a:99
wlan0: CTRL-EVENT-DISCONNECTED bssid=04:a1:51:ba:6a:99 reason=3 locally_generated=1
wlan0: SME: Trying to authenticate with 04:a1:51:ba:6a:99 (SSID='MyCharterWiFi99-2G' freq=2417 MHz)
wlan0: Trying to associate with 04:a1:51:ba:6a:99 (SSID='MyCharterWiFi99-2G' freq=2417 MHz)
wlan0: Associated with 04:a1:51:ba:6a:99
wlan0: CTRL-EVENT-DISCONNECTED bssid=04:a1:51:ba:6a:99 reason=3 locally_generated=1
wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="MyCharterWiFi99-2G" auth_failures=1 duration=10 reason=CONN_FAILED
it_is_a_literature
quelle
Haben Sie versucht, wpa_supplicant im Debug-Modus ohne das auszuführen -B? Vielleicht sogar mit -d?
Grawity

Antworten:

1

Eingebettet in die Form von / etc / network / interfaces

auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet manual
wpa-driver nl80211
wpa-roam /etc/wpa_supplicant.conf
iface default inet dhcp

Neustart, jetzt surfen.

it_is_a_literature
quelle
Ich weiß nicht warum es funktioniert, aber es funktioniert! :) Das einzige, was ich auch geändert habe, war, den pskKlartext anstelle des Hashes einzufügen.
Tomasz Gandor