mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
tcpshow reads a tcpdump(1) savefile and provides a reasonably complete
decode of Ethernet, IP, ICMP, UDP and TCP headers. Boolean expressions may also be specified for packet selection. tcpshow's output is simular to Sun Solaris's snoop(1M) command for network packet capture and inspection.
This commit is contained in:
parent
118637b151
commit
6d99515f48
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=8496
32
net/tcpshow/Makefile
Normal file
32
net/tcpshow/Makefile
Normal file
@ -0,0 +1,32 @@
|
||||
# ex:ts=8
|
||||
# Ports collection makefile for: tcpshow
|
||||
# Version required: 1.0
|
||||
# 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 $
|
||||
#
|
||||
|
||||
PKGNAME= tcpshow-1.0
|
||||
CATEGORIES= net security
|
||||
MASTER_SITES= http://www.cs.berkeley.edu/~daw/mike/
|
||||
DISTFILES= tcpshow.c tcpshow.1
|
||||
|
||||
MAINTAINER= obrien@FreeBSD.org
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
MAN1= tcpshow.1
|
||||
|
||||
do-extract:
|
||||
@${MKDIR} ${WRKDIR}
|
||||
@${CP} ${DISTDIR}/tcpshow.c ${WRKDIR}
|
||||
@${CP} ${DISTDIR}/tcpshow.1 ${WRKDIR}
|
||||
|
||||
do-build:
|
||||
(cd ${WRKSRC} && ${CC} ${CFLAGS} -o tcpshow tcpshow.c)
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/tcpshow ${PREFIX}/bin
|
||||
${INSTALL_MAN} ${WRKSRC}/tcpshow.1 ${PREFIX}/man/man1
|
||||
|
||||
.include <bsd.port.mk>
|
2
net/tcpshow/distinfo
Normal file
2
net/tcpshow/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
MD5 (tcpshow.c) = c6c187faa57e1c842a73cc4e3c0ad0d8
|
||||
MD5 (tcpshow.1) = 70021150b1d24b3f0ee6f66c0df673a2
|
1
net/tcpshow/pkg-comment
Normal file
1
net/tcpshow/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
Decode tcpdump(1) output.
|
10
net/tcpshow/pkg-descr
Normal file
10
net/tcpshow/pkg-descr
Normal file
@ -0,0 +1,10 @@
|
||||
tcpshow reads a tcpdump(1) savefile and provides a reasonably complete
|
||||
decode of Ethernet, IP, ICMP, UDP and TCP headers. Boolean expressions
|
||||
may also be specified for packet selection. Data within the packets are
|
||||
displayed in ASCII.
|
||||
|
||||
tcpshow's output is simular to Sun Solaris's snoop(1M) command for
|
||||
network packet capture and inspection.
|
||||
|
||||
-- David
|
||||
(obrien@NUXI.com)
|
2
net/tcpshow/pkg-plist
Normal file
2
net/tcpshow/pkg-plist
Normal file
@ -0,0 +1,2 @@
|
||||
bin/tcpshow
|
||||
man/man1/tcpshow.1.gz
|
Loading…
Reference in New Issue
Block a user