diff options
author | sumikawa <sumikawa@FreeBSD.org> | 2003-03-03 04:43:53 +0800 |
---|---|---|
committer | sumikawa <sumikawa@FreeBSD.org> | 2003-03-03 04:43:53 +0800 |
commit | 1fc2998a1d82fa9994b65026dd864d57df4651db (patch) | |
tree | 8ef4ad00b320ebf86189026a5a7895dde1f5500f /net/aguri | |
parent | 2d77d6fe74e7251465ba5e7a13ecade10b1b4572 (diff) | |
download | freebsd-ports-gnome-1fc2998a1d82fa9994b65026dd864d57df4651db.tar.gz freebsd-ports-gnome-1fc2998a1d82fa9994b65026dd864d57df4651db.tar.zst freebsd-ports-gnome-1fc2998a1d82fa9994b65026dd864d57df4651db.zip |
Add aguri 0.5, "An Aggregation-based Traffic Profiler".
PR: 48747
Submitted by: Yann Berthier <yb@sainte-barbe.org>
Diffstat (limited to 'net/aguri')
-rw-r--r-- | net/aguri/Makefile | 35 | ||||
-rw-r--r-- | net/aguri/distinfo | 1 | ||||
-rw-r--r-- | net/aguri/pkg-descr | 22 | ||||
-rw-r--r-- | net/aguri/pkg-plist | 9 |
4 files changed, 67 insertions, 0 deletions
diff --git a/net/aguri/Makefile b/net/aguri/Makefile new file mode 100644 index 000000000000..15d4a365c97c --- /dev/null +++ b/net/aguri/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: aguri +# Date created: 27 February 2003 +# Whom: Yann Berthier <yb@sainte-barbe.org> +# +# $FreeBSD$ +# + +PORTNAME= aguri +PORTVERSION= 0.5 +CATEGORIES= net ipv6 +MASTER_SITES= ftp://ftp.csl.sony.co.jp/pub/kjc/ + +MAINTAINER= yb@sainte-barbe.org +COMMENT= "An Aggregation-based Traffic Profiler" + +USE_XLIB= yes + +MAN1= aguri.1 + +post-install: + +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for FILES in INSTALL README + @${INSTALL_DATA} ${WRKSRC}/${FILES} ${DOCSDIR} +.endfor +.endif + @${MKDIR} ${DATADIR} + @${INSTALL_DATA} ${WRKSRC}/scripts/README ${DATADIR} +.for SCRIPTS in agurify.pl density.pl makeplot.pl + @${INSTALL_SCRIPT} ${WRKSRC}/scripts/${SCRIPTS} \ + ${DATADIR} +.endfor + +.include <bsd.port.mk> diff --git a/net/aguri/distinfo b/net/aguri/distinfo new file mode 100644 index 000000000000..a9299e5d8ca9 --- /dev/null +++ b/net/aguri/distinfo @@ -0,0 +1 @@ +MD5 (aguri-0.5.tar.gz) = ae25dec143a29e92be3b314dd5af2991 diff --git a/net/aguri/pkg-descr b/net/aguri/pkg-descr new file mode 100644 index 000000000000..8202186ca18d --- /dev/null +++ b/net/aguri/pkg-descr @@ -0,0 +1,22 @@ +Aguri is an aggregation-based traffic profiler targeted for near real-time, +long-term, and wide-area traffic monitoring. Aguri adapts itself to spatial +traffic distribution by aggregating small volume flows into aggregates, and +achieves temporal aggregation by creating a summary of summaries applying the +same algorithm to its outputs. A set of scripts are used for archiving and +visualizing summaries in different time scales. Aguri does not need a +predefined rule set and is capable of detecting an unexpected increase of +unknown protocols or DoS attacks, which considerably simplifies the task of +network monitoring. + +Aguri produces four separate profiles for source addresses, destination +addresses, source protocols and destination protocols. IP addresses are +designed to be hierarchical and aggregatable so that it is natural to apply +aggregation. Both IPv4 and IPv6 are supported in address profiles. Although +protocol numbers are not hierarchical, the same technique can be used to +identify port ranges. We concatenate the IP version, the protocol number and +the TCP/UDP port number to create a 32-bit key for a protocol profile. + +WWW: http://www.csl.sony.co.jp/person/kjc/software.html + +- Yann +yb@sainte-barbe.org diff --git a/net/aguri/pkg-plist b/net/aguri/pkg-plist new file mode 100644 index 000000000000..20ae09c5079d --- /dev/null +++ b/net/aguri/pkg-plist @@ -0,0 +1,9 @@ +bin/aguri +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%DATADIR%%/README +%%DATADIR%%/agurify.pl +%%DATADIR%%/density.pl +%%DATADIR%%/makeplot.pl +@dirrm %%DATADIR%% |