Advertisement
Guest User

Untitled

a guest
Aug 8th, 2019
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. auto lo
  2. iface lo inet loopback
  3.  
  4. iface enp2s0f0 inet manual
  5.  
  6. iface enp2s0f1 inet manual
  7.  
  8. iface enp3s0f0 inet manual
  9.  
  10. iface enp3s0f1 inet manual
  11.  
  12. auto bond0
  13. iface bond0 inet manual
  14. bond-slaves enp2s0f0 enp3s0f0
  15. bond-miimon 100
  16. bond-mode 802.3ad
  17. bond-xmit-hash-policy layer2+3
  18.  
  19. auto bond1
  20. iface bond1 inet manual
  21. bond-slaves enp2s0f1 enp3s0f1
  22. bond-miimon 100
  23. bond-mode 802.3ad
  24. bond-xmit-hash-policy layer2+3
  25.  
  26. auto vmbr0
  27. iface vmbr0 inet static
  28. address 10.20.1.50
  29. netmask 24
  30. gateway 10.20.1.1
  31. bridge-ports bond0
  32. bridge-stp off
  33. bridge-fd 0
  34.  
  35. auto vmbr1
  36. iface vmbr1 inet static
  37. address 10.20.1.60
  38. netmask 24
  39. bridge-ports bond1
  40. bridge-stp off
  41. bridge-fd 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement