Connecting your Raspberry Pi to eduroam

From XPUB & Lens-Based wiki
Revision as of 14:06, 5 December 2018 by Bohye Woo (talk | contribs)
(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

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=NL

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