Die Verbindung zu iphone-hotspot auf raspberry pi

Derzeit kann ich eine Verbindung vom raspberry (raspbian) auf meinem home-WLAN, aber wenn ich versuche zu verbinden mit iphone (4s) hotspot kann ich nicht. Iphone ist WPA2 Personal, während mein Heim-Netzwerk ist WPA/WPA2 Personal. Ich vermute, es ist etwas falsch mit meiner config aber ich kann nicht wirklich was finden. Hier ist der relevante Teil in /etc/wpa_supplicant/wpa_supplicant.conf.

network={
    ssid="iPhone"
    psk="pass"
    proto=RSN
    key_mgmt=WPA-PSK
    pairwise=CCMP
    auth_alg=OPEN
 }

Referenz, hier ist die config (Arbeits -) für mein home-Netzwerk (in der gleichen Datei):

network={
    ssid="wifi name"
    psk="pass"
    # Protocol type can be: RSN (for WP2) and WPA (for WPA1)
    proto=WPA
    # Key management type can be: WPA-PSK or WPA-EAP (Pre-Shared or Enterprise)
    key_mgmt=WPA-PSK
    # Pairwise can be CCMP or TKIP (for WPA2 or WPA1)
    pairwise=TKIP
    #Authorization option should be OPEN for both WPA1/WPA2 (in less commonly used are SHARED and LEAP)
    auth_alg=OPEN
}

InformationsquelleAutor Sofia | 2014-06-13

Schreibe einen Kommentar