From owner-freebsd-stable@FreeBSD.ORG Thu Jan 26 23:01:16 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A037B16A420 for ; Thu, 26 Jan 2006 23:01:16 +0000 (GMT) (envelope-from bsd@unixforge.net) Received: from mail.sectornotfound.com (mail.sectornotfound.com [209.139.233.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47DC543D45 for ; Thu, 26 Jan 2006 23:01:16 +0000 (GMT) (envelope-from bsd@unixforge.net) Received: from hannibal.int.sectornotfound.com (hannibal.int.sectornotfound.com [192.168.98.3]) by murdock.sectornotfound.com (8.13.1/8.13.1) with ESMTP id k0QN0Rw5071731; Thu, 26 Jan 2006 15:00:27 -0800 (PST) (envelope-from bsd@unixforge.net) Received: from [192.168.3.212] (gw.activestate.com [209.17.183.249]) (authenticated bits=0) by hannibal.int.sectornotfound.com (8.13.1/8.12.10) with ESMTP id k0QN0Q3J035509; Thu, 26 Jan 2006 15:00:27 -0800 (PST) (envelope-from bsd@unixforge.net) Message-ID: <43D95479.80403@unixforge.net> Date: Thu, 26 Jan 2006 15:00:09 -0800 From: "Eli K. Breen" User-Agent: Mozilla Thunderbird 1.0 (X11/20050101) X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Kirchner References: <43D92A13.9080509@unixforge.net> <35c231bf0601261441l5d8b17a9q49c86d069180c41a@mail.gmail.com> In-Reply-To: <35c231bf0601261441l5d8b17a9q49c86d069180c41a@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: FreeBSD 6.0 - Network operations result in : not found? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jan 2006 23:01:16 -0000 Nope, however I did figure out what it was: in rc.conf: ifconfig_fxp0= "inet netmask 255.255.255.0" ifconfig_fxp0_alias0= "inet netmask 255.255.255.255" ifconfig_fxp0_alias1= "inet netmask 255.255.255.255" The above causes the problem. Changing to this solves it: ifconfig_fxp0="inet netmask 255.255.255.0" ifconfig_fxp0_alias0="inet netmask 255.255.255.255" ifconfig_fxp0_alias1="inet netmask 255.255.255.255" Unexpected to say the least. -E- David Kirchner wrote: > On 1/26/06, Eli K. Breen wrote: > >>re: FreeBSD 6.0 - Network operations result in : not found? >> >>When starting and stopping many network services under a fairly stock >>FreeBSD 6.0 box, I see the following: >> >>==================== >>(Addresses removed) >>root@mistert# /etc/rc.d/named restart >>inet netmask 255.255.255.255: not found >>inet netmask 255.255.255.255: not found >>inet netmask 255.255.255.255: not found >>inet netmask 255.255.255.255: not found >>inet netmask 255.255.255.255: not found >>inet netmask 255.255.255.255: not found >>Stopping named. >>Waiting for PIDS: 406. >>inet netmask 255.255.255.255: not found >>inet netmask 255.255.255.255: not found >>inet netmask 255.255.255.255: not found >>Starting named. >>==================== >> >>Google says nothing. >> >>Any ideas? > > > I suspect a missing quote mark or pair of quotes in /etc/rc.conf . >