Advertisement
Guest User

Setting up a Bridge Network for KVM or Base PC in ubuntu

a guest
Sep 13th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Setting up a Bridge Network for KVM in Base PC in ubuntu
  2.  
  3. auto lo
  4. iface lo inet loopback
  5.  
  6. auto eth0
  7. iface eth0 inet manual
  8.  
  9. auto br0
  10. iface br0 inet static
  11. address 192.168.1.10
  12. network 192.168.1.0
  13. netmask 255.255.255.0
  14. broadcast 192.168.1.255
  15. gateway 192.168.1.1
  16. bridge_ports eth0
  17. bridge_stp off
  18. bridge_fd 0
  19. bridge_maxwait 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement