# interfaces(5) file used by ifup(8) and ifdown(8)

# loopback network interface
auto lo
iface lo inet loopback

# eth0 is automatically set to 192.168.9.2
# but we also run a dhclient on eth0 to
# possibly get an address from a router
# the dhcp server on eth0 is set to ignore
# requests from the SG itself

auto eth0
iface eth0 inet static
address 192.168.9.2
netmask 255.255.255.0

auto usb0
iface usb0 inet static
address 192.168.7.2
netmask 255.255.255.0

allow-hotplug ppp0
auto ppp0
iface ppp0 inet dhcp

# wireless network interface
allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-essid "TaylorLab"
wpa-psk "got me some tabanids"
