ksool Guru
Joined: 27 May 2006 Posts: 337 Location: Cambridge, MA
|
Posted: Sun Jul 16, 2006 6:56 pm Post subject: WPA supplicant error |
|
|
I've been trying to setup my laptop (HP Pavillion zv5000t) to connect to my wireless router (Linksys WRT54G running DD-WRT, WPA-PSK, AES, no SSID broadcast).
When I start up networking on my wireless card, I get the following error:
ioctl[siocsiwpmksa]: Invalid Argument
Then it skips over the encrypted network and goes directly to the second one and runs fine.
I've tried commenting out almost all the lines in wpa_supplicant.conf individually but nothing seems to work.
Also, I tried to add AES to the pairwise and group lines but it says its not a valid cypher.
Thanks.
(My wireless card is wlan0)
Here's my /etc/conf.d/net
Code: |
modules=( "wpa_supplicant" )
wpa_supplicant_wlan0="-Dndiswrapper"
config_eth0=( "192.168.1.7 netmask 255.255.255.0 brd 192.168.1.255" )
routes_eth0=( "default gw 192.168.1.1" )
#Auto-configured on an SSID basis from wireless
config_myssid=( "192.168.1.3 netmask 255.255.255.0 brd 192.168.1.255" )
routes_myssid=( "default gw 192.168.1.1" )
config_anotherssid=( "dhcp" )
|
And my /etc/wpa_supplicant.conf
Code: |
ctrl_interface=/var/run/wpa_supplicant
# Ensure that only root can read WPA configuration
ctrl_interface_group=0
# Let wpa_supplicant take care of scanning and AP selection
ap_scan=1
# Networks
network={
ssid="myssid"
scan_ssid=1
proto=WPA
key_mgmt=WPA-PSK
pairwise=TKIP
group=CCMP TKIP WEP104 WEP40
psk="MYKEY"
priority=5
}
network={
ssid="anotherssid"
key_mgmt=NONE
priority=4
}
|
|
|