auto lo
iface lo inet loopback

auto eth0
# Example of static
iface eth0 inet static
	address 192.168.2.127
	netmask 255.255.255.0
	network 192.168.2.0
	gateway 192.168.2.1
# Example of dhcp
# iface eth0 inet dhcp

auto eth1
iface eth1 inet static
	address 192.168.3.127
	netmask 255.255.255.0
	network 192.168.3.0
	gateway 192.168.3.1

#iface eth1 inet dhcp

# Wireless interfaces
#
# auto wlan0
# iface wlan0 inet dhcp
#
# Example of an unencrypted (no WEP or WPA) wireless connection
# that connects to any available access point:
#	wireless_mode managed
#	wireless_essid any
#	wireless_key any
#
# Example of WEP
# 	wireless_mode managed
# 	wireless_essid ap_ssid
# 	wireless_key wep_key
#
# Exmaple of WPA
# 	wpa-mode managed
# 	wpa-essid ap_ssid
# 	wpa-psk wpa_key


# 3G PPP interface
#
# Example of a 3G ppp connection
#
# auto 3g
# iface 3g inet ppp
#   provider 3g
