diff options
author | obrien <obrien@FreeBSD.org> | 1997-11-05 19:39:42 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-11-05 19:39:42 +0800 |
commit | 54adb6565b1227f8a282b7f6037a5d201bf46cae (patch) | |
tree | 5145ea7152988a8bac6eebc8e3c4f1a856057210 /net | |
parent | f07f90f7da4a7999ef7ec62a7d99ba3a6180075b (diff) | |
download | freebsd-ports-gnome-54adb6565b1227f8a282b7f6037a5d201bf46cae.tar.gz freebsd-ports-gnome-54adb6565b1227f8a282b7f6037a5d201bf46cae.tar.zst freebsd-ports-gnome-54adb6565b1227f8a282b7f6037a5d201bf46cae.zip |
clog is a program that logs all connections on your subnet. It uses the
pcap(3) packet capture library to log any SYN packets to a logfile. The
output format is designed to be very easily parsed by various text
processing tools.
Diffstat (limited to 'net')
-rw-r--r-- | net/clog/Makefile | 28 | ||||
-rw-r--r-- | net/clog/distinfo | 1 | ||||
-rw-r--r-- | net/clog/pkg-comment | 1 | ||||
-rw-r--r-- | net/clog/pkg-descr | 8 | ||||
-rw-r--r-- | net/clog/pkg-plist | 2 |
5 files changed, 40 insertions, 0 deletions
diff --git a/net/clog/Makefile b/net/clog/Makefile new file mode 100644 index 000000000000..173f17d30393 --- /dev/null +++ b/net/clog/Makefile @@ -0,0 +1,28 @@ +# ex:ts=8 +# Ports collection makefile for: clog +# Version required: 1.6 +# Date created: Tue Nov 04, 1997 +# Whom: David O'Brien (obrien@NUXI.com) +# +# $Id: Makefile,v 1.2 1997/01/25 18:08:40 obrien Exp $ +# + +DISTNAME= clog-1.6 +CATEGORIES= net security +MASTER_SITES= ftp://ftp.saturn.net/pub/users/brian/clog/ \ + ftp://ftp.cso.uiuc.edu/pub/security/coast/unix/clog/ \ + ftp://ftp.auscert.org.au/pub/coast/mirrors/ftp.saturn.net/clog/ \ + ftp://ftp.ox.ac.uk/pub/comp/security/COAST/mirrors/ftp.saturn.net/clog/ \ + ftp://ftp.rediris.es/mirror/coast/tools/unix/clog/ + +MAINTAINER= obrien@FreeBSD.org + +WRKSRC= ${WRKDIR}/clog +ALL_TARGET= freebsd +MAN8= clog.8 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/clog ${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/clog.8 ${PREFIX}/man/man8 + +.include <bsd.port.mk> diff --git a/net/clog/distinfo b/net/clog/distinfo new file mode 100644 index 000000000000..e8722397edba --- /dev/null +++ b/net/clog/distinfo @@ -0,0 +1 @@ +MD5 (clog-1.6.tar.gz) = f8732ed25def0e4c56d8d5b8007b6074 diff --git a/net/clog/pkg-comment b/net/clog/pkg-comment new file mode 100644 index 000000000000..39d0db33844d --- /dev/null +++ b/net/clog/pkg-comment @@ -0,0 +1 @@ +tcp connection logger daemon diff --git a/net/clog/pkg-descr b/net/clog/pkg-descr new file mode 100644 index 000000000000..294c3921f98c --- /dev/null +++ b/net/clog/pkg-descr @@ -0,0 +1,8 @@ +clog is a program that logs all connections on your subnet. It uses the +pcap(3) packet capture library to log any SYN packets to a logfile. The +output format is designed to be very easily parsed by various text +processing tools. + + +-- David + (obrien@NUXI.com) diff --git a/net/clog/pkg-plist b/net/clog/pkg-plist new file mode 100644 index 000000000000..c456a0581e6a --- /dev/null +++ b/net/clog/pkg-plist @@ -0,0 +1,2 @@ +sbin/clog +man/man8/clog.8.gz |