On 05/26/2011 01:50 PM, Lars Noodén wrote: > On 5/24/11 3:06 PM, Matt Ryanczak wrote: >> brctl addbr br0 >> brctl addif br0 eth1 >> brctl addif br0 eth2 >> brctl addif br0 eth3 >> brctl addif br0 eth4 >> >> ifconfig br0 192.168.1.1 netmask 255.255.255.0 >> ifconfig br0 up > > How should I go about making those settings permanent? > Is that something that should go into /etc/network/interfaces?
You probably want something like this in /etc/network/interfaces: iface br0 inet static bridge_ports eth1 eth2 eth3 eth4 address 192.168.1.1 netmask 255.255.255.0 see: http://wiki.debian.org/BridgeNetworkConnections#A.2BAC8-etc.2BAC8-network.2BAC8-interfaces_and_bridging _______________________________________________ Soekris-tech mailing list [email protected] http://lists.soekris.com/mailman/listinfo/soekris-tech
