Ich hatte viele Probleme mit der Konfiguration eines WLAN-Sticks im Himbeer-Pi 2
uname -a:
Linux raspberrypi 3.18.7-v7+ #755 SMP PREEMPT Thu Feb 12 17:20:48 GMT 2015 armv7l GNU/Linux
In dmesg finden wir
[ 3.509177] usb 1-1.4: new high-speed USB device number 4 using dwc_otg
[ 3.630499] usb 1-1.4: New USB device found, idVendor=0846, idProduct=9043
[ 3.639452] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.649011] usb 1-1.4: Product: WNA1000Mv2
[ 3.655215] usb 1-1.4: Manufacturer: Realtek
[ 3.661455] usb 1-1.4: SerialNumber: 00e04c000001
und ich habe den Treiber ausgeführt (lsmod)
Module Size Used by
8192cu 528429 0
und der usb wird erkannt (lsusb)
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp.
Bus 001 Device 004: ID 0846:9043 NetGear, Inc.
Meine Schnittstellen und wpa_supplicant.conf-Dateien sehen so aus
cat / etc / network / interfaces:
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
auto wlan0
cat /etc/wpa_supplicant/wpa_supplicant.conf
ap_scan=0
ctrl_interface=DIR=/var/run/wpa_supplicant
GROUP=netdev
update_config=1
network={
ssid="o2-WLAN45"
psk="************"
scan_ssid=1
#Protocal type can be: RSN(for WP2) and WPA(for WPA1)
proto=RSN
key_mgmt=WPA-PSK
#Pairwise can be CMMP or TKIP(for WPA2 or WPA1)
pairwise=CCMP
#Authorization option should be OPEN for both WPA1/WPA2 (in less commonly used are SHARED and LEAP)
auth_alg=OPEN
}
Das Seltsame ist, dass wlan0 nicht einmal in iwconfig angezeigt wird:
lo no wireless extensions.
eth0 no wireless extensions.
Ich habe hier bereits ähnliche Einträge gelesen, aber entweder haben sie nicht funktioniert oder sie haben sich nicht auf mein Problem bezogen. Der Fehler, den ich durch ifup bekomme, ist also
sudo ifup wlan0:
wpa_supplicant: /sbin/wpa_supplicant daemon failed to start
run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return code 1
Failed to connect to wpa_supplicant - wpa_ctrl_open: No such file or directory
wpa_supplicant: /sbin/wpa_cli daemon failed to start
run-parts: /etc/network/if-up.d/wpasupplicant exited with return code 1
Über die GUI wird kein Adapter gefunden und der Status lautet wie folgt:
Ich hoffe, jemand kann mir helfen, weil ich viel zu viel Zeit damit verbracht habe ...
interfaces
Datei ist /etc/network/interfaces
nicht /etc/networks/interfaces
.
pairwise=CMMP
. Es gibt keine CMMP
Paarung CCMP
. Vielleicht ist es das, was wpa_supplicant
Absturz macht ?
wlan0
vorhanden, ip link set wlan0 up
versuchen Sie, was ich hier vorgeschlagen habe, um festzustellen, ob Sie zumindest manuell eine Netzwerkverbindung herstellen können (was sich in vielen Fällen als einfacher herausstellt).