← All commands
Topic hub Networking
Windows Linux Networking

Windows netsh wlan show networks equivalent in Linux

Lists visible wireless networks, channels, signal strength and security information.

Windows netsh wlan show networks
Linux equivalents
Debian/Ubuntu same command
nmcli device wifi list
Fedora same command
nmcli device wifi list
Arch same command
nmcli device wifi list

Overview

What this command does

Lists visible wireless networks, channels, signal strength and security information.

Migration tip: NetworkManager may cache scan results. Add --rescan yes when you need a fresh scan immediately.

Practical tasks

Common use cases

Scan for nearby Wi-Fi networks

Lists visible wireless networks, channels, signal strength and security information.

nmcli device wifi list

List visible Wi-Fi networks

nmcli device wifi list --rescan yes

Force a fresh scan

nmcli -f SSID,SIGNAL,SECURITY device wifi list

Show selected columns

Ready to run

Copyable Linux commands

Review paths, device names, package names and permissions before running any command.

nmcli device wifi list
nmcli device wifi list --rescan yes
nmcli -f SSID,SIGNAL,SECURITY device wifi list

Walkthrough

Examples with explanations

nmcli device wifi list # scan for wireless networks
nmcli device wifi list --rescan yes # force a new scan
nmcli -f SSID,SIGNAL,SECURITY device wifi list # show SSID, signal and security

Reference

Common options and variations

Command or optionUse
nmcli device wifi listList visible Wi-Fi networks
nmcli device wifi list --rescan yesForce a fresh scan
nmcli -f SSID,SIGNAL,SECURITY device wifi listShow selected columns

Distro differences

Debian/Ubuntu vs Fedora vs Arch

This command is the same on Debian/Ubuntu, Fedora and Arch Linux when the relevant tool is installed.

DistributionPackage manager / baseEquivalent commandDifference to notice
Debian/Ubuntu same command nmcli device wifi list Same command on this distribution.
Fedora same command nmcli device wifi list Same command on this distribution.
Arch same command nmcli device wifi list Same command on this distribution.

Keep learning

Related Networking commands