From owner-freebsd-isp@FreeBSD.ORG Wed Apr 9 06:54:01 2003 Return-Path: Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D0BA37B401 for ; Wed, 9 Apr 2003 06:54:01 -0700 (PDT) Received: from bill.infodev.ca (bill.infodev.ca [216.191.3.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85A8A43FA3 for ; Wed, 9 Apr 2003 06:53:58 -0700 (PDT) (envelope-from dpageau@infodev.ca) Received: from localhost (localhost.infodev.ca [127.0.0.1]) by bill.infodev.ca (Postfix) with ESMTP id 39D942EB33 for ; Wed, 9 Apr 2003 10:01:06 -0400 (EDT) Received: from bill.infodev.ca ([127.0.0.1]) by localhost (bill.infodev.ca [127.0.0.1:10024]) (amavisd-new) with ESMTP id 43299-09 for ; Wed, 9 Apr 2003 10:01:05 -0400 (EDT) Received: from infodev.ca (rd-03.lan [192.168.42.127]) by bill.infodev.ca (Postfix) with ESMTP id 40D292EB2E for ; Wed, 9 Apr 2003 10:01:05 -0400 (EDT) Message-ID: <3E94277A.5010402@infodev.ca> Date: Wed, 09 Apr 2003 10:00:26 -0400 From: "D.Pageau" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3) Gecko/20030312 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-isp@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Subject: Re: Can't bind IP to my bridge at boot time X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2003 13:54:01 -0000 Yes it make sense. In fact it's my workaround for now. But it's a workaround not a fix. Where should I report that "bug"? #!/bin/sh case $1 in start) /sbin/sysctl net.link.ether.bridge=1 exit 0 ;; stop) /sbin/sysctl net.link.ether.bridge=0 exit 0 ;; *) echo "usage: `basename $0` {start|stop}" >&2 exit 64 ;; esac Noah K Sematimba wrote: > probably sysctl gets initialised too early pn in the boot process. How > about simply writing a small shell script call it sysctl.sh and it has > this command in it. Put it in /usr/local/etc/rc.d and see if it works. > > I do not have 5.0 but I hope what i am saying actually makes sense. > > Noah. > > On Tue, 8 Apr 2003, D.Pageau wrote: -- Dominic Pageau