Eduroam

Eduroam logo

IST manages the wireless network on-campus, commonly known as eduroam. Eduroam securely encrypts data over the air and provides access to wireless networks at other co-operating educational institutions worldwide.

Staff/Faculty/Students with a WatIAM account

Waterloo Identity and Access Management (WatIAM) credentials are required to authenticate to the wireless network.

Table of contents

  1. How do I connect to eduroam automatically

  2. How do I connect using configuration assistant tool

  3. How do I connect using Windows 10

  4. How do I connect using iOS device

  5. How do I connect using an Android device

  6. How do I connect using Ubuntu

  7. How do I connect using raspberry Pi

  8. What if my device is not listed

  9. Remove wi-fi profile mac os

  10. Remove wi-fi profile windows

Connect to Eduroam automatically

  1. Select Eduroam from the list of availiable Wi-Fi networks 
  2. When asked for a userid and password, please enter:
    1. youruserid@uwaterloo.ca 
    2. Your WatIAM password

How to connect a Raspberry Pi to Eduroam

Please follow the instructions below:

  1. Please download the certificate first and save it somewhere on your machine's hard drive. Here is the link: Global Sign Certs
  2. Open "/etc/network/interfaces"
    Go to File Manager, and navigate to "/etc/network" (no quotes).. Right click on the file called interfaces, and select Open With... → proceed to Custom Command Line. Under the Command line to execute, type in "sudo leafpad" (no quotes). Press Ok
  3. Edit "/etc/network/interfaces" (ignore all "#" lines; they are just there for comments). Save and Close afterwards. 
    1. auto lo
    2. iface lo inet loopback
    3. iface eth0 inet manual
    4. allow-hotplug wlan0
    5. iface wlan0 inet manual
    6. wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
    7. iface default inet dhcp
  4. Open "/etc/wpa_supplicant/wpa_supplicant.conf" 
    Navigate to "/etc/wpa_supplicant" (no quotes). Right click on the file called wpa_supplicant.conf. Then, select Open With... → proceed to Custom Command Line. Under the Command line to execute, type in "sudo leafpad" (no quotes). Press Ok.
  5. Edit "/etc/wpa_supplicant/wpa_supplicant.conf". Don't forget to Save and Close the file. 
    Don't just copy and paste the code below. Please read to make sure to read every line carefully before editing the wpa_supplicant.conf script. (Note: "#" is a comment to guide you where you need to go.)
  6. This is the common configuration script for "wpa_supplicant.conf" file you will need to connect to Eduroam:
    1. network={
    2. ssid="eduroam"   
    3. identity="myuserid@uwaterloo.ca"     
    4. password="mypass"   
    5. ca_cert="/etc/certs/ROOT-R1.crt"
    6. ## replace ROOT-R1.crt with the certs file  
    7. key_mgmt=WPA-EAP   
    8. eap=PEAP   
    9. phase2="auth=MSCHAPV2"    
    10. scan_ssid=0   
    11. mode=0
    12. }

Back to Table of Contents