diff options
author | obrien <obrien@FreeBSD.org> | 1997-06-24 08:09:18 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-06-24 08:09:18 +0000 |
commit | 939db728b90828ae56c6abaa9b9cbce5a3d606f6 (patch) | |
tree | 0162a18e105c2f1b41602370c313418b5aaa7587 /net/icmpinfo | |
parent | 7fc38acbfc4ca2c0a3fda0792aedd6334cb79612 (diff) | |
download | FreeBSD-ports-939db728b90828ae56c6abaa9b9cbce5a3d606f6.zip FreeBSD-ports-939db728b90828ae56c6abaa9b9cbce5a3d606f6.tar.gz |
icmpinfo is a tool for looking at the icmp messages received on
the running host.
Diffstat (limited to 'net/icmpinfo')
-rw-r--r-- | net/icmpinfo/Makefile | 31 | ||||
-rw-r--r-- | net/icmpinfo/distinfo | 1 | ||||
-rw-r--r-- | net/icmpinfo/pkg-comment | 1 | ||||
-rw-r--r-- | net/icmpinfo/pkg-descr | 24 | ||||
-rw-r--r-- | net/icmpinfo/pkg-plist | 3 |
5 files changed, 60 insertions, 0 deletions
diff --git a/net/icmpinfo/Makefile b/net/icmpinfo/Makefile new file mode 100644 index 0000000..d548c35 --- /dev/null +++ b/net/icmpinfo/Makefile @@ -0,0 +1,31 @@ +# ex:ts=8 +# Ports collection makefile for: icmpinfo +# Version required: 1.11 +# Date created: Mon June 23, 1997 +# Whom: David O'Brien (obrien@FreeBSD.org) +# +# $Id$ +# + +DISTNAME= icmpinfo-1.11 +CATEGORIES= net sysutil +MASTER_SITES= ftp://hplyot.obspm.fr/net/ \ + ftp.leo.org:/pub/comp/networking/net-tools/icmpinfo/ + +MAINTAINER= obrien@NUXI.com + +ALL_TARGET= +MAN1= icmpinfo.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/icmpinfo ${PREFIX}/bin + /usr/sbin/chown root ${PREFIX}/bin + /bin/chmod 4555 ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/icmpinfo.man ${PREFIX}/man/man1/${MAN1} +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/icmpinfo + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/icmpinfo +.endif + + +.include <bsd.port.mk> diff --git a/net/icmpinfo/distinfo b/net/icmpinfo/distinfo new file mode 100644 index 0000000..b3ef4df --- /dev/null +++ b/net/icmpinfo/distinfo @@ -0,0 +1 @@ +MD5 (icmpinfo-1.11.tar.gz) = 65c3acdf2f87f9ab9aa1a055d76f8976 diff --git a/net/icmpinfo/pkg-comment b/net/icmpinfo/pkg-comment new file mode 100644 index 0000000..d0bf0e3 --- /dev/null +++ b/net/icmpinfo/pkg-comment @@ -0,0 +1 @@ +looks at the icmp messages received by the host diff --git a/net/icmpinfo/pkg-descr b/net/icmpinfo/pkg-descr new file mode 100644 index 0000000..442ee6e --- /dev/null +++ b/net/icmpinfo/pkg-descr @@ -0,0 +1,24 @@ +ICMPINFO: + + icmpinfo is a tool for looking at the icmp messages received on + the running host. + + The source code comes from an heavily modified BSD ping source. + +USAGE: + +icmpinfo o Gives info about weird packets only [mainly icmp_unreachable]. +icmpinfo -v o Gives info about all icmp packets [that includes your own + traceroutes...] except pings (icmp_echo_reply). +icmpinfo -vv o To see pings too. +icmpinfo -vvv o Will add an ascci/hexa dump of the packet. +icmpinfo -n o Avoids name queries (faster, lighter). +icmpinfo -p o Avoids port number to service name queries (faster, lighter). +icmpinfo -s o Also decode the ip_src field which is the address of the + interface receiving the packet. This option is not usefull + for hosts with a single network interface. +icmpinfo -l o Run like a daemon (forks) and output to SYSLOG. + (It now checks that you are root for that) + +-- David + obrien@NUXI.com diff --git a/net/icmpinfo/pkg-plist b/net/icmpinfo/pkg-plist new file mode 100644 index 0000000..22f2939 --- /dev/null +++ b/net/icmpinfo/pkg-plist @@ -0,0 +1,3 @@ +bin/icmpinfo +man/man1/icmpinfo.1.gz +share/doc/icmpinfo/README |