From owner-freebsd-questions@FreeBSD.ORG Sat Nov 11 07:35:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5496616A403 for ; Sat, 11 Nov 2006 07:35:19 +0000 (UTC) (envelope-from cdtelting-ml@comcast.net) Received: from mta9.adelphia.net (mta9.adelphia.net [68.168.78.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0656643D49 for ; Sat, 11 Nov 2006 07:35:18 +0000 (GMT) (envelope-from cdtelting-ml@comcast.net) Received: from mail.local ([76.168.219.28]) by mta9.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20061111073514.IRTI10944.mta9.adelphia.net@mail.local> for ; Sat, 11 Nov 2006 02:35:14 -0500 Received: from [192.168.1.63] (unknown [192.168.1.63]) by mail.local (Postfix) with ESMTP id C9B61C for ; Fri, 10 Nov 2006 23:35:13 -0800 (PST) Message-ID: <45557D46.4070609@comcast.net> Date: Fri, 10 Nov 2006 23:35:34 -0800 From: Chris User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: How can I disable the lookback device? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Nov 2006 07:35:19 -0000 First of all the motivation of this is my tftp problem with the address 0.0.0.0. Trying to tftp from the same box doesn't reproduce the problem, whatever is happening gets cleaned up in the loopback device. So I want to disable lo0 and route my local IP address over the local net and hopefully the router will deliver the packets back to me. So how can I disable the loopback device manually? I'd prefer to take it down manually when I'm testing rather than doing something in rc.conf and be able to bring it back up. ipconfig lo0 down but the route still existed according to: netstat -r so I did.. route delete 192.168.1.1 but then I tried to create a new route... route add 192.168.1.1 -interface em0 but according to.. netstat -r it instead rebound to lo0... ? Chris