auto lo
iface lo inet loopback

# The primary network interface
auto eth1
iface eth1 inet static
address 10.1.10.201
netmask 255.255.255.0

auto eth1:1
iface eth1:1 inet static
address 10.1.2.1
netmask 255.255.255.0
# Example to keep MAC address between reboots
#hwaddress ether DE:AD:BE:EF:CA:FE

# WiFi Example
#auto wlan0
#iface wlan0 inet dhcp
#pre-up /sbin/iwconfig wlan0 essid ECS-WLAN
#    wpa-ssid "essid"
#    wpa-psk  "password"

auto wlan1
iface wlan1 inet static
address 10.1.1.6
netmask 255.255.255.0
gateway 10.1.1.1
dns-nameservers 10.1.1.1 8.8.8.8 8.8.4.4
pre-up /sbin/iwconfig wlan1 essid glacsweb-cafe
pre-up wpa_supplicant -B -Dwext -iwlan1 -c /etc/wpa_supplicant/wpa_supplicant.conf

