提问人:ohhConti 提问时间:8/17/2023 更新时间:8/18/2023 访问量:518
在 Linux 上为 Wireshark 启用监视模式
Enable monitor mode on Linux for Wireshark
问:
我需要在运行 Ubuntu 22.04.2 LTS 的 Lenovo Legion 计算机上启用监控模式,以开始通过 Wireshark 嗅探 wifi 流量。
我已经正确安装了 Wireshark,但不幸的是,在“捕获”选项中,在“监视模式”列下,没有显示任何复选框,而只显示一条小直线 __apt-get install
此外,如果我在终端内运行,则不会显示 wlan0 接口,而只显示似乎是以太网的 wlp3s0 接口(即使它肯定是无线接口)ifconfig -a
答:
1赞
ohhConti
8/18/2023
#1
我已经想出了如何处理它:
- 禁用自动重新连接(这将导致退出监视模式)
- 断开 PC 与任何 wifi 网络的连接
- 运行以下命令
sudo ifconfig wlp3s0 down
sudo iwconfig wlp3s0 mode monitor
sudo ifconfig wlp3s0 up
sudo wireshark
评论