显示接入点的BSSID?


Answers:


12

如果我没记错的话,它应该是签发时显示的地址

sudo iwlist scanning

例如:

wlan0     Scan completed :
          Cell 01 - Address: 00:11:22:33:44:55
                    Channel:5
                    Frequency:2.432 GHz (Channel 5)
                    Quality=70/70  Signal level=-33 dBm  
                    Encryption key:on
                    ESSID:"the_known_ssid"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    ...

1
扭矩小:sudo iwlist wlan0 scanning|grep Address仅显示地址。我的帖子需要花费更多时间,因此更好的方法是;-)
Rinzwind 2011年

5

您还可以安装wifi-radar,它将为您提供NIC正在查看的所有无线网络的图形列表。使用sudo apt-get install wifi-radar安装它。


4

如果使用网络管理器(Ubuntu中的默认设置),则可以使用nmcli。它还为输出格式提供了多个选项。

在您的情况下,您知道SSID并想要BSSID:

nmcli -f SSID,BSSID,ACTIVE dev wifi list | grep $wanted_ssid

2

nm-tool | grep Wireless-Name,您要替换要尝试连接的无线的“ Wireless-Name”将为您提供所需的所有信息


1

aircrack-ng 可以做到这一点。

sudo airmon-ng start eth1 6使用eth1监视频道6(该频道是可选的),然后可以sudo airodump-ng eth1使它显示BSSID。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.