Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Mar 2006 01:33:42 +0400
From:      Vitaly Bogdanov <gad@gad.glazov.net>
To:        Paul Schmehl <pauls@utdallas.edu>, freebsd-net@freebsd.org, gad@glazov.net
Subject:   Re: lo0 not starting on boot
Message-ID:  <20060323213342.GA3012@gad.glazov.net>
In-Reply-To: <FAE07A50EBD6BB365C5FDD88@utd59514.utdallas.edu>
References:  <FAE07A50EBD6BB365C5FDD88@utd59514.utdallas.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060323213342.GA3012>