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 "<use 'nmcli device status' to find your wifi network interface name (wlan0/wlp9s0/...)>" \ | |
| ssid "eduroam" \ | |
| wifi-sec.key-mgmt wpa-eap \ | |
| 802-1x.identity "<replace with your email>" \ | |
| 802-1x.password "<replace with your password>" \ | |
| 802-1x.system-ca-certs no \ | |
| 802-1x.eap "peap" \ | |
| 802-1x.phase2-auth mschapv2 | |
| nmcli connection up eduroam --ask |