diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-03-06 02:18:51 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-03-06 02:18:51 +0000 |
commit | 736277264e9c81b8b19409bc481e4cad312733ed (patch) | |
tree | 4d8b311f3478d290680dcbbc75e3bd757a4a6811 /net/tcptrace | |
parent | e1446b6d32fabf436fa8252ad8aacd997309d68f (diff) |
A TCP dump file analysis tool.
Submitted by: fenner (he had to leave so I'm importing it)
Notes
Notes:
svn path=/head/; revision=5864
Diffstat (limited to 'net/tcptrace')
-rw-r--r-- | net/tcptrace/Makefile | 28 | ||||
-rw-r--r-- | net/tcptrace/distinfo | 1 | ||||
-rw-r--r-- | net/tcptrace/pkg-comment | 1 | ||||
-rw-r--r-- | net/tcptrace/pkg-descr | 26 | ||||
-rw-r--r-- | net/tcptrace/pkg-plist | 2 |
5 files changed, 58 insertions, 0 deletions
diff --git a/net/tcptrace/Makefile b/net/tcptrace/Makefile new file mode 100644 index 000000000000..aade6f4cbe64 --- /dev/null +++ b/net/tcptrace/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: tcptrace +# Version required: 3.2.5 +# Date created: 3 March 1997 +# Whom: fenner +# +# $Id$ +# + +DISTNAME= tcptrace-3.2.5 +CATEGORIES= net +# this site uncompresses the file AND sends it with a .gz suffix +MASTER_SITES= http://jarok.cs.ohiou.edu/software/tcptrace/files/ +MASTER_SITES= ftp://freefall.freebsd.org/pub/FreeBSD/LOCAL_PORTS/ +DISTFILES= tcptrace_3.2.5.tar.gz + +MAINTAINER= fenner@FreeBSD.ORG + +NO_WRKSUBDIR= yes +ALL_TARGET= depend tcptrace + +post-install: + ${INSTALL_PROGRAM} ${WRKSRC}/tcptrace ${PREFIX}/bin +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/tcptrace + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/tcptrace +.endif + +.include <bsd.port.mk> diff --git a/net/tcptrace/distinfo b/net/tcptrace/distinfo new file mode 100644 index 000000000000..9c40ff1a3b5c --- /dev/null +++ b/net/tcptrace/distinfo @@ -0,0 +1 @@ +MD5 (tcptrace_3.2.5.tar.gz) = 9d9c35b048ed0b0a30a9adafb98c289f diff --git a/net/tcptrace/pkg-comment b/net/tcptrace/pkg-comment new file mode 100644 index 000000000000..62b237093b09 --- /dev/null +++ b/net/tcptrace/pkg-comment @@ -0,0 +1 @@ +a TCP dump file analysis tool diff --git a/net/tcptrace/pkg-descr b/net/tcptrace/pkg-descr new file mode 100644 index 000000000000..e86a3f531d18 --- /dev/null +++ b/net/tcptrace/pkg-descr @@ -0,0 +1,26 @@ +tcptrace a TCP dump file analysis tool written by Shawn Ostermann +at Ohio University. It is NOT a packet capture program. It reads +output dump files in the formats of several popular packet capturing +programs: tcpdump, snoop, etherpeek, and netm + +For each connection, it keeps track of elapsed time, bytes/segments +sent and received, retransmissions, round trip times, window +advertisements, throughput, etc. Its output format ranges from +Simple to Long to Very Detailed. + + +It can also produce three different types of graphs, as follows: + + Time Sequence Graph + This is the format that Tim Shepard started using at MIT some + years ago. It shows segments sent and ACKs returned as a + function of time. + Instantaneous Throughput + This format shows the instantaneous (averaged over a few + segments) throughput of the connection as a function of time. + Round Trip Times + This format shows the round trip times for the ACKs as a + function of time. + +The graphs produced are viewable only by Tim Shepard's wonderful +xplot program. diff --git a/net/tcptrace/pkg-plist b/net/tcptrace/pkg-plist new file mode 100644 index 000000000000..df6fdd2ae2fd --- /dev/null +++ b/net/tcptrace/pkg-plist @@ -0,0 +1,2 @@ +bin/tcptrace +share/doc/tcptrace/README |