I want to install scapy and wireshrk for python 2.7(already present in openWRT) in an ARM system having openWRT? Is there a package easy to install scapy in openWRT?
I am not sure about wireshark
, but it is possible for scapy
. Follow these steps:
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*
It worked for me, with my Arduino Yun
.