diff options
author | sergei <sergei@FreeBSD.org> | 2004-11-06 23:48:46 +0000 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2004-11-06 23:48:46 +0000 |
commit | 18f996ff303a0f0d59b25f0ca2234c804309486a (patch) | |
tree | e65356d05b331b829ac41ff84183a22902b1abf2 /net-mgmt/nfdump/Makefile | |
parent | 85da03a162723bf1c470872741f5674abd80bee7 (diff) | |
download | FreeBSD-ports-18f996ff303a0f0d59b25f0ca2234c804309486a.zip FreeBSD-ports-18f996ff303a0f0d59b25f0ca2234c804309486a.tar.gz |
Add net-mgmt/nfdump:
NFDUMP tools support netflow v5 and v7 capturing and processing.
nfcapd - netflow capture daemon.
Reads the netflow data from the network and stores the data into files.
nfdump - netflow dump.
Reads the netflow data from the files stored by nfcapd. It's syntax is similar
to tcpdump. If you like tcpdump you will like nfdump.
nfprofile - netflow profiler.
Reads the netflow data from the files stored by nfcapd. Filters the netflow
data according to the specified filter sets ( profiles ) and stores the
filtered data into files for later use.
nfreplay - netflow replay
Reads the netflow data from the files stored by nfcapd and sends it over
the network to another host.
WWW: http://nfdump.sourceforge.net
PR: ports/72171
Submitted by: Janos Mohacsi <janos.mohacsi@niif.hu>
Diffstat (limited to 'net-mgmt/nfdump/Makefile')
-rw-r--r-- | net-mgmt/nfdump/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-mgmt/nfdump/Makefile b/net-mgmt/nfdump/Makefile new file mode 100644 index 0000000..b019b0b --- /dev/null +++ b/net-mgmt/nfdump/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: nfdump +# Date created: 2004-09-29 +# Whom: Janos.Mohacsi@bsd.hu +# +# $FreeBSD$ +# + +PORTNAME= nfdump +PORTVERSION= 1.1 +CATEGORIES= net-mgmt +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= janos.mohacsi@bsd.hu +COMMENT= Command-line tools to collect and process NetFlow data + +GNU_CONFIGURE= yes +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} + +PLIST_FILES= bin/nfcapd bin/nfdump bin/nfprofile bin/nfreplay bin/nfclean.pl +MAN1= nfcapd.1 nfdump.1 nfprofile.1 nfreplay.1 +PORTDOCS= AUTHORS ChangeLog INSTALL README + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} +.endif + +.include <bsd.port.mk> |