Advertisement
Guest User

Untitled

a guest
Jul 30th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. /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.  
  13. iface eth0 inet static
  14.  
  15. address 192.168.1.3
  16. netmask 255.255.255.0
  17. network 192.168.1.0
  18. broadcast 192.168.1.255
  19. gateway 192.168.1.1
  20.  
  21. /etc/resolv.conf:
  22.  
  23. nameserver 192.168.1.3
  24.  
  25. /etc/hosts:
  26.  
  27. 127.0.0.1 localhost
  28. 127.0.1.1 ITE-Sever
  29.  
  30. # The following lines are desirable for IPv6 capable hosts
  31. ::1 ip6-localhost ip6-loopback
  32. fe00::0 ip6-localnet
  33. ff00::0 ip6-mcastprefix
  34. ff02::1 ip6-allnodes
  35. ff02::2 ip6-allrouters
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement