📜  nmcli connect wifi - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:26.542000             🧑  作者: Mango

代码示例1
# 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 :)