diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-11-12 21:06:11 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-11-12 21:06:11 +0000 |
commit | 026037c5f9a88eb8bffc8555e760722b33d79738 (patch) | |
tree | c664a265bfaff9d61d6d82c4c7dc750fd22f3b37 /net-mgmt | |
parent | Add flowd, a small, fast and secure NetFlow collector. It offers the following (diff) |
Add softflowd, flow-based network traffic analyser capable of Cisco NetFlow
data export. Softflowd semi-statefully tracks traffic flows recorded by
listening on a network interface or by reading a packet capture file.
These flows may be reported via NetFlow to a collecting host or summarised
within softflowd itself.
PR: ports/73723
Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
Notes
Notes:
svn path=/head/; revision=121478
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/softflowd/Makefile | 28 | ||||
-rw-r--r-- | net-mgmt/softflowd/distinfo | 2 | ||||
-rw-r--r-- | net-mgmt/softflowd/pkg-descr | 7 |
4 files changed, 38 insertions, 0 deletions
diff --git a/net-mgmt/Makefile b/net-mgmt/Makefile index df065fb59a7c..0a4697440a7a 100644 --- a/net-mgmt/Makefile +++ b/net-mgmt/Makefile @@ -147,6 +147,7 @@ SUBDIR += sipcalc SUBDIR += slate SUBDIR += snmptt + SUBDIR += softflowd SUBDIR += sting SUBDIR += subcalc SUBDIR += sysmon diff --git a/net-mgmt/softflowd/Makefile b/net-mgmt/softflowd/Makefile new file mode 100644 index 000000000000..0fdca37fcf4f --- /dev/null +++ b/net-mgmt/softflowd/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: flowd +# Date created: 9 October 2004 +# Whom: Janos Mohacsi <janos.mohacsi@bsd.hu> +# +# $FreeBSD$ +# + +PORTNAME= softflowd +PORTVERSION= 0.9.6 +CATEGORIES= net-mgmt ipv6 +MASTER_SITES= http://www2.mindrot.org/files/softflowd/ + +MAINTAINER= janos.mohacsi@bsd.hu +COMMENT= Softflowd is flow-based network traffic analyser with export + +GNU_CONFIGURE= yes +USE_GMAKE= yes +PLIST_FILES= sbin/softflowd sbin/softflowctl +MAN8= softflowd.8 softflowctl.8 +PORTDOCS= README + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/net-mgmt/softflowd/distinfo b/net-mgmt/softflowd/distinfo new file mode 100644 index 000000000000..88dc299f955c --- /dev/null +++ b/net-mgmt/softflowd/distinfo @@ -0,0 +1,2 @@ +MD5 (softflowd-0.9.6.tar.gz) = 853668a2a20f9273675c5b402d6bc0a6 +SIZE (softflowd-0.9.6.tar.gz) = 81162 diff --git a/net-mgmt/softflowd/pkg-descr b/net-mgmt/softflowd/pkg-descr new file mode 100644 index 000000000000..f45e10fcd48c --- /dev/null +++ b/net-mgmt/softflowd/pkg-descr @@ -0,0 +1,7 @@ +Softflowd is flow-based network traffic analyser capable of Cisco NetFlow +data export. Softflowd semi-statefully tracks traffic flows recorded by +listening on a network interface or by reading a packet capture file. +These flows may be reported via NetFlow to a collecting host or summarised +within softflowd itself. + +WWW: http://www.mindrot.org/softflowd.html |