Connecting your Raspberry Pi to eduroam

From XPUB & Lens-Based wiki
Revision as of 13:39, 5 December 2018 by Michael Murtaugh (talk | contribs) (Created page with "Thanks to this tutorial: https://www.raspberrypi.org/forums/viewtopic.php?t=86253 sudo nano /etc/wpa_supplicant/wpa_supplicant.conf <code> network={ ssid="eduroam"...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Thanks to this tutorial: https://www.raspberrypi.org/forums/viewtopic.php?t=86253

sudo nano /etc/wpa_supplicant/wpa_supplicant.conf

network={

       ssid="eduroam"
       scan_ssid=1
       key_mgmt=WPA-EAP
       eap=PEAP
       identity="youridentity@hr.nl"
       password="yourpassword"
       phase1="peaplabel=0"
       phase2="auth=MSCHAPV2"

}