https://github.com/mcrmonkey/tcpdump-dckr
https://github.com/mcrmonkey/tcpdump-dckr
docker-container
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mcrmonkey/tcpdump-dckr
- Owner: mcrmonkey
- Created: 2016-07-18T20:25:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-11T22:14:21.000Z (over 8 years ago)
- Last Synced: 2024-12-27T01:26:04.605Z (over 1 year ago)
- Topics: docker-container
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# tcpdump-dckr
A docker image that runs tcpdump to capture traffic.
Based on an blog post from [jgamblin](https://github.com/jgamblin).
His orginal post can be found [here](http://jerrygamblin.com/2016/05/28/a-docker-container-to-capture-all-traffic-from-host/).
Have a read of his other posts too!
## Running
You can run this version with a similar command:
docker run -v ~/pcap:/pcap --net=host -d mcrmonkey/tcpdump-dckr
you can run Jerry's original container with this command:
docker run -v ~/pcap:/pcap --net=host -d jgamblin/tcpdump
## Building
If you like you can build your own version.
First, clone this repo to a location of your choosing on your own machine.
Then run the following in that directory:
docker build -t tcpdump-dckr .
Then you should be all set
## License
I've not applied one.
You can do what ever you like to this version. However, I'd ask you link back here if you make something based on this.