From owner-freebsd-net@FreeBSD.ORG Thu Mar 23 21:33:07 2006 Return-Path: X-Original-To: freebsd-net@freebsd.org Delivered-To: freebsd-net@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F177816A41F for ; Thu, 23 Mar 2006 21:33:07 +0000 (UTC) (envelope-from gad@gad.glazov.net) Received: from pr.glazov.net (pr.glazov.net [81.18.139.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74BD343D49 for ; Thu, 23 Mar 2006 21:33:05 +0000 (GMT) (envelope-from gad@gad.glazov.net) Received: from localhost (nat65.homenet.glazov.net [81.18.139.65]) by pr.glazov.net (8.13.5/8.13.1) with ESMTP id k2NLX3VX026491; Fri, 24 Mar 2006 01:33:04 +0400 Date: Fri, 24 Mar 2006 01:33:42 +0400 From: Vitaly Bogdanov To: Paul Schmehl , freebsd-net@freebsd.org, gad@glazov.net Message-ID: <20060323213342.GA3012@gad.glazov.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-Powered-by: FreeBSD 6.0-BETA5 X-Virus-Scanned: ClamAV version 0.88, clamav-milter version 0.87 on pr.glazov.net X-Virus-Status: Clean Cc: Subject: Re: lo0 not starting on boot X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Mar 2006 21:33:08 -0000 On Thu, Mar 23, 2006, Paul Schmehl wrote: > In 6.0 SECURITY, what starts up lo0? It's not starting by default, and > /etc/rc.d/netif has no effect on the interface. I *believe* this is the > cause of a problem I'm having with xinerama, but I can't seem to figure out > how to get the loopback to come up on boot. Any help would be appreciated. > > I already have the following in /etc/rc.conf: > network_interfaces="lo0 bge0" > ifconfig_lo0="inet 127.0.0.1" I also had such problem. There is a typo in /etc/network.subr. for _if in ${_tmplist} ; do if dhcpif $_if; then _dhcplist="${_dhcplist}${_aprefix}${_if}" [ -z "$_aprefix" ] && _aprefix=' ' elif [ -n "`_ifconfig_getargs $if`" ]; then ^^^^ - should be $_if _nodhcplist="${_nodhcplist}${_bprefix}${_if}" [ -z "$_bprefix" ] && _bprefix=' ' fi -- Vitaly