Hi Chas,
On Thursday, April 30, 2015 at 9:55:36 PM UTC+2, Chas Mac wrote:
> Several of our devices can send Netflow to just one target (or a max of two).
>
> Is there a tool (preferably opensource, etc) that can "tee" off a single Netflow stream and re-direct copies of it to more than one target? Like AS-STATS + another system.
We do this with udp samplicator, e.g.:
https://github.com/sleinen/samplicator
Example, all incoming UDP packets to port 2050 are samplicated to
localhost port 3050 and 9000
/usr/local/bin/samplicate -p 2050 -n -S
127.0.0.1/3050 127.0.0.1/9000 &
nfdump listens to 3050
AS-Stats to 9000
Nice: with -S the original source IP address is kept, and therefore
nfdump still has the correct NetFlow sender.
Cheers,
Tim