|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] Possible?: dom0 and dom1 in network A using eth0, dom2
On Mon, 29 Jan 2007, Carlo Granisso wrote:
How to do this?
I have a problem: two nics, two bridge but after boot, domU can see only
second bridge. Why? Any site where I can find help?
I use Xen 3.0.3 and Linux as OS.
I want to have:
- dom0 in network A using eth0
- dom1 in network A using eth0
- dom2 in network B using eth1
create the file /etc/xen/two-bridges (make sure you make it executable)
the contents should look something like this:
#!/bin/sh
/etc/xen/scripts/network-bridge $@ vifnum=0
/etc/xen/scripts/network-bridge $@ vifnum=1
(the $@ will be replaced by either start or stop)
then in the xm config files (usually /etc/xen/DomUname):
vif=['bridge=xenbr0'] #(to put it in the bridge with eth0)
vif=['bridge=xenbr1'] #(to put it in the bridge with eth1)
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|