Advertisement
HeroCC

Untitled

Feb 11th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. #eth0 is manually configured, and slave to the "bond0" bonded NIC
  2. auto eth0
  3. iface eth0 inet manual
  4. bond-master bond0
  5. bond-primary eth0
  6.  
  7. #eth1 ditto, thus creating a 2-link bond.
  8. auto eth1
  9. iface eth1 inet manual
  10. bond-master bond0
  11.  
  12. # bond0 is the bonding NIC and can be used like any other normal NIC.
  13. # bond0 is configured using static network information.
  14. auto bond0
  15. iface bond0 inet static
  16. address 192.168.1.10
  17. gateway 192.168.1.1
  18. netmask 255.255.255.0
  19. bond-mode active-backup
  20. bond-miimon 100
  21. bond-slaves none
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement