Home Python Connecting Raspberry Pi to Eduroam Wifi

Connecting Raspberry Pi to Eduroam Wifi

0
Connecting Raspberry Pi to Eduroam Wifi

[ad_1]

Hello individuals! 👋 I used to be working with Raspberry Pi these days and was making an attempt to attach it to eduroam. If you’re not aware of 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 connect with it routinely out of the field.

I truly 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 likely to be 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 each time our Pi will get indicators from eduroam, it routinely 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 many others/wpa_supplicant/wpa_supplicant.conf

This can 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
        id="yourDetails@yourSchool.edu"
        password="yourpassword"
        phase1="peaplabel=0"
        phase2="auth=MSCHAPV2"
}

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

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 kind the next command in your terminal on the Pi:

$ sudo wpa_supplicant -i wlan0 -c /and many others/wpa_supplicant/wpa_supplicant.conf

Your Pi will both connect 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 routinely connect with eduroam on subsequent run.

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

[ad_2]

LEAVE A REPLY

Please enter your comment!
Please enter your name here