diff options
author | rpaulo <rpaulo> | 2005-09-29 18:02:20 +0000 |
---|---|---|
committer | rpaulo <rpaulo> | 2005-09-29 18:02:20 +0000 |
commit | 61b7b308bb8f0372175b995caec71a3d9f48ddf7 (patch) | |
tree | 9d1c23c844e94aaabb88c838660c3b53ab7a0198 | |
parent | e5d2275374ec03e695b631021e1d76d6b554dca0 (diff) | |
download | pkgsrc-61b7b308bb8f0372175b995caec71a3d9f48ddf7.tar.gz |
scamper is a program that conducts traceroute to large numbers of IPv4
and IPv6 addresses in parallel to fill a specified packets-per-second rate.
scamper can do ICMP based Path MTU discovery. scamper starts with the
outgoing interface's MTU and discovers the location of PMTU bottlenecks.
Recent revision of scamper do a PMTU search when an ICMP fragmentation
required message is not returned to establish the PMTU to the next point
in the network, followed by a TTL limited search to infer the hop
where failure appears to occur.
Reviewed by Johnny Lam.
-rw-r--r-- | net/scamper/DESCR | 9 | ||||
-rw-r--r-- | net/scamper/Makefile | 20 | ||||
-rw-r--r-- | net/scamper/PLIST | 2 | ||||
-rw-r--r-- | net/scamper/distinfo | 5 |
4 files changed, 36 insertions, 0 deletions
diff --git a/net/scamper/DESCR b/net/scamper/DESCR new file mode 100644 index 00000000000..36b16fc3408 --- /dev/null +++ b/net/scamper/DESCR @@ -0,0 +1,9 @@ +scamper is a program that conducts traceroute to large numbers of IPv4 +and IPv6 addresses in parallel to fill a specified packets-per-second rate. + +scamper can do ICMP based Path MTU discovery. scamper starts with the +outgoing interface's MTU and discovers the location of PMTU bottlenecks. +Recent revision of scamper do a PMTU search when an ICMP fragmentation +required message is not returned to establish the PMTU to the next point +in the network, followed by a TTL limited search to infer the hop +where failure appears to occur. diff --git a/net/scamper/Makefile b/net/scamper/Makefile new file mode 100644 index 00000000000..926170326ec --- /dev/null +++ b/net/scamper/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/09/29 18:02:20 rpaulo Exp $ +# + +DISTNAME= scamper-cvs-20050529 +PKGNAME= ${DISTNAME:S/-cvs//} +CATEGORIES= net +MASTER_SITES= http://www.wand.net.nz/scamper/ + +MAINTAINER= rpaulo@NetBSD.org +HOMEPAGE= http://www.wand.net.nz/scamper/ +COMMENT= Dual-stack traceroute software + +INSTALLATION_DIRS=bin + +MAKE_FLAGS= WITH_DEBUG=yes # recommended by the the software developer + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/scamper ${PREFIX}/bin + +.include "../../mk/bsd.pkg.mk" diff --git a/net/scamper/PLIST b/net/scamper/PLIST new file mode 100644 index 00000000000..2b287b5031d --- /dev/null +++ b/net/scamper/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/09/29 18:02:20 rpaulo Exp $ +bin/scamper diff --git a/net/scamper/distinfo b/net/scamper/distinfo new file mode 100644 index 00000000000..1aa32e5fb21 --- /dev/null +++ b/net/scamper/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/09/29 18:02:20 rpaulo Exp $ + +SHA1 (scamper-cvs-20050529.tar.gz) = 7b367e74bcaddc63f921b5fbb762e1f3e30593a4 +RMD160 (scamper-cvs-20050529.tar.gz) = 517b74365d6e8982589523d44a576e562c0a7457 +Size (scamper-cvs-20050529.tar.gz) = 152677 bytes |