Displaying 1 result from an estimated 1 matches for "3dbr0".
Did you mean:
3dbr
2007 Apr 18
0
[Bridge] Problem with startup script
...module-init-tools) so the iptables has to be handled a =
little differently. But what's got me is the errors popping up when trying =
to start the bridge from this script I'm testing with (syntax OK)
--------------------------------------
#!/bin/sh
BR_IP=3D"192.168.1.14"
BR_IFACE=3Dbr0
INET_IFACE=3D"eth1"
LAN_IFACE=3D"eth0"
#
brctl addbr $BR_IFACE
brctl addif $BR_IFACE $INET_IFACE
brctl addif $BR_IFACE $LAN_IFACE
ifconfig $INET_IFACE 0.0.0.0
ifconfig $LAN_IFACE 0.0.0.0
ifconfig $BR_IFACE up
--------------------------------------
which works fine with the 2.4 k...