Date: Sun, 28 Jan 2018 04:04:42 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460157 - in head/security: . p5-plog Message-ID: <201801280404.w0S44ghA031754@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Sun Jan 28 04:04:42 2018 New Revision: 460157 URL: https://svnweb.freebsd.org/changeset/ports/460157 Log: Add the plog an IP Filter log parse utility that summarizes ipmon output into a tablular form. I have been using this tool in various forms on my IP Filter firewalls for almost twenty years. Maybe someone else might find it useful too. Description from http://www.antibozo.net/ogata/webtools/: plog is a parser for the logged output of the ipmon utility that is part of the excellent IP-Filter packet-filtering and NAT package written and maintained by Darren Reed. plog translates the somewhat garbled output from ipmon into a report that aids analysis of your firewall traffic. The current version number is 0.10. Added: head/security/p5-plog/ head/security/p5-plog/Makefile (contents, props changed) head/security/p5-plog/distinfo (contents, props changed) head/security/p5-plog/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jan 28 02:45:32 2018 (r460156) +++ head/security/Makefile Sun Jan 28 04:04:42 2018 (r460157) @@ -740,6 +740,7 @@ SUBDIR += p5-dicewaregen SUBDIR += p5-openxpki SUBDIR += p5-openxpki-i18n + SUBDIR += p5-plog SUBDIR += pad SUBDIR += pam-modules SUBDIR += pam-mysql Added: head/security/p5-plog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-plog/Makefile Sun Jan 28 04:04:42 2018 (r460157) @@ -0,0 +1,28 @@ +# Created by: Cy Schubert <cy@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= plog +PORTVERSION= 0.10 +CATEGORIES= security perl5 +PKGNAMEPREFIX= p5- +MASTER_SITES= http://www.antibozo.net/ogata/webtools/ +DISTFILES= plog.pl + +MAINTAINER= cy@FreeBSD.org +COMMENT= Perl based ipfilter log reporter + +USES= perl5 shebangfix +EXTRACT_CMD= ${CP} +EXTRACT_BEFORE_ARGS= +EXTRACT_AFTER_ARGS= ${WRKSRC} +NO_BUILD= yes +SHEBANG_FILES= ${WRKSRC}/plog.pl +PLIST_FILES= bin/plog.pl + +pre-extract: + @${MKDIR} ${WRKSRC} + +do-install: + @${INSTALL_SCRIPT} ${WRKSRC}/plog.pl ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> Added: head/security/p5-plog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-plog/distinfo Sun Jan 28 04:04:42 2018 (r460157) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517109376 +SHA256 (plog.pl) = eb25970253e0726c0e471e32daab07c08ba6efde31894f57a0e0c943ccb3213a +SIZE (plog.pl) = 29165 Added: head/security/p5-plog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-plog/pkg-descr Sun Jan 28 04:04:42 2018 (r460157) @@ -0,0 +1,7 @@ +plog is a parser for the logged output of the ipmon utility that is part +of the excellent IP-Filter packet-filtering and NAT package written and +maintained by Darren Reed. plog translates the somewhat garbled output +from ipmon into a report that aids analysis of your firewall traffic. +The current version number is 0.10. + +WWW: http://www.antibozo.net/ogata/webtools/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801280404.w0S44ghA031754>