Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. # network interface settings; autogenerated
  2. # Please do NOT modify this file directly, unless you know what
  3. # you're doing.
  4. #
  5. # If you want to manage part of the network configuration manually,
  6. # please utilize the 'source' or 'source-directory' directives to do
  7. # so.
  8. # PVE will preserve these directives, but will NOT its network
  9. # configuration from sourced files, so do not attempt to move any of
  10. # the PVE managed interfaces into external files!
  11.  
  12. auto lo
  13. iface lo inet loopback
  14.  
  15. iface eth0 inet manual
  16.  
  17. iface eth1 inet manual
  18.  
  19. iface eth2 inet manual
  20.  
  21. iface eth3 inet manual
  22.  
  23. auto bond0
  24. iface bond0 inet manual
  25. slaves eth0 eth2
  26. bond_miimon 100
  27. bond_mode active-backup
  28.  
  29. auto bond1
  30. iface bond1 inet static
  31. address 10.16.20.99
  32. netmask 255.255.255.0
  33. slaves eth1 eth3
  34. bond_miimon 100
  35. bond_mode active-backup
  36.  
  37. auto vmbr0
  38. iface vmbr0 inet static
  39. address 172.16.20.99
  40. netmask 255.255.255.0
  41. gateway 172.16.20.254
  42. bridge_ports bond0
  43. bridge_stp off
  44. bridge_fd 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement