Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. GNU nano 2.2.6 File: /etc/network/interfaces
  2.  
  3. # This file describes the network interfaces available on your system
  4. # and how to activate them. For more information, see interfaces(5).
  5.  
  6. # The loopback network interface
  7. auto lo
  8. iface lo inet loopback
  9.  
  10. # The primary network interface
  11. auto eth0
  12. iface eth0 inet static
  13. address 192.168.1.125
  14. netmask 255.255.252.0
  15. dns-nameservers 192.168.1.115 192.168.1.1 8.8.8.8
  16. gateway 192.168.1.1
  17.  
  18. # This is an autoconfigured IPv6 interface
  19. iface eth0 inet6 static
  20. pre-up modprove ipv6
  21. address 2001:470:1f11:1363::4
  22. netmask 64
  23. dns-nameservers 2001:470:1f11:1363::1
  24. gateway 2001:470:1f11:1363::1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement