Hello.
I want to test the integrity of an application that logs netflow for a sequence of traffic at high speeds.
I would like to send a PCAP, but at a specific rate provided by defining packets per second.
The idea is that I send lots of "normal" traffic at a very high rate,
and then check if my application recorded the flowdata correctly but
counting the various flows.
Currently I have found that I can either:
1) Add a stream to the client from a PCAP, which will only re-send the very first entry in the PCAP over and over again. this won't allow for very good tests, since the traffic isn't "normal" network traffic.
2) Use push_pcap(), which doesn't allow me to specify the rate (PPS), which means I cannot stress-test my application.
Any suggestions?