Created
June 12, 2013 16:09
-
-
Save maoy/5766762 to your computer and use it in GitHub Desktop.
network interfaces on agave011
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
# This file describes the network interfaces available on your system | |
# and how to activate them. For more information, see interfaces(5). | |
# The loopback network interface | |
auto lo | |
iface lo inet loopback | |
# The primary network interface | |
auto eth0 | |
iface eth0 inet static | |
address 135.207.223.60 | |
netmask 255.255.255.0 | |
network 135.207.223.0 | |
broadcast 135.207.223.255 | |
gateway 135.207.223.1 | |
# dns-* options are implemented by the resolvconf package, if installed | |
dns-nameservers 135.207.172.11 | |
dns-search research.att.com | |
auto eth1 | |
iface eth1 inet manual | |
auto br100 | |
iface br100 inet static | |
address 172.31.254.1 | |
netmask 255.255.255.0 | |
network 172.31.254.0 | |
broadcast 172.31.254.255 | |
bridge_ports eth1 | |
bridge_stp off | |
bridge_maxwait 0 | |
bridge_fd 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment