# Configure Loopback
auto lo
iface lo inet loopback


# Configure eth0
auto eth0
iface eth0 inet manual
	up ifconfig eth0 up
	down ifconfig eth0 down

# Configure eth1
auto eth1
iface eth1 inet manual
	up ifconfig eth1 up
	down ifconfig eth1 down

# Configure Bridge br0 over eth0 and eth1
auto br0
iface br0 inet dhcp
#iface br0 inet static
#	bridge_ports eth0 eth1
#	address 192.168.1.238
#	broadcast 192.168.1.255
#	netmask 255.255.255.0
#	gateway 192.168.1.254

	# If used with dhcp, dns-nameservers will be appended in order to
	# obtained dns servers automatically. With all other configuration
	# methods, a resolv.conf with these entries in order will be created
	# automatically. Separate entries with spaces. 

 
