# /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
auto eth2
iface eth0 inet dhcp
iface eth1 inet dhcp
iface eth2 inet dhcp

# Wireless interfaces
iface wlan0 inet dhcp
    wpa-driver nl80211
    wpa-conf /mnt/hos-state/root-overlay/etc/wpa_supplicant.conf

auto can0
iface can0 inet manual
    pre-up /sbin/ip link set $IFACE type can bitrate 250000 restart-ms 100 loopback off listen-only off triple-sampling off
    up /sbin/ifconfig $IFACE up
    down /sbin/ifconfig $IFACE down
