Date: Wed, 09 Apr 2003 10:00:26 -0400 From: "D.Pageau" <dpageau@infodev.ca> To: freebsd-isp@freebsd.org Subject: Re: Can't bind IP to my bridge at boot time Message-ID: <3E94277A.5010402@infodev.ca>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3E94277A.5010402>
