# The loopback interface # automatically added when upgrading auto lo iface lo inet loopback # This is the public facing interface and should be connected to the # Internet service provider auto eth0 iface eth0 inet dhcp # This is the private facing interface and should NEVER be connected # to the Internet service provider auto eth1 iface eth1 inet static address 192.168.1.1 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 up route add -net 192.168.1.0/24 dev eth1 # End