Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 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. # for Routing
  9. auto vmbr1
  10. iface vmbr1 inet manual
  11. post-up /etc/pve/kvm-networking.sh
  12. bridge_ports dummy0
  13. bridge_stp off
  14. bridge_fd 0
  15.  
  16.  
  17. # vmbr0: Bridging. Make sure to use only MAC adresses that were assigned to you.
  18. auto vmbr0
  19. iface vmbr0 inet static
  20. address 188.xxxxxx
  21. netmask 255.255.255.0
  22. network 188.xxxxx
  23. broadcast 188.xxxxxxx
  24. gateway 188.xxxxxxxx
  25. bridge_ports eth0
  26. bridge_stp off
  27. bridge_fd 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement