im running xen4, my dom0 is debian6

It has a single nic and im having hard problems creating a second bridge to have two virtual nics inside my guest.

i tought on using dummy dev, but i had read somewhere than its a xen3 option and it might be deprecated

link|improve this question
feedback

migrated from stackoverflow.com Sep 23 '11 at 5:34

This question came from our site for professional and enthusiast programmers.

1 Answer

You can use a dummy dev as a internal bridge.

auto dummy0
iface dummy0 inet manual
re-up ifconfig $IFACE up
post-down ifconfig $IFACE down

auto xenbrdummy
iface xenbrdummy inet manual
bridge_ports dummy0
bridge_maxwait 0
bridge_stp off

Reference is here: http://wiki.xensource.com/xenwiki/HostConfiguration/Networking

link|improve this answer
feedback

Your Answer

 
or
required, but never shown