Skip to content

Instantly share code, notes, and snippets.

@vladaviedov
Created September 1, 2023 02:30
Show Gist options
  • Save vladaviedov/ee6006c7aed9ca4abb268dff158a0f2b to your computer and use it in GitHub Desktop.
Save vladaviedov/ee6006c7aed9ca4abb268dff158a0f2b to your computer and use it in GitHub Desktop.
Connect to NUwave from the CLI on Linux
## Create new connection
## Note: find wifi interface name from 'ip link'
# shell:
nmcli con add type wifi ifname <interface> con-name NUwave ssid NUwave
nmcli con edit id NUwave
## This will open nmcli shell to configure the connection
# nmcli:
set ipv4.method auto
set 802-1x.eap peap
set 802-1x.phase2-auth mschapv2
set 802-11-wireless-security.key-mgmt wpa-eap
## Authorization (Northeastern login)
set 802-1x.identity <username>
set 802-1x.password <password>
## Save and connect
save
activate
quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment