是否可以在 openWRT 上安装 scapy

is it possible to install scapy on openWRT

我想在具有 openWRT 的 ARM 系统中为 python 2.7(已存在于 openWRT 中)安装 scapy 和 wireshrk?在openWRT中有没有容易安装scapy的包?

我不确定 wireshark,但 scapy 是可能的。请按照以下步骤操作:

opkg update
opkg upgrade tar wget
opkg install python tcpdump unzip
wget http://www.secdev.org/projects/scapy/files/scapy-latest.tar.gz
tar -xvf scapy-latest.tar.gz
cd scapy*
python setup.py install
cd ..
rm -rf scapy*

它对我有用,我的Arduino Yun

截至今天,scapy 存储库:

上可用
# opkg update
# opkg install scapy