|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] Xen on Debian Etch - no dom0 network
On Fri, Mar 21, 2008 at 10:50:04AM +0200, George Karaolides wrote:
Hello,
> > Further to my previous, I have determined that it is possible to set
> > up domU's on xen with network access when using the network-bridge and
> > vif-bridge scripts.
>
> I have also found that when I run
>
> /etc/xen/scripts/network-bridge stop
>
> dom0 recovers its network access.
> Anyone else having the same problem, or any ideas as to how to
> troubleshoot further?
No problem here but I found that's easier to not use network-bridge
script[1].
You can setup bridge interface in /etc/network/interfaces and configure
xend to use network-dummy script.
"(network-script network-dummy)" in /etc/xen/xend-config.sxp
Install bridge-utils and in /etc/network/interfaces put:
auto xen-br0
iface br0 inet static
address ...
network ...
netmask ...
broadcast ...
gateway ...
# bridge setup
# eth0 -- outgoing NIC
bridge_ports eth0
bridge_stp off
bridge_fd 0
Use vif-bridge script in domU configuration normally.
Back to your problem -- run commands (while dom0 network has problems):
# brctl show
# brctl showmacs xen-br0
# ip addr ls
Post results to mailing list.
Regards,
Kupson
[1] YMMV.
--
Great software without the knowledge to run it is pretty useless.
(Linux Gazette #1)
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|