ich schaffe es einfach nicht, mein WLAN mit WPA-Verschlüsselung auf Etch zum Laufen zu bringen. Ich hoffe, ihr könnt mir helfen. Installiert ist: Debian-Etch, Kernel 2.6.18-5-686, auf einem Lenovo-Notebook X60s mit eingebauter Intel-WlanKarte, (Chipsatz: ipw3945) wireless-tools, wpasupplicant, ipw3945d, ipw3945-modules-2.6.18-5-686.
Um es gleich vorwegzunehmen: die WLAN-Karte selbst läuft. Der ipw3945-Treiber ist installiert, Hardware wurde erkannt und funktioniert auch reibungslos mit einer WEP-Verschlüsselung. Aber sobald ich es mit einer WAP-Verschlüsselung versuche, komme ich nicht ins Netz. Irgendetwas muss ich falsch machen, aber was? Ich habe mir schon (fast) alles durchgelesen, was zu diesem Thema in diesem Forum und in dem Debian-Wiki zu finden ist. Aber es haut immer noch nicht hin.
Ich habe mir zunächst die Datei "/etc/wpa_supplicant/wpa_supplicant.conf" gebastelt, und bin dabei einfach nach dem Muster des "wpa_supplicant_example-readme"-Datei vorgegangen. D.h. "/etc/wpa_supplicant/wpa_supplicant.conf" sieht bei mir wie folgt aus:
Code: Alles auswählen
# WPA-PSK/TKIP
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="mein_wlan_router"
psk="45b1c953ee4bf6dc7536682bbcd72f1b0fe44b261572bdcfb8f697b6391349a1"
key_mgmt=WPA-PSK
proto=WPA
pairwise=TKIP
group=TKIP
}
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
# My primary network interface (Ethernet)
allow-hotplug eth1
iface eth1 inet dhcp
# My WLAN-Card
iface wlan0 inet dhcp
pre-up wpa_supplicant -Dipw -iwlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf -Bw
post-down killall -q wpa_supplicant
iface ppp0 inet ppp
provider ppp0
keine Fehlermeldung erhalte. Die Karte wird also offensichtlich hochgefahren.ifup wlan0
Aber wenn ich einen Ping auf meinen WLAN-Router setze erhalte ich die Meldung
Und das ist es auch. Aber warum?network unreachable
Ein "ifconfig" ergibt folgende Meldung:
Code: Alles auswählen
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:560 (560.0 b) TX bytes:560 (560.0 b)
wlan0 Link encap:Ethernet HWaddr 00:18:DE:89:48:86
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Interrupt:58 Base address:0x4000 Memory:edf00000-edf00fff
Code: Alles auswählen
lo no wireless extensions.
eth1 no wireless extensions.
eth0 no wireless extensions.
irda0 no wireless extensions.
wlan0 unassociated ESSID:off/any
Mode:Managed Frequency=nan kHz Access Point: Not-Associated
Bit Rate:0 kb/s Tx-Power:16 dBm
Retry limit:15 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
Vielen Dank im voraus für eure Hilfe.
Blas_El_Teso