From owner-freebsd-stable@FreeBSD.ORG Tue Jun 28 17:30:23 2005 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42A6016A43A for ; Tue, 28 Jun 2005 17:30:23 +0000 (GMT) (envelope-from gmulder@infotechfl.com) Received: from pigeon.infotechfl.com (mailrelay.infotechfl.com [209.251.147.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED52C43D4C for ; Tue, 28 Jun 2005 17:30:22 +0000 (GMT) (envelope-from gmulder@infotechfl.com) Received: from [172.20.0.75] (gmulder.infotechfl.com [172.20.0.75]) by pigeon.infotechfl.com (8.11.6/8.11.6) with ESMTP id j5SHUL029138 for ; Tue, 28 Jun 2005 13:30:21 -0400 Message-ID: <42C18960.10608@infotechfl.com> Date: Tue, 28 Jun 2005 13:31:12 -0400 From: Gary Mu1der User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: stable@freebsd.org References: <1119950428.22027.1.camel@tarkhil> <42C17281.6010102@infotechfl.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: On recent crashes X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jun 2005 17:30:23 -0000 Vivek Khera wrote: >> If you have a spare server you don't mind crashing, can you try >> running 20-60 instances of the following script: >> >> #!/bin/sh >> >> while : >> do >> arp -d >/dev/null 2>&1 >> ping -c 1 -t 1 >/dev/null 2>&1 >> done >> > > all copies pinging the same remote IP or different remote IP's? Different, as the FreeBSD systems I was pinging were rate-limiting the pings. Here's excatly what I'm doing: d5# cat arping.sh #!/bin/sh while : do arp -d 192.168.4.$1 >/dev/null 2>&1; ping -c 1 -t 1 192.168.4.$1 >/dev/null 2>&1; done # for X in 13 4 101 44 13 4 101 44 13 4 101 44 13 4 101 44 13 4 101 44 13 4 101 44 13 4 101 44 13 4 101 44; do ./arping.sh $X & done Gary