Created
October 7, 2010 15:29
-
-
Save superfeedr/615279 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or | |
# /usr/share/doc/ifupdown/examples for more information. | |
# The loopback network interface | |
auto lo | |
iface lo inet loopback | |
# The primary network interface | |
# Uncomment this and configure after the system has booted for the first time | |
auto eth0 | |
iface eth0 inet static | |
address 173.45.246.49 | |
netmask 255.255.255.0 | |
gateway 173.45.227.1 | |
dns-nameservers 173.45.224.4 173.45.224.5 | |
auto eth1 | |
iface eth1 inet static | |
address 172.21.3.105 | |
netmask 255.255.0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment