-
-
Save sunipkm/7d479178b89aad7b539b97c65b4c3ffd to your computer and use it in GitHub Desktop.
Connect to eduroam on Lund University with NetworkManager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| nmcli con add \ | |
| type wifi \ | |
| con-name "eduroam" | |
| ifname "wlp4s0" \ # Your wifi interface | |
| ssid "eduroam" \ | |
| wifi-sec.key-mgmt "wpa-eap" \ | |
| 802-1x.identity "<YOUR-STUDENT-ID>@lu.se" \ # May also use another university identification | |
| 802-1x.password "<YOUR-PASSWORD" \ | |
| 802-1x.system-ca-certs "yes" \ | |
| 802-1x.domain-suffix-match "radius.lu.se" \ | |
| 802-1x.eap "peap" \ | |
| 802-1x.phase2-auth "mschapv2" | |
| nmcli connection up eduroam --ask # ask for password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment