| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 | Welcome to softflowd, a flow-based network monitor.Introduction------------softflowd listens promiscuously on a network interface and semi-statefullytracks network flows. These flows can be reported using NetFlow version 1, 5 or 9 datagrams. softflowd is fully IPv6 capable: it can track IPv6 flows and export to IPv6 hosts.More details about softflowd's function and usage may be found in thesoftflowd wiki in following URLs:https://github.com/irino/softflowd/wiki/softflowdhttps://github.com/irino/softflowd/wiki/softflowctlPDF manpages can be built with:man -t ./softflowd.8 | ps2pdf - softflowd.pdfman -t ./softflowctl.8 | ps2pdf - softflowctl.pdfHTML manpages can be built with:groff -mandoc -Thtml softflowd.8 > softflowd.htmlgroff -mandoc -Thtml softflowctl.8 > softflowctl.htmlMarkdown manpages (which are published in wiki pages) can be builtfrom above HtML manpages:pandoc -s softflowd.html -o softflowd.mdpandoc -s softflowctl.html -o softflowctl.mdYou can view those pages prior to installation using:/usr/bin/nroff -c -mandoc softflowd.8 | less/usr/bin/nroff -c -mandoc softflowctl.8 | lessIf you are in need of a NetFlow collector, you may be interested in softflowd's companion project "flowd" (http://www.mindrot.org/projects/flowd/). flowd is a NetFlow collector that is maintained in parallel withsoftflowd and includes a few handy features, such as the abilityto filter flows it receives as well as Perl and Python APIs to itsstorage format. NB. You don't have to use flowd: any NetFlow compatible collector should work with softflowd. An example Perl collector is included for testing purposes as collector.pl, but it doesn't yet support NetFlow v.9Installing----------Building softflowd should be as simple as typing:autoreconf -if # instead of "aclocal && autoheader && automake --add-missing && autoconf"./configuremakemake installUnfortunately some systems like to make life complicated. Things workfine on the systems that I develop and test on (OpenBSD and Linux).There is peliminary support for Solaris 9 (i.e. it compiled), but notesting on this platform has been performed.Licensing---------Softflowd is licensed under a two-term BSD license (see the sourcefiles for details). The code in sys-tree.h is Copyright Niels Provos<provos@citi.umich.edu> and comes straight from OpenBSD CVS, convtime.ccomes is Copyright Kevin Steves and comes from OpenSSH (misc.c). Bothof these files are licensed under two-term BSD licenses too. strlcpy.c,strlcat.c and closefrom.c also come from OpenBSD CVS and are CopyrightTodd C. Miller. Please refer to the LICENSE file for full details.Reporting Bugs--------------Please report bugs in softflowd (https://github.com/irino/softflowd/)to https://github.com/irino/softflowd/issuesFollowing descriptions are historical information:Please report bugs in softflowd to http://bugzilla.mindrot.org/ If youfind a security bug, please report it directly by email. If you have anyfeedback or questions, please email me:Contributing------------Softflowd has an extensive TODO list of interesting features, large andsmall, that are waiting to be implemented. If you are interested inhelping, please contact me.The latest source code may be obtained from Github:https://github.com/irino/softflowd/(This repository was forked from http://code.google.com/p/softflowd/)Original creator:Damien Miller <djm@mindrot.org>Current maintainer:Hitoshi Irino <irino@sfc.wide.ad.jp>
 |