I'm running the latest Raspbian with a TP-Link TL-WN725N Nano WiFi Adapter. I have installed the drivers found here: http://blog.pi3g.com/2013/05/tp-link-tl ... pi-driver/
I was successful in configuring it with my home WPA2 personal network. Wifi worked fine.
I'm now trying to get it connected to my office's WPA2 Enterprise network. This has not been nearly as easy. I've tried various manual configurations as well as wpa_gui.
wpa_gui sees interface and successfully shows me the SSIDs in my area. But when I try to connect, all that happens is wpa_status says "Scanning" and last message is "WPS-AP-AVAILABLE". I don't see an IP address being assigned or anything. It doesn't seem to actually *connect* to the network.
Logins, passwords and SSIDs have been double-checked.
iwconfig says this:
Code: Select all
wlan0 unassociated Nickname:"<WIFI@REALTEK>"
Mode:Managed Frequency=2.412 GHz Access Point: Not-Associated
Sensitivity:0/0
Retry:off RTS thr:off Fragment thr: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
lo no wireless extensions.
eth0 no wireless extensions.
My config files look like this:
File: /etc/network/interfaces
Code: Select all
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
Code: Select all
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="office"
proto=RSN
key_mgmt=WPA-EAP
pairwise=TKIP
auth_alg=OPEN
eap=PEAP
identity="officedomain\username"
password="blablabla"
}
network={
ssid="office_GUEST"
psk="blablabla"
proto=RSN
key_mgmt=WPA-PSK
pairwise=TKIP
auth_alg=OPEN
}
Many thanks!