Advertisement
Guest User

Untitled

a guest
May 2nd, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. auto eth2
  2. iface eth2 inet manual
  3. bond-master bond0
  4.  
  5. auto eth3
  6. iface eth3 inet manual
  7. bond-master bond0
  8.  
  9. auto bond0
  10. iface bond0 inet manual
  11. # slaves eth1 eth2
  12. # lacp confuration - verified working for 12.04
  13. bond-mode 802.3ad
  14. bond-miimon 100
  15. bond-lacp-rate 1
  16. bond-slaves eth2 eth3
  17.  
  18.  
  19. auto eth4
  20. iface eth4 inet manual
  21. bond-master bond1
  22.  
  23. auto eth5
  24. iface eth5 inet manual
  25. bond-master bond1
  26.  
  27. auto bond1
  28. iface bond1 inet static
  29. # slaves eth1 eth2
  30. # lacp confuration - verified working for 12.04
  31. address 192.168.5.55
  32. netmask 255.255.255.0
  33. gateway 192.168.5.1
  34. bond-mode 802.3ad
  35. bond-miimon 100
  36. bond-lacp-rate 1
  37. bond-slaves eth4 eth5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement