From owner-freebsd-stable Fri Jun 15 22:21:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from topperwein.dyndns.org (acs-24-154-28-172.zoominternet.net [24.154.28.172]) by hub.freebsd.org (Postfix) with ESMTP id 885DB37B409 for ; Fri, 15 Jun 2001 22:21:22 -0700 (PDT) (envelope-from behanna@zbzoom.net) Received: from topperwein.dyndns.org (topperwein.dyndns.org [192.168.168.10]) by topperwein.dyndns.org (8.11.4/8.11.4) with ESMTP id f5G5MH888337 for ; Sat, 16 Jun 2001 01:22:17 -0400 (EDT) (envelope-from behanna@zbzoom.net) Date: Sat, 16 Jun 2001 01:22:17 -0400 (EDT) From: Chris BeHanna Reply-To: Chris BeHanna To: FreeBSD-Stable Subject: Re: Benchmarking CVSup In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 15 Jun 2001, Jens Haeusser wrote: > Do any of you have any fancy tricks/shell scripts/whatnot for > benchmarking the various CVSup sites? My simple ping and ftp tests > don't seem to reflect the actual speed of a CVSup session on that > host. Try traceroute(8) instead, and pick the one that's the fewest hops Here's a little script to work through them all. With a modicum of effort, it could be made to just print the hopcounts, but I wasn't that enthusiastic the night I wrote it. #!/bin/sh for i in 1 2 3 4 5 6 7 8 9 10 11 do echo " " echo "==== trying cvsup${i}.freebsd.org ======" echo "traceroute cvsup${i}.freebsd.org" traceroute cvsup${i}.freebsd.org echo " " done 2>&1 | tee mirrors.out -- Chris BeHanna Software Engineer (Remove "bogus" before responding.) behanna@bogus.zbzoom.net I was raised by a pack of wild corn dogs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message