Saturday, April 27, 2024
HomePythonConnecting Raspberry Pi to Eduroam Wifi

Connecting Raspberry Pi to Eduroam Wifi


Hello individuals! 👋 I used to be working with Raspberry Pi recently and was attempting to attach it to eduroam. In case you are not acquainted with eduroam, it’s a service utilized by most universities to supply Wifi on their campuses. It makes use of Enterprise WPA and Raspberry Pi doesn’t hook up with it mechanically out of the field.

I really discovered these directions on a special web site however that web site is down now. I’m placing these directions right here for all of you who is perhaps caught in the identical scenario.

Raspberry Pi makes use of wpa-supplicant to connect with the wifi. wpa-supplicant has a wpa_supplicant.confconfiguration file the place you possibly can manually add details about an entry level which you need your Pi to connect with. We’ll replace this wpa_supplicant.conf file so as to add details about eduroam in order that at any time when our Pi will get indicators from eduroam, it mechanically connects to it.

Step 1:

Let’s edit the wpa_supplicant.conf file. Open up the terminal in your Raspberry Pi and sort the next command (with out the $):

$ sudo nano /and so forth/wpa_supplicant/wpa_supplicant.conf

This may open up nano (textual content editor) to will let you edit the file. Now paste within the following textual content within the file:

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
nation=us

community={
        ssid="eduroam"
        scan_ssid=1
        key_mgmt=WPA-EAP
        eap=PEAP
        identification="yourDetails@yourSchool.edu"
        password="yourpassword"
        phase1="peaplabel=0"
        phase2="auth=MSCHAPV2"
}

Change the identification and password to your username and password which you usually use to connect with eduroam in your laptop computer/cellphone.

Now save the file and shut nano. You are able to do that by urgent Ctrl+x after which urgent Y.

Step 2:

Now we have to inform our Pi to reload the configuration file. To do this sort the next command in your terminal on the Pi:

$ sudo wpa_supplicant -i wlan0 -c /and so forth/wpa_supplicant/wpa_supplicant.conf

Your Pi will both hook up with eduroam at this level or it’d want a reboot to make issues work. If it doesn’t join, reboot your Pi and it ought to mechanically hook up with eduroam on subsequent run.

I hope this information was helpful for you all. Better of luck! And you probably have any questions/feedback/issues please e-mail me! My e-mail is within the footer of this web page 😄.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments