Author: Not specified Language: text
Description: Not specified Timestamp: 2012-12-30 14:32:13 -0500
View raw paste Reply
  1. miles@slowP4:~$  cat /etc/network/interfaces
  2. # This file describes the network interfaces available on your system
  3. # and how to activate them. For more information, see interfaces(5).
  4.  
  5. # The loopback network interface
  6. auto lo
  7. iface lo inet loopback
  8.  
  9. # The primary network interface
  10. auto eth1
  11. iface eth1 inet static
  12.         address 192.168.1.2
  13.         netmask 255.255.255.0
  14.         network 192.168.1.0
  15.         broadcast 192.168.1.255
  16.         gateway 192.168.1.1
  17.         # dns-* options are implemented by the resolvconf package, if installed
  18.         dns-nameservers 8.8.8.8. 8.8.8.4
  19.         dns-search kilos.org
  20.  
View raw paste Reply