Ich habe mir aus didaktischen Gründen ein Debian Wheezy ohne GUI installiert. Das kann ja gar nicht gutgehen, denken sich da wohl die anderen Forumsteilnehmer, und siehe da, paedubucher scheitert beim Einrichten vom WLAN mit wpa_supplicant. Meine Konfiguration:
/etc/wpa_supplicant/wpa_supplicant.conf (mithilfe von wpa_passphrase erzeugt)
Code: Alles auswählen
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="bucher"
scan_ssid=1
key_mgmt=WPA-PSK
#psk="*******************"
psk=*********************************************************
}
Code: Alles auswählen
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
pre-up wpa_supplicant -B -D wext -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf -dd -f /home/paedubucher/wpa_supplicant.out
post-down killall -q wpa_supplicant
Hier vielleicht noch die Ausgabe von ifconfig:
Code: Alles auswählen
eth0 Link encap:Ethernet Hardware Adresse 60:eb:69:e3:c6:52
UP BROADCAST MULTICAST MTU:1500 Metrik:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:40 Basisadresse:0x2000
lo Link encap:Lokale Schleife
inet Adresse:127.0.0.1 Maske:255.0.0.0
inet6-Adresse: ::1/128 Gültigkeitsbereich:Maschine
UP LOOPBACK RUNNING MTU:16436 Metrik:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
wlan0 Link encap:Ethernet Hardware Adresse 8c:a9:82:3e:93:0a
UP BROADCAST MULTICAST MTU:1500 Metrik:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Vielen Dank für die Hilfe,
paedubucher