[Guide] Enterprise wifi (WPA-2) on raspberry

Can someone provide a link with working instructions to fix WIFI on RPi?

I got it to work:

add these lines to your /etc/wpa_supplicant/wpa_supplicant.conf (use ~$ sudo nano /etc/wpa_supplicant/wpa_supplicant.conf):

network={
ssid="eduroam"
proto=RSN
key_mgmt=WPA-EAP
pairwise=CCMP TKIP
group=CCMP TKIP
identity="YOUR_USER_NAME(studentnumber@student.hhs.nl) "
password="YOUR_PASSWORD"
phase1="peaplabel=0"
phase2=“auth=MSCHAPV2”
}

add these lines to your /etc/network/interface (use sudo nano /etc/network/interface):

auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

then do:
~$ sudo reboot

sources:
https://raspberrypi.stackexchange.com/questions/43359/connecting-to-universities-wpa2-enterprise-wifi-network

http://weworkweplay.com/play/automatically-connect-a-raspberry-pi-to-a-wifi-network/

1 Like

How do you generate the password_hash? Isn’t it supposed to be your password?

Yeah, that should be:
password="password"
I also edited it in the original post

Awesome, tnx Pieter!