使用 `netsh wlan show networks mode=bssid` 时 "basic rates" 和 "other rates" 是什么意思
What does "basic rates" and "other rates" mean when using `netsh wlan show networks mode=bssid`
当我运行这个命令时:
netsh wlan show networks mode=Bssid
我得到这个结果:
Interface name : WiFi
There are 1 networks currently visible.
SSID 1 : *********
Network type : Infrastructure
Authentication : **********
Encryption : **********
BSSID 1 : **********
Signal : 93%
Radio type : 802.11n
Channel : 52
Basic rates (Mbps) : 6 12 24
Other rates (Mbps) : 9 18 36 48 54
我想知道基本速率 (Mbps) 和其他速率 (Mbps) 是什么意思?
我读了这个比较table:http://en.wikipedia.org/wiki/IEEE_802.11n-2009#Comparison
而且这些数字似乎对应于 802.11g 行的所有流数据速率列。为什么基本费率和其他费率是分开的?数字的意义是什么?我可以用这些信息做什么?
我不确定为什么会有分隔,但这是 WLAN_RATE_SET 的文档,这可能是 netsh 试图在此处显示的 Wlan API 结构。
https://msdn.microsoft.com/en-us/library/windows/desktop/aa370026(v=vs.85).aspx
A basic rate is the data transfer rate that all stations in a basic service set (BSS) can use to receive frames from the wireless medium
我猜这是您看到的第一行。至于"other"的费率设置是多少,我不太确定。
当我运行这个命令时:
netsh wlan show networks mode=Bssid
我得到这个结果:
Interface name : WiFi
There are 1 networks currently visible.
SSID 1 : *********
Network type : Infrastructure
Authentication : **********
Encryption : **********
BSSID 1 : **********
Signal : 93%
Radio type : 802.11n
Channel : 52
Basic rates (Mbps) : 6 12 24
Other rates (Mbps) : 9 18 36 48 54
我想知道基本速率 (Mbps) 和其他速率 (Mbps) 是什么意思?
我读了这个比较table:http://en.wikipedia.org/wiki/IEEE_802.11n-2009#Comparison
而且这些数字似乎对应于 802.11g 行的所有流数据速率列。为什么基本费率和其他费率是分开的?数字的意义是什么?我可以用这些信息做什么?
我不确定为什么会有分隔,但这是 WLAN_RATE_SET 的文档,这可能是 netsh 试图在此处显示的 Wlan API 结构。
https://msdn.microsoft.com/en-us/library/windows/desktop/aa370026(v=vs.85).aspx
A basic rate is the data transfer rate that all stations in a basic service set (BSS) can use to receive frames from the wireless medium
我猜这是您看到的第一行。至于"other"的费率设置是多少,我不太确定。