0

I need network logger utility with ability to replay the data it collected, for example, I will record incoming data on UDP port 1234 for 10 minutes, record it to file, then replay that data (with same timing) to some other address:port.

It has to run on windows, and it can be standalone process that will listen to UDP port exclusively, so it doesn't have to be 'sniffer'.

Daniel Mošmondor
  • 301
  • 1
  • 2
  • 11

2 Answers2

2

The best option I know of is Bit-Twist. Bit-Twist will replay packet captures and runs on Windows. I don't know anything that works as a stand-alone process, listens on a UDP port, and then allows you to replay that with proper timing, though. I've never seen or heard of anything that operates in that way (live forwarding, yes, store and forward, no).

Christopher Cashell
  • 9,128
  • 2
  • 32
  • 44
  • well, it says: With Bit-Twist, you can now regenerate your captured traffic onto a live network! Packets are generated from tcpdump trace file (.pcap file). Bit-Twist also comes with a comprehensive trace file editor to allow you to change the contents of a trace file. – Daniel Mošmondor Jan 21 '11 at 18:50
  • Yeah. It should do what you're looking for, working from traffic capture, sniffer style. It won't however, be a "standalone process that will listen to UDP port exclusively". – Christopher Cashell Jan 21 '11 at 21:10
0

It turned out that I created my own tool for that. If there is interest, I'll post it for everyone to use.

The mere utility is here, sources to be available soon.

Daniel Mošmondor
  • 301
  • 1
  • 2
  • 11