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?
Asked
Active
Viewed 2,500 times
0
-
https://openwrt.org/packages/pkgdata_lede17_1/scapy – Sourav Ghosh Apr 25 '20 at 17:28
2 Answers
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