bringe WPA-PSK mit der WLAN karte WG311T von Netgear unter Debian Sarge Stable nicht zum laufen:
Code: Alles auswählen
# lsmod | grep ath
ath_pci 81596 0
ath_rate_sample 16584 1 ath_pci
wlan 146140 4 wlan_wep,ath_pci,ath_rate_sample
ath_hal 148592 3 ath_pci,ath_rate_sample
# vi /etc/default/wpasupplicant
# WARNING! Make sure you have a configuration file!
ENABLED=1
# Useful flags:
# -D <driver> Wireless Driver
# -i <ifname> Interface (required, unless specified in config)
# -c <config file> Configuration file
# -d Debugging (-dd for more)
# -w Wait for interface to come up
OPTIONS="-i ath0 -D madwifi -c /etc/wpa_supplicant.conf -w"
# vi /etc/wpa_supplicant.conf
# WPA-PSK
network={
ssid="myessid"
proto=WPA
scan_ssid=1
key_mgmt=WPA-PSK
pairwise=TKIP
group=TKIP
psk="mykey"
}
# vi /etc/network/interfaces
# wg311t wireless card
auto ath0
iface ath0 inet static
address 192.168.200.20
netmask 255.255.255.0
network 192.168.200.0
broadcast 192.168.200.255
gateway 192.168.200.1
dns-nameservers 192.168.200.1
dns-search dom
#wireless-essid myessid
#wireless-channel auto
#wireless-key mykey
#up /sbin/iwpriv ath0 authmode 2
name wlan WG311T
# wpa_supplicant -i ath0 -c /etc/wpa_supplicant.conf -D madwifi -w
Trying to associate with 00:0f:b5:3b:d8:e6 (SSID='myessid' freq=2457 MHz)
ioctl[IEEE80211_IOCTL_SETMLME]: Argument list too long
Association request to the driver failed
Authentication with 00:00:00:00:00:00 timed out.
WEP Verschlüsselung funktionierte aber mit dieser hardware bestens.