I have some network traffic captured pcap file and want to send its packets on NIC; is it possible? Is there any application to do this?
Asked
Active
Viewed 2.0k times
6
-
Probably highly dependant on the OS. You should indicate which one. – bortzmeyer Dec 23 '09 at 20:43
4 Answers
6
You should be able to use some kind of replay application like tcpreplay.

Jaime Hablutzel
- 6,117
- 5
- 40
- 57

Mark Wilkins
- 40,729
- 5
- 57
- 110
0
I use tcpreplay on Linux/Freebsd eg:
#tcpreplay -l 0 -i eth1 path-to-your-captured-file.pcap
-l loop how many times, 0 for infinite
-i interface where you want to send out

Alvin Ch
- 1
- 1