-
-
Save Skalnark/201fdd72473393e2cd98ceaa6dc18316 to your computer and use it in GitHub Desktop.
Conectar a eduroam na Universidade Federal da Paraíba usando 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
# !/bin/bash | |
nmcli con add \ | |
type wifi \ | |
con-name "eduroam" \ | |
ssid "eduroam" \ | |
wifi-sec.key-mgmt "wpa-eap" \ | |
802-1x.identity "seu usuario do [email protected]" | |
802-1x.password "sua senha do sigaa" \ | |
802-1x.system-ca-certs "yes" \ | |
802-1x.domain-suffix-match "ufpb.br" \ | |
802-1x.eap "peap" \ | |
802-1x.phase2-auth "mschapv2" | |
nmcli connection up eduroam |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment