Anthony Young | b62b4ca | 2011-10-26 22:29:08 -0700 | [diff] [blame] | 1 | auto lo |
| 2 | iface lo inet loopback |
| 3 | |
root | b115341 | 2012-01-19 13:28:21 -0800 | [diff] [blame] | 4 | # If eth3 is static, the order should not matter |
| 5 | # and eth0 will have the default gateway. If not, |
| 6 | # we probably want the default gateway to be |
| 7 | # what is on the public interface. Hence changed |
| 8 | # the order here. |
| 9 | auto eth3 |
| 10 | iface eth3 inet static |
| 11 | address @ETH3_IP@ |
| 12 | netmask @ETH3_NETMASK@ |
Anthony Young | b62b4ca | 2011-10-26 22:29:08 -0700 | [diff] [blame] | 13 | |
| 14 | auto eth1 |
| 15 | iface eth1 inet static |
Anthony Young | f6ef569 | 2011-10-26 23:40:46 -0700 | [diff] [blame] | 16 | address @ETH1_IP@ |
Anthony Young | b62b4ca | 2011-10-26 22:29:08 -0700 | [diff] [blame] | 17 | netmask @ETH1_NETMASK@ |
| 18 | post-up ethtool -K eth1 tx off |
Anthony Young | b62b4ca | 2011-10-26 22:29:08 -0700 | [diff] [blame] | 19 | |
| 20 | auto eth2 |
| 21 | iface eth2 inet static |
| 22 | address @ETH2_IP@ |
| 23 | netmask @ETH2_NETMASK@ |