Scapy 在 Raspberry Pi5 上的监控模式下无法嗅探数据包

问题描述 投票:0回答:1

无法使用 wifi TP link Ac600 dongle 在新的 Raspberry pi5 设备 Arm64 上嗅探数据包,但相同的代码可以在 pi4 上使用相同的 dongle。

Wlan1 设置为监听模式

from scapy.all import *
packets = sniff(iface='wlan1', timeout=10)
print (str(packets))

enter image description here

raspberry-pi scapy
1个回答
1
投票

我最初也遇到过同样的问题。确保正确安装驱动程序和所需的支持框架。

Step 1: sudo apt-get update
Step 2: sudo apt -y raspberry-kernel-headers build-essential bc dkms git
Step 3: sudo apt-get install libpcap-dev

Step 4: verify sudo dkm status if already available
Step 5: git clone https://github.com/morrownr/8821au-20210708
Step 6: run command `make`
Step 7: sudo make install
Step 8: reboot


Step 9: Install scapy 
Step 10: run scapy & try your snippet
© www.soinside.com 2019 - 2024. All rights reserved.