I'm using Raspbian.
Every time I turn RPi on, the network monitor icon in bottom right corner says, that wlan0 has no connection at all or the connection is limited. wpa_gui gives error Could not get status from wpa_suplicant.
These are the config files:
/etc/network/interfaces
auto lo
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.111
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.1.255
gateway 192.168.1.1
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
iface home inet static
address 192.168.1.110
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.1.255
gateway 192.168.1.1
iface stalk inet dhcp
/etc/wpa_suplicant/wpa_suplicant.conf (also /etc/wpa.config is a link to this one)
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="my_ssid"
psk="my_pass"
proto=RSN
key_mgmt=WPA-PSK
pairwise=TKIP
auth_alg=OPEN
id_str="home"
priority=15
}
network={
ssid=""
psk=""
key_mgmt=NONE
auth_alg=OPEN
priority=1
disabled=1
id_str="stalk"
}
FYI: my network is using only static IP and WPA2. The ethernet connection works without problems. The wifi adapter (Modecom mc-un11c) is connected to powered USB hub.
To configure the files I used this manual.
What is wrong, why does the wifi connection not work?
wpa-roam
withwpa-conf
in/etc/network/interfaces
as per this thread: http://raspberrypi.stackexchange.com/questions/3852/start-wireless-network-automatically-on-boot-up-how-to – Munkeh Dec 25 '12 at 11:26wlan0
up? Check the output ofifconfig
. – Munkeh Dec 25 '12 at 19:15