# loopback device
auto lo
iface lo inet loopback

# iface entry for eth0 will follow at the bottom. The ebee app
# might alter it 
allow-hotplug eth0

# usb0 is a bridge, handling two usb interfaces on the micro-USB
#
# if-up.d might assign an additional ip address (e.g. 192.169.125.124) 
# to usb0 on the master, allowing for master/slave communication
auto usb0
iface usb0 inet static
  address 192.168.123.123
  netmask 255.255.255.0
  broadcast 192.168.123.255

# usb2 is the connection from a slave to the master (on the "normal" USB port)
auto usb2
iface usb2 inet static
  address 192.168.125.125
  netmask 255.255.255.0
  broadcast 192.168.125.255
  gateway 192.168.125.124

auto eth0:1
iface eth0:1 inet static
  address 192.168.124.123
  netmask 255.255.255.0

iface wlan0 inet manual
iface eth0 inet dhcp  
