Advertisement
Guest User

Untitled

a guest
Mar 21st, 2012
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. 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 eth0
  11. iface eth0 inet static
  12. address 192.168.1.10
  13. netmask 255.255.255.0
  14. gateway 192.168.1.1
  15. dns-search domain.local
  16. dns-domain domain.local
  17. dns-nameservers 192.168.1.10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement