INSTALL.md
March 23, 2015 ยท View on GitHub
Installing replayproxy on linux
In theory replayproxy should work on windows too if you can get pynids working... but this guide assumes linux e.g. Ubuntu
Get relayproxy code
git clone https://github.com/sparrowt/replayproxy.gitcd replayproxy
Setup dependencies
- pynids library (http://jon.oberheide.org/pynids/)
- dpkt library (http://code.google.com/p/dpkt/)
Optional: setup python virtual environment to install in
virtualenv venvsource venv/bin/activate
Install dpkt
pip install dpkt
Install pynids
wget https://jon.oberheide.org/pynids/downloads/pynids-0.6.1.tar.gztar -xf pynids-0.6.1.tar.gzcd pynids-0.6.1
Before building pynids you need to install its dependencies:
- libpcap
sudo apt-get install libpcap0.8 libpcap-dev
- libnet
sudo apt-get install libnet1 libnet1-dev
Now you can build pynids:
sudo apt-get install python-devpython setup.py build
this should build libnids which is included in the pynids download
Then actually install pynids:
python setup.py install
Enjoy!
You should now be able to use replayproxy (see README.md for instructions)