Advertisement
Guest User

Untitled

a guest
Oct 18th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # The loopback network interface
  2. auto lo
  3. iface lo inet loopback
  4.  
  5. # The primary network interface
  6. auto eth0
  7. iface eth0 inet manual
  8. bond-master bond0
  9.  
  10. auto eth1
  11. iface eth1 inet manual
  12. bond-master bond0
  13.  
  14. auto eth2
  15. iface eth2 inet manual
  16. bond-master bond0
  17.  
  18. auto eth3
  19. iface eth3 inet manual
  20. bond-master bond0
  21.  
  22. auto bond0
  23. iface bond0 inet manual
  24. bond-mode 802.3ad
  25. bond-miimon 100
  26. bond-lacp-rate 1
  27. bond-slaves eth0 eth1 eth2 eth3
  28.  
  29.  
  30. auto br0
  31. iface br0 inet static
  32. address 192.168.0.2
  33. network 192.168.0.0
  34. netmask 255.255.255.0
  35. broadcast 192.168.0.255
  36. gateway 192.168.0.1
  37. dns-nameservers 192.168.0.1
  38. bridge_ports bond0
  39. bridge_stp off
  40. bridge_fd 0
  41. bridge_maxwait 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement