Advertisement
Guest User

Untitled

a guest
May 16th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. # This file describes the network interfaces available on your system
  2. # and how to activate them. For more information, see interfaces(5).
  3.  
  4. # The loopback network interface
  5. auto lo
  6. iface lo inet loopback
  7.  
  8. # The primary network interface
  9. allow-hotplug eth0
  10. iface eth0 inet static
  11. address 192.168.1.4
  12. netmask 255.255.255.0
  13. network 192.168.1.0
  14. broadcast 192.168.1.255
  15. gateway 192.168.1.1
  16. dns-nameservers 192.168.1.1 127.0.0.1
  17. dns-search simplewebhosting.us
  18. # dns-* options are implemented by the resolvconf package, if installed
  19.  
  20.  
  21.  
  22. # The primary network interface
  23. allow-hotplug eth1
  24. iface eth1 inet static
  25. address 192.168.1.3
  26. netmask 255.255.255.0
  27. network 192.168.1.0
  28. broadcast 192.168.1.255
  29. gateway 192.168.1.1
  30. dns-nameservers 192.168.1.1 127.0.0.1
  31. dns-search simplewebhosting.us
  32. # dns-* options are implemented by the resolvconf package, if installed
  33.  
  34. # The primary network interface
  35. allow-hotplug eth2
  36. iface eth2 inet static
  37. address 192.168.1.6
  38. netmask 255.255.255.0
  39. network 192.168.1.0
  40. broadcast 192.168.1.255
  41. gateway 192.168.1.1
  42. dns-nameservers 192.168.1.1 127.0.0.1
  43. dns-search simplewebhosting.us
  44. # dns-* options are implemented by the resolvconf package, if installed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement