adding tcpdump useful commands

This commit is contained in:
Omar Santos 2018-01-10 13:44:07 -05:00
parent 2c96255254
commit ee66ef4085
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
# Useful `tcpdump` commands
### TCPDUMP Cheat Sheet
* [TCPDUMP Cheat Sheet](http://packetlife.net/media/library/12/tcpdump.pdf) is a good resource (I also have a local copy in this repository)
### TCP traffic on port 80-88
`tcpdump -nvvX -sO -i ethO tcp portrange 80-88`
### Capturing traffic to specific IP address excluding specific subnet
`tcpdump -I ethO -tttt dst ip and not net 10.10.10.0/24`
### Capturing traffic for a specific subnet
`tcpdump net 10.1.1`
### Capturing traffic for a given duration in seconds
`dumpcap -I ethO -a duration: sec -w file myfile.pcap`
### Replaying a PCAP
`file2cable -i ethO -f file.pcap`
### Replaying packets (to fuzz/DoS)
`tcpreplay--topspeed --loop=O --intf=ethO pcap_file_to_replay mbps=10|100|1000

Binary file not shown.