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?
A:
There is a libpcap/winpcap library, that allows the programmer to send/receive packets and work directly with NDIS-level driver. http://www.winpcap.org
alemjerus
2009-12-23 15:11:03
+3
A:
You should be able to use some kind of replay application like this one.
Mark Wilkins
2009-12-23 15:11:59
+2
A:
bit-twist (http://bittwist.sourceforge.net/) can do this.
just install it and inject your packet like this :
# bittwist -i eth0 pcap-file.pcap
Zskdan
2010-03-17 15:19:00
A:
Yes there is a way,sending a packet to NIC means injecting it to an interface....
you can do this with the help of libnet packege in linux.I myself am working on the same these days,try googling with this term, u'll surely get some good stuff to share...
Anand
2010-07-08 00:20:16