Is there a set of open source Netflow Collector C ++ libraries?

I am looking for a set of C ++ libraries to develop my own C ++ daemon on Linux to collect NetFlow information. Does anyone know an open source or library set that is available?

Many thanks

+3
source share
3 answers

Have you tried Googling? There are many daemons for NetFlow available for Linux and BSD:

+1
source

FWIW - http://code.google.com/p/flowd/ - BSD-, . ( , , ).

+1

For a standalone library, you can try "libipfix". It implements the new IETF IPFIX protocol, but also understands Netflow v9 (which IPFIX is based on). But I don’t think it can handle older versions of Netflow (v1 and v5 are common), so this is probably only useful if your Netflow export devices support Netflow v9.

+1
source

Source: https://habr.com/ru/post/1750689/


All Articles