Advertisement
Guest User

Untitled

a guest
Mar 20th, 2012
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # Loopback
  2. auto lo
  3. iface lo inet loopback
  4. address 127.0.0.1
  5.  
  6. # Network interface, this should match your network
  7. auto eth1
  8. iface eth1 inet dhcp
  9. address 192.168.111.200
  10. netmask 255.255.255.0
  11. gateway 192.168.111.1
  12. broadcast 192.168.111.255
  13.  
  14. # virtual interface for clonezilla, make sure you use a "class C" IP (192.168.x.x)
  15. auto eth1:1
  16. iface eth1:1 inet static
  17. address 192.168.112.1
  18. netmask 255.255.255.0
  19.  
  20.  
  21. # BACKUP
  22. # This file describes the network interfaces available on your system
  23. # and how to activate them. For more information, see interfaces(5).
  24. #
  25. # The loopback network interface
  26. # auto lo
  27. # iface lo inet loopback
  28. #
  29. # The primary network interface
  30. # auto eth1
  31. # iface eth1 inet dhcp
  32. # address 192.168.111.254
  33. # netmask 255.255.255.0
  34. # network 192.168.111.0
  35. # broadcast 192.168.111.255
  36. #
  37. # The secondary network interface
  38. # auto eth0
  39. # iface eth0 inet static
  40. # address 192.168.111.2
  41. # netmask 255.255.255.0
  42. # network 192.168.111.2
  43. # broadcast 192.168.111.255
  44. # gateway 192.168.111.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement