Skip to content

Instantly share code, notes, and snippets.

@Skalnark
Forked from AntonFriberg/eduroam.sh
Last active September 14, 2022 17:44
Show Gist options
  • Save Skalnark/201fdd72473393e2cd98ceaa6dc18316 to your computer and use it in GitHub Desktop.
Save Skalnark/201fdd72473393e2cd98ceaa6dc18316 to your computer and use it in GitHub Desktop.
Conectar a eduroam na Universidade Federal da Paraíba usando NetworkManager
# !/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