# The loopback interface
auto lo
iface lo inet loopback

# Wired or wireless interfaces
auto eth0
iface eth0 inet static
	address 192.168.2.83
	netmask 255.255.255.0
	up route add default gw 192.168.2.81
	down route del default gw 192.168.2.81

auto eth1
iface eth1 inet static
	address 192.168.2.99
	netmask 255.255.255.0

auto br0
iface br0 inet manual

auto usb0
iface usb0 inet dhcp
