0

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?

user2649476
  • 53
  • 2
  • 9

2 Answers2

4

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.

Fahad Siddiqui
  • 1,829
  • 1
  • 19
  • 41
rebrid
  • 430
  • 8
  • 27
1

As of today, scapy is available on the repositories:

# opkg update
# opkg install scapy
Sopalajo de Arrierez
  • 3,543
  • 4
  • 34
  • 52