Home

Published

- 1 min read

nmcli connect wifi

img of nmcli connect wifi

The solution for this is noted below

nmcli connect wifi

Solution

   # see available connections
nmcli d wifi

# disconnect from the access point you are currently connected to
# replace <current AP> with the AP you are currently connected to
nmcli c down <current AP> # see previous command output

# connect to new AP
# replace <AP name> with name of AP you want to connect to
# replace <password> with the password of the AP
nmcli d wifi c <AP name> password <password>

# hope this helped you :)

Try other methods by searching on the site. That is if this doesn’t work