nmcli connect wifi
# see available connections
nmcli d wifi
# disconnect from the access point you are currently connected to
# replace with the AP you are currently connected to
nmcli c down # see previous command output
# connect to new AP
# replace with name of AP you want to connect to
# replace with the password of the AP
nmcli d wifi c password
# hope this helped you :)
|