blob: 1983810e1722a9c95c321eb01c214367a4cbce39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
---
title: Avans eduroam wifi setup
tags:
- software
- phone
---
I wasted 2 hours trying to set up my school's WiFi on my laptop, so here's a
quick reference for other students who might've tried connecting but ended up
giving up.
Keep in mind that your username isn't your student e-mail, but the first letter
of your first name, and 7 characters from your last name (not including a
middle name if you have one), i.e. `Loek Le Blansch -> lblansch`.
# Linux with NetworkManager
Steps for `nmcli`:
```
$ nmcli connection edit type wifi
nmcli> set 802-11-wireless.ssid eduroam
nmcli> set 802-1x.eap peap
nmcli> set 802-1x.phase2-auth mschapv2
nmcli> set 802-1x.identity <username>
nmcli> set 802-1x.password <password>
nmcli> set wifi-sec.key-mgmt wpa-eap
nmcli> save
nmcli> activate
```
# Android
You can connect to eduroam without installing any additional apps by manually
adding a network in the Android WiFi settings using the following connection
settings:
|field|value|
|-|-|
|**Network name/SSID**|`eduroam`|
|**Security**|WPA3-Enterprise|
|**EAP method**|PEAP|
|**Phase 2 authentication**|MSCHAPV2|
|**CA certificate**|Use system certificates|
|**Minimum TLS version**|TLS v1.0|
|**Online Certificate Status**|Do not verify|
|**Domain**|`wifi.avans.nl`|
|**Identity**|\<username\>|
|**Anonymous identity**|anonymous|
|**Password**|\<password\>|
|