From owner-freebsd-questions@FreeBSD.ORG Tue Aug 7 20:31:35 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4295116A419 for ; Tue, 7 Aug 2007 20:31:35 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by mx1.freebsd.org (Postfix) with ESMTP id 0C0F313C442 for ; Tue, 7 Aug 2007 20:31:34 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so3395078pye for ; Tue, 07 Aug 2007 13:31:34 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fWhIvooDAjLV72qLfNspcQIGHWnriSscR6rvP1YC2rukKIQ3W0ua1gwgs9DfCFkDzERevUUZ+D7Zj0hARYfgLICak9pa/YGunjkzg8WlihzBgxjI+aPu/puxnrqFbkY1oXJGLB4YH0XJeW6Lz8H6gC19x+gyVvtGfsDYAfITR10= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NE/SHUPEznrIAo+aD2YAHrmmhXW4sM4SqPjIszCcKmOFes/9FxaDeOn3qYBrr2BbPSLUyljKZcm5l87262Y8zHxUvVj1oq9N7QQAfOZQsIcqo6okEssOCdxMSm4pI6o5mY7iLuu4NYVMXOD0OoNTBAwzYgZjtPHLoAG6ATocniU= Received: by 10.35.49.4 with SMTP id b4mr12228550pyk.1186518693668; Tue, 07 Aug 2007 13:31:33 -0700 (PDT) Received: by 10.35.107.14 with HTTP; Tue, 7 Aug 2007 13:31:33 -0700 (PDT) Message-ID: <8cb6106e0708071331v47c866beh2296110c75a846c2@mail.gmail.com> Date: Tue, 7 Aug 2007 13:31:33 -0700 From: "Josh Carroll" To: Modulok In-Reply-To: <64c038660708071210w1950ccccwda1bb8464587d1de@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <64c038660708071210w1950ccccwda1bb8464587d1de@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Bizzare routing table entry. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Aug 2007 20:31:35 -0000 > root# route delete 0&0xc0a80132 > > [1] 37343 > route: writing to routing socket: No such process > delete net 0: not in table > 0xc0a80132: Command not found. > [1] + Exit 1 route delete 0 > root# route delete 0&0xc0a80132 > > [1] 37343 > route: writing to routing socket: No such process > delete net 0: not in table > 0xc0a80132: Command not found. > [1] + Exit 1 route delete 0 I've no idea whether that is a valid route or not, but the reason you're getting that funkiness is that the shell is eating the & and thinks you are sending the route process to the background. Try: route delete '0&0xc0a80132' And see if it lets you remove the entry. Josh