Wired connection private computer Pdf, 32.9 kB, opens in new window.
NOTE! Do not enter @ju.se after your user name when using a wired connection.

Wireless connection iPhone/iPad Pdf, 293.6 kB.

Wireless connection Mac Pdf, 1.2 MB, opens in new window.

Wireless connection Windows 10 Pdf, 147.6 kB.
Forget wireless network Windows 10 Pdf, 246 kB, opens in new window.

Wireless connection Android Pdf, 378.9 kB.

Linux

In Debian / Ubuntu

If the certificate VeriSign Class 3 Public Primary CA - G2 is not added into your system you have to add it before you can connect to eduroam.

You can download most of the ca-certificates through apt with command apt-get install ca-certificates. If that does not work you can follow the steps via this link External link, opens in new window. (replace domain with ju-se)


If you could download the certificate via apt-get follow the steps below:

If you use a graphical interface to connect:
5. connect to eduroam and choose "use system ca cert" or none as ca-certificate.
6. Add you username followed by @ju.se and your password.

If you do not use a graphical interface to control the wireless you can try use one of the optional way listed below.
# Debian /etc/network/interfaces example
iface wlan0 inet dhcp
wpa-ssid eduroam
wpa-key-mgmt IEEE8021X
wpa-eap PEAP
wpa-phase2 auth=MSCHAPV2
wpa-identity username@ju.se
wpa-password password
ca_cert=/usr/share/ca-certificates/PCA-3G2.crt

# wpa_supplicant.conf example
network={
    ssid="eduroam"
    key_mgmt=IEEE8021X
    eap=PEAP
    phase2="auth=MSCHAPV2"
    identity="username@ju.se"
    password="password"
    ca_cert="/usr/share/ca-certificates/PCA-3G2.crt"
}

ArchLinux:

#### eduroam wpa_supplicant
network={
ssid="eduroam"
key_mgmt=WPA-EAP IEEE8021X
eap=PEAP
identity="username@ju.se"
password="password"
phase2="auth=MSCHAPV2"
}

####