Kevin <[EMAIL PROTECTED]> writes: > Is there working ethernet bridging in 2.4.x? I seem to recall that > bsd briding was currently better than linux, am I remembering > correctly? I want to make a transparent firewall using eth bridging.
Just install bridge-utils from unstable and put something like this into /etc/network/interfaces: ,---- | auto br0 | iface br0 inet static | address 192.168.1.10 | netmask 255.255.255.0 | network 192.168.1.0 | broadcast 192.168.1.255 | gateway 192.168.1.1 | # bridge_ports eth0 eth1 | bridge_ports all `---- Works for me. -Hilko

