Advertisement
Guest User

Untitled

a guest
Apr 16th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 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. iface eth0 inet static
  13. address 192.168.1.6
  14. network 192.168.1.0
  15. netmask 255.255.255.0
  16. broadcast 192.168.1.255
  17. gateway 192.168.1.254
  18.  
  19. # The secondary network interface
  20. auto eth1
  21. iface eth1 inet static
  22. address 10.10.10.1
  23. network 10.10.10.0
  24. netmask 255.255.255.0
  25. broadcast 10.10.10.255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement