📅  最后修改于: 2023-12-03 15:24:08.758000             🧑  作者: Mango
在CMD中,可以通过一些命令来查看当前的网络连接情况,其中包括已经连接的WiFi以及可用的WiFi列表。以下是一些可用的命令和说明。
此命令将显示一个列表,其中包含目前不存在的网络的所有可用 SSID。 它还显示网络类型、信号强度和 SSID 的 BSSID。
netsh wlan show network mode=bssid
输出:
SSID 1 : Network1
Network type : Infrastructure
Authentication : WPA2-Personal
Encryption : CCMP
BSSID 1 : aa:bb:cc:dd:ee:ff
Signal : 78%
Radio type : 802.11n
Channel : 6
Basic rates (Mbps) : 1 2 5.5 6 11 12 24
Other rates (Mbps) : 9 18 36 48 54
BSSID 2 : aa:bb:cc:dd:ee:fe
Signal : 60%
Radio type : 802.11n
Channel : 6
Basic rates (Mbps) : 1 2 5.5 6 11 12 24
Other rates (Mbps) : 9 18 36 48 54
此命令将显示当前以任何身份验证方式连接到的所有无线网络的列表。
netsh wlan show networks
输出:
SSID 1 : Network1
Network type : Infrastructure
Authentication : WPA2-Personal
Encryption : CCMP
SSID 2 : Network2
Network type : Infrastructure
Authentication : WPA2-Personal
Encryption : CCMP
BSSID 2 : aa:bb:cc:dd:ee:fd
SSID 3 : Network3
Network type : Infrastructure
Authentication : WPA2-Personal
Encryption : CCMP
此命令将显示有关当前网络连接的详细信息,包括 SSID、接口状态、连接模式和 IPv4 和 IPv6 地址。
netsh wlan show interface
输出:
名称 : Wi-Fi
描述 : Intel(R) Dual Band Wireless-AC 3165
GUID : aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
物理地址 : 00:11:22:33:44:55
状态 : 已连接
SSID : Network1
BSSID : aa:bb:cc:dd:ee:ff
信号 : 78%
无线网络类型 : 802.11n
无线电类型 : 802.11g
身份验证 : WPA2-Personal
加密 : CCMP
IPv4 地址 : 192.168.0.100(首选)
IPv6 地址 : xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx(首选)
默认网关 : 192.168.0.1
DHCP 服务器 : 192.168.0.1
DNS 服务器 : 192.168.0.1
在 Powershell 中,我们可以使用 Get-NetConnectionProfile
cmdlet 来获取所有网络连接的列表,包括 WiFi。
Get-NetConnectionProfile | Where-Object { $_.NetworkCategory -eq 'Public' -and $_.InterfaceDescription -like '*WiFi*' }
输出:
Name : Network1
InterfaceAlias : Wi-Fi
InterfaceIndex : 6
NetworkCategory : Public
IPv4Connectivity : Internet
IPv6Connectivity : NoTraffic
以上这些是一些常用的方法,可以在CMD中查看所有WiFi。您可以根据您的需求和具体情况选择使用这些命令或其他命令。