From owner-freebsd-questions@FreeBSD.ORG Wed Sep 5 17:43:40 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 A0D3216A41B for ; Wed, 5 Sep 2007 17:43:40 +0000 (UTC) (envelope-from lists-fbsd@shadypond.com) Received: from mx-outbound01.easydns.com (mailout.easydns.com [205.210.42.54]) by mx1.freebsd.org (Postfix) with ESMTP id 78A8913C468 for ; Wed, 5 Sep 2007 17:43:40 +0000 (UTC) (envelope-from lists-fbsd@shadypond.com) Received: from slider.shadypond.com (69-12-173-117.static.humboldt1.com [69.12.173.117]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx-outbound01.easydns.com (Postfix) with ESMTP id 2FB1F7F71 for ; Wed, 5 Sep 2007 13:43:26 -0400 (EDT) Received: from slider.shadypond.com (slider.shadypond.com [192.168.1.11]) by slider.shadypond.com (postoffice) with ESMTP id BEEAFB67AC for ; Wed, 5 Sep 2007 17:43:24 +0000 (UTC) From: Pollywog To: freebsd-questions@freebsd.org Date: Wed, 5 Sep 2007 17:43:23 +0000 References: <200709050147.47555.lists-fbsd@shadypond.com> <20070905161207.GB20668@slackbox.xs4all.nl> In-Reply-To: <20070905161207.GB20668@slackbox.xs4all.nl> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709051743.24064.lists-fbsd@shadypond.com> Subject: Re: loopback won't enable automatically 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: Wed, 05 Sep 2007 17:43:40 -0000 On Wednesday 05 September 2007 16:12:07 Roland Smith wrote: > On Wed, Sep 05, 2007 at 01:47:47AM +0000, Pollywog wrote: > > I have to manually set the loopback interface after each reboot on one > > machine (it is a laptop): > > > > ifconfig lo0 127.0.0.1 netmask 255.0.0.0 > > > > Then everything is fine. > > > > I added ifconfig_lo0="127.0.0.1 netmask 255.0.0.0" to /etc/rc.conf > > but for unknown reasons it now looks like this and I still need to set > > lo0 manually after reboots: > > Have you tried setting network_interfaces? Here's the relevant part of > my rc.conf: > > # Network settings > network_interfaces="lo0 rl0 rl1" > ifconfig_lo0="inet 127.0.0.1" > ifconfig_rl0="inet 10.0.0.150/24 polling" > ifconfig_rl1="inet 192.168.0.1/24 polling" Yes, that is how I fixed the problem, but I don't know why the problem occurred in the first place, since in /etc/default/rc.conf I have: network_interfaces="auto" Setting network_interfaces="lo0 vr0" in /etc/rc.conf fixed the problem thanks > > HTH, > Roland