blob: 8fa884008ed79e5432a54271d0bdc70d47009715 [file] [log] [blame]
Anthony Youngb62b4ca2011-10-26 22:29:08 -07001auto lo
2iface lo inet loopback
3
4auto eth0
5iface eth0 inet dhcp
6
7auto eth1
8iface eth1 inet static
Anthony Young876e4b92011-10-26 23:29:49 -07009 # A host-only ip that let's the interface come up, otherwise unused
10 address 10.255.255.255
Anthony Youngb62b4ca2011-10-26 22:29:08 -070011 netmask @ETH1_NETMASK@
Anthony Young876e4b92011-10-26 23:29:49 -070012up ifconfig eth1 up
Anthony Youngb62b4ca2011-10-26 22:29:08 -070013post-up ethtool -K eth1 tx off
Anthony Youngb62b4ca2011-10-26 22:29:08 -070014
15auto eth2
16iface eth2 inet static
17 address @ETH2_IP@
18 netmask @ETH2_NETMASK@
19
20auto eth3
21iface eth3 inet static
22 address @ETH3_IP@
23 netmask @ETH3_NETMASK@