Configuring WIFI with nmcli

# Display the status of all network devices
nmcli dev status

# Turn on the WiFi radio
nmcli radio wifi on

# List all available WiFi networks
nmcli dev wifi list

# Connect to a WiFi network with a specific SSID and password
nmcli dev wifi connect network-ssid password "network-password"

# Connect to a WiFi network with a specific SSID and prompt for password
nmcli --ask dev wifi connect network-ssid

# Disconnect from a network connection specified by its SSID or UUID
nmcli con down ssid/uuid

# Connect to a network connection specified by its SSID or UUID
nmcli con up ssid/uuid

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *