diff options
author | danfe <danfe@FreeBSD.org> | 2005-06-07 18:41:21 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2005-06-07 18:41:21 +0800 |
commit | a050f58b0b83dcf1307c70019e6de99c84eb87e9 (patch) | |
tree | 6d9f86ac44dff206f87faa11771ec998ac2ddfb5 /net | |
parent | 65cda58ab08ddbdfacc7a9ecd18f8a6168ee7335 (diff) | |
download | freebsd-ports-gnome-a050f58b0b83dcf1307c70019e6de99c84eb87e9.tar.gz freebsd-ports-gnome-a050f58b0b83dcf1307c70019e6de99c84eb87e9.tar.zst freebsd-ports-gnome-a050f58b0b83dcf1307c70019e6de99c84eb87e9.zip |
Add traffic, a program which counts bandwidth usage by IP.
PR: ports/81970
Submitted by: Krzysztof Pawlowski <msciciel(at)darkzone.ma.cx>
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/traffic/Makefile | 22 | ||||
-rw-r--r-- | net/traffic/distinfo | 2 | ||||
-rw-r--r-- | net/traffic/pkg-descr | 5 |
4 files changed, 30 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 11e56408df57..b25825a0c05f 100644 --- a/net/Makefile +++ b/net/Makefile @@ -808,6 +808,7 @@ SUBDIR += tptest SUBDIR += traceroute SUBDIR += trackerbt + SUBDIR += traffic SUBDIR += trafshow SUBDIR += trafshow4 SUBDIR += tramp diff --git a/net/traffic/Makefile b/net/traffic/Makefile new file mode 100644 index 000000000000..4ef2adc1d4b0 --- /dev/null +++ b/net/traffic/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: Traffic Analyzer +# Date created: 6 June 2005 +# Whom: Krzysztof Pawlowski <msciciel@darkzone.ma.cx> +# +# $FreeBSD$ +# + +PORTNAME= traffic +DISTVERSION= 0.1rc4 +CATEGORIES= net +MASTER_SITES= http://darkzone.ma.cx/resources/unix/traffic/ + +MAINTAINER= msciciel@darkzone.ma.cx +COMMENT= The main goal of this program is to count bandwidth usage by IP + +GNU_CONFIGURE= yes + +PLIST_FILES= bin/traffic + +MAN1= traffic.1 + +.include <bsd.port.mk> diff --git a/net/traffic/distinfo b/net/traffic/distinfo new file mode 100644 index 000000000000..fea0b29db32b --- /dev/null +++ b/net/traffic/distinfo @@ -0,0 +1,2 @@ +MD5 (traffic-0.1rc4.tar.gz) = f8f1473639e24e8c9ff74eb457014b31 +SIZE (traffic-0.1rc4.tar.gz) = 159833 diff --git a/net/traffic/pkg-descr b/net/traffic/pkg-descr new file mode 100644 index 000000000000..9020173435ad --- /dev/null +++ b/net/traffic/pkg-descr @@ -0,0 +1,5 @@ +The main goal of this program is to count bandwidth usage by IP. +It can be categorized by TCP, ICMP, etc. +It can sort data, display only specified columns, and much more. + +WWW: http://darkzone.ma.cx/resources/unix/traffic/ |