# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
auto lo
iface lo inet loopback

# Wired or wireless interfaces
auto eth0 eth1
iface eth0 inet static
	address 192.168.3.11
	netmask 255.255.255.0
	network 192.168.3.0
	gateway 192.168.3.10
iface eth1 inet static
	address 192.168.4.11
	netmask 255.255.255.0
	network 192.168.4.0

# onboard CAN
iface can0 inet static
	address 127.42.23.180
	netmask 255.255.255.0
	pre-up /etc/network/can-pre-up
