Advertisement
Guest User

Untitled

a guest
Feb 14th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 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. # The primary network interface
  9. auto p4p1
  10. iface p4p1 inet dhcp
  11.  
  12. auto bond0
  13. iface bond0 inet static
  14. slaves none
  15. address 172.16.125.50
  16. netmask 255.255.255.0
  17. bond-mode 6
  18. bond-miimon 100
  19. auto p11p1
  20. iface p11p1 inet manual
  21. bond-master bond0
  22. bond-primary p11p1 p11p2
  23. auto p11p2
  24. iface p11p2 inet manual
  25. bond-master bond0
  26. bond-primary p11p1 p11p2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement