I have a problem regarding Wireless networking on the Raspberry Pi. I'm using a generic dongle which has proven to work fine on other computers, however I'm having trouble connecting to my wireless network on the rpi.
The network is configured to use WPA2-PSK authentication with AES encryption. I have generated a configuration using wpa_passphrase and wpa_supplicant for the ssid and key, have installed the recommended firmware for the dongle but I cannot get any kind of wireless connection (note that the network is broadcasting its name and thus not hidden). I'm running Raspbian (to be more precise XBian beta 1.0 as I intend to use this Pi to run XBMC)
I keep getting the following error when trying to connect using sudo wpa_supplicant -D west -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf -dd
Code: Select all
0: 00:1d:60:ed:60:49 ssid='stofzakje' wpa_ie_len=0 rsn_ie_len=0 caps=0x411 level=-48
wlan0: skip - no WPA/RSN proto matchCode: Select all
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
# config 1 SHOULD work (AES encryption for WPA2-PSK) network
network={
priority=1
ssid="stofzakje"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
group=CCMP
#psk="password"
psk= reallylargestringgeneratedbywpa_passphrasefromabovepsk
}
# config 2 MUMBLE! test if the router is lying or I'm mad
network={
priority=2
ssid="stofzakje"
proto=WPA
key_mgmt=WPA-PSK
pairwise=TKIP
group=TKIP
#psk="password"
psk= reallylargestringgeneratedbywpa_passphrasefromabovepsk
}
# config 3 shouldn't this act as a catch-all!???
network={
priority=3
ssid="stofzakje"
proto=WPA RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
#psk="password"
psk=reallylargestringgeneratedbywpa_passphrasefromabovepsk
}
# config 4 the bare minimum in case all of the above properties are wrong
network={
priority=4
ssid="stofzakje"
#psk="password"
psk=reallylargestringgeneratedbywpa_passphrasefromabovepsk
}
So my question after reading up a lot on wheezy, wpa_supplicant and Linux wi-fi in general is:
Is there anyone who has encountered above problem and been able to figure out what caused it ? Is it perhaps an incompatibility between the dongle and the Pi ? Is it an incompatibility with the router / dongle / pi-match ? Can I sudo apt-get the living daylights out of the thing and fix the problem ? HELP