Advertisement
Guest User

Untitled

a guest
Jun 11th, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 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. # prep for bond0
  9. iface eth0 inet manual
  10. iface eth1 inet manual
  11. iface eth2 inet manual
  12. auto bond0
  13.  
  14. #
  15. iface bond0 inet static
  16. bond_miimon 100
  17. bond_mode balance-rr
  18. address 192.168.17.4
  19. netmask 255.255.255.0
  20. gateway 192.168.17.1
  21. up ifenslave bond0 eth0 eth1 eth2
  22. down ifenslave -d bond0 eth0 eth1 eth2
  23.  
  24. #
  25. #auto bond0:1
  26. #iface bond0:1 inet static
  27. #address 192.168.17.5
  28. #netmask 255.255.255.0
  29. #broadcast 192.168.17.255
  30.  
  31. #
  32. #auto bond0:2
  33. #iface bond0:2 inet static
  34. #address 192.168.17.6
  35. #netmask 255.255.255.0
  36. #broadcast 192.168.17.255
  37.  
  38. #
  39. dns-nameservers 8.8.8.8 8.8.4.4
  40. # dns-search
  41. # dns-* options are implemented by the resolvconf package, if installed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement