diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-25 15:02:23 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-25 15:02:23 +0100 |
commit | 990983283716318bde3216771a40bb400337ca57 (patch) | |
tree | ce8b06bc021be4e6a884b2127fda2bbcc04c8e74 | |
parent | f28e55eca37cfcdc3609549b0f3aaef3f56fb41b (diff) |
update avanswifi
-rw-r--r-- | _items/avanswifi.md | 44 |
1 files changed, 35 insertions, 9 deletions
diff --git a/_items/avanswifi.md b/_items/avanswifi.md index c7cc44d..936356f 100644 --- a/_items/avanswifi.md +++ b/_items/avanswifi.md @@ -1,26 +1,52 @@ --- -title: Avans wifi setup -subtitle: How to use Avans eduroam with NetworkManager +title: Avans eduroam wifi setup tags: - software --- -I wasted 2 hours trying to set up my school's WiFi, so here's a quick reference -for other students who might've tried connecting but ended up giving up. +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 <avans username> -nmcli> set 802-1x.password <avans password> +nmcli> set 802-1x.identity <username> +nmcli> set 802-1x.password <password> nmcli> set wifi-sec.key-mgmt wpa-eap nmcli> save nmcli> activate ``` -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, e.g. `Loek Le -Blansch -> lblansch`. +# 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\>| + + |