Advertisement
Guest User

Untitled

a guest
Jan 20th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # The bond0 network interface
  2. auto bond0
  3. allow-hotplug bond0
  4. iface bond0 inet static
  5. address <ip-address>
  6. netmask <netmask>
  7. network <network-address>
  8. broadcast <broadcast-address>
  9. gateway <gateway-address>
  10. dns-nameservers <nameserver-one> <nameserver-two>
  11. dns-search <domain-name>
  12. up /sbin/ifenslave bond0 eth0
  13. up /sbin/ifenslave bond0 eth1
  14.  
  15. # The bond1 network interface
  16. auto bond1
  17. allow-hotplug bond1
  18. iface bond1 inet static
  19. address <ip-address>
  20. netmask <netmask>
  21. network <network-address>
  22. broadcast <broadcast-address>
  23. gateway <gateway-address>
  24. dns-nameservers <nameserver-one> <nameserver-two>
  25. dns-search <domain-name>
  26. up /sbin/ifenslave bond1 eth2
  27. up /sbin/ifenslave bond1 eth3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement