Connecting to Eduroam: Difference between revisions
No edit summary |
|||
| (10 intermediate revisions by 4 users not shown) | |||
| Line 6: | Line 6: | ||
your_student_number@student.hro.nl | your_student_number@student.hro.nl | ||
Follow the instructions bellow for you specific operating system and add your case, if you happen to login to eduroam from a os/software not listed bellow. | Follow the instructions bellow for you specific operating system and add your case, if you happen to login to eduroam from a os/software not listed bellow. | ||
HRO holds documentation on connecting to Eduroam on http://hint.hro.nl/nl/HR/Voorzieningen--Services/AVICT/Handleidingen/ section '' Draadloos netwerk (eduroam)'' | |||
= Mac OS X = | = Mac OS X = | ||
| Line 28: | Line 29: | ||
[http://www.ucs.cam.ac.uk/mobiledevices/apple/eduroam-ios7.html iOS 7 devices] | [http://www.ucs.cam.ac.uk/mobiledevices/apple/eduroam-ios7.html iOS 7 devices] | ||
= Linux based distros = | = Linux based distros = | ||
| Line 35: | Line 34: | ||
[[File:GnomeWifi.png|frameless]] | [[File:GnomeWifi.png|frameless]] | ||
'''update''' | |||
when asked for '''domain: hr.nl''' <br>also, login domain might be updated: '''studentnr@hr.nl''' | |||
[[File:Screenshot from 2025-12-01 12-42-49.png|frameless]] | |||
==using WICD Network Manager== | ==using WICD Network Manager== | ||
| Line 55: | Line 61: | ||
[[Category: Helpdesk]] | [[Category: Helpdesk]] | ||
== Using wpa_supplicant and dhclient == | |||
Write the following configuration file | |||
<pre>/etc/wpa_supplicant/eduroam.conf | |||
--- | |||
network={ | |||
ssid="eduroam" | |||
scan_ssid=1 | |||
key_mgmt=WPA-EAP | |||
eap=PEAP | |||
phase2="auth=MSCHAPV2" | |||
identity="your-studentnumber@hr.nl" | |||
password="yourpassword" | |||
priority=1 | |||
} | |||
</pre> | |||
Find your wireless adapter name with: | |||
<syntaxhighlight lang="console">$ ip a</syntaxhighlight> | |||
Mine is named wlp2s0 | |||
So to connect using the new config: | |||
<syntaxhighlight lang="console">$ wpa_supplicant -B -i wlp2s0 -c /etc/wpa_supplicant/eduroam.conf</syntaxhighlight> | |||
Get an ip address (you may need to install dhclient) | |||
<syntaxhighlight lang="console">$ sudo dhclient wlp2s0</syntaxhighlight> | |||
And it should be connected! | |||
<span id="to-connect-on-boot"></span> | |||
==== To connect on boot ==== | |||
<pre>/etc/systemd/system/wpa_supplicant@wlp2s0.service | |||
--- | |||
[Unit] | |||
Description=WPA Supplicant for eduroam | |||
After=network.target | |||
[Service] | |||
Type=oneshot | |||
ExecStart=/usr/sbin/wpa_supplicant -B -i %I -c /etc/wpa_supplicant/eduroam.conf | |||
ExecStartPost=/usr/sbin/dhclient %I | |||
RemainAfterExit=true | |||
[Install] | |||
WantedBy=multi-user.target</pre> | |||
Enable | |||
<syntaxhighlight lang="console">$ sudo systemctl enable wpa_supplicant@wlp2s0.service</syntaxhighlight> | |||
And reboot to test :-) | |||
= Eduroam for Guests = | |||
* Ga naar https://eva.eduroam.nl | |||
* Kies voor Hogeschool Rotterdam/Rotterdam University of Applied Sciences, en log in met je HR account en token | |||
* Wanneer je een melding krijgt, klik je op "Yes, share this data" | |||
* Klik op 'Bezoeker aanmaken' en vul de gegevens van de gast in (naam, telefoon en emailadres) | |||
* De gast krijgt via het opgegeven e-mailadres of mobiele nummer een bericht met de Eduroam inloggegevens. | |||
=Printing= | |||
For info on how to install and use the HR/WdKA printers, see: [[Printers]] | |||
[[Category:Infrastructour]] | |||
Latest revision as of 11:35, 2 February 2026
Eduroam (education roaming) provides wireless Internet connection inside higher education spaces. It is available not only in PZI but through the HRO buildings, as well in other academic institutions around the world.
To join the Eduroam wifi network you need your student number and the password that was sent by HRO in a letter, in the beginning of your studies at PZI.
The student number will provide you your login name, which will be:
your_student_number@student.hro.nl
Follow the instructions bellow for you specific operating system and add your case, if you happen to login to eduroam from a os/software not listed bellow.
HRO holds documentation on connecting to Eduroam on http://hint.hro.nl/nl/HR/Voorzieningen--Services/AVICT/Handleidingen/ section Draadloos netwerk (eduroam)
Mac OS X
Android
Here is a nice instruction page from the Oxford University.
To get the connection is essential to,
- fill the identity filled with your_student_number@student.hro.nl
- change the EAP type to PEAP, and to set the Sub-type to PEAPv0/MSCHAPv2.
- Leave the Anonymous identity blank.
Same for Android phone info from some UK uni
iOs
Linux based distros
Using Gnome network settings
update
when asked for domain: hr.nl
also, login domain might be updated: studentnr@hr.nl
using WICD Network Manager
WIcd can be easily configured to connect to eduroam.
Start Wicd-client
wicd-client
Open Eduroam properties
Choose "PEAP with GTC" from the drop-down menu
Identity
your_student_number@student.hro.nl
Password
must have it somewhere (in some letter from the HRO)
That's it. Press OK and connect.
Using wpa_supplicant and dhclient
Write the following configuration file
/etc/wpa_supplicant/eduroam.conf
---
network={
ssid="eduroam"
scan_ssid=1
key_mgmt=WPA-EAP
eap=PEAP
phase2="auth=MSCHAPV2"
identity="your-studentnumber@hr.nl"
password="yourpassword"
priority=1
}
Find your wireless adapter name with:
$ ip a
Mine is named wlp2s0
So to connect using the new config:
$ wpa_supplicant -B -i wlp2s0 -c /etc/wpa_supplicant/eduroam.conf
Get an ip address (you may need to install dhclient)
$ sudo dhclient wlp2s0
And it should be connected!
To connect on boot
/etc/systemd/system/wpa_supplicant@wlp2s0.service --- [Unit] Description=WPA Supplicant for eduroam After=network.target [Service] Type=oneshot ExecStart=/usr/sbin/wpa_supplicant -B -i %I -c /etc/wpa_supplicant/eduroam.conf ExecStartPost=/usr/sbin/dhclient %I RemainAfterExit=true [Install] WantedBy=multi-user.target
Enable
$ sudo systemctl enable wpa_supplicant@wlp2s0.service
And reboot to test :-)
Eduroam for Guests
- Ga naar https://eva.eduroam.nl
- Kies voor Hogeschool Rotterdam/Rotterdam University of Applied Sciences, en log in met je HR account en token
- Wanneer je een melding krijgt, klik je op "Yes, share this data"
- Klik op 'Bezoeker aanmaken' en vul de gegevens van de gast in (naam, telefoon en emailadres)
- De gast krijgt via het opgegeven e-mailadres of mobiele nummer een bericht met de Eduroam inloggegevens.
Printing
For info on how to install and use the HR/WdKA printers, see: Printers
