Add tcpreplay.

This commit is contained in:
giomba 2023-07-26 10:51:59 +02:00
parent 53d7de55bd
commit 808afbd453
1 changed files with 11 additions and 0 deletions

11
tcpreplay.md Normal file
View File

@ -0,0 +1,11 @@
# Replay trace
```
tcpreplay -i eth0 capture.pcapng
```
# Replace IP address
Replace IP address of endpoint hosts (eg. new destination 10.0.0.2, new source 10.0.0.1):
```
tcpprep --auto=server --pcap=sbirulo.pcapng --cachefile=stream.cache
tcprewrite --infile=original.pcapng --outfile=modified.pcapng --endpoints=10.0.0.2:10.0.0.1 --cachefile=stream.cache
```