|
|
|
|
|
|
|
|
|
|
xen-users
[Xen-users] xen 3.2 change in bridge behavior is causing problems
i have recently upgraded one of my xen servers from running ubunty
7.10 (gutsy) to ubuntu 8.04 (hardy)
to test xen 3.2 prior to upgrading the rest of the xen 3.1 servers.
my servers have 2 interfaces
eth0 is attached to the lan
eth1 is attached to the wan
on xen 3.1 to create the bridges for domUs i would run the following script
#!/bin/sh
dir=$(dirname "$0")
"$dir/network-bridge" "$@" vifnum=0 bridge=xenbr0 netdev=eth0
"$dir/network-bridge" "$@" vifnum=1 bridge=xenbr1 netdev=eth1
which created a seperate bridge interfaces
xenbr0 and xenbr1 apart from the eth0 and eth1
the domU was able to access the eth1 interface via xenbr1
even if the dom0s eth1 was not up.
but since switching to 3.2 i have heard the behavior has cahnged and
xenbr are no longer created
and that the interface name equals the bridge name. so i have
modified my script to the following
#!/bin/sh
dir=$(dirname "$0")
"$dir/network-bridge" "$@" vifnum=0 bridge=eth0 netdev=eth0
"$dir/network-bridge" "$@" vifnum=1 bridge=eth1 netdev=eth1
domUs have no problem accessing the LAN (eth0),
but i have been having lots of problems with the domUs accessing the WAN (eth1)
what i have come to realize is that since i don't set eth1 to up on
the dom0 (don't want to be able to access the xen server itself from
the WAN)
eth1 remains in the down state.
this wasn't a problem when the bridge interface was seperate,
but now that eth1 is the bridge interface as well as the eth1
interface for dom0,
i have to specifically call "ifconfig eth1 up" on boot to allow my
domUs to access eth1
is there some way to avoid this?
is there some way to have xenbr0 and xenbr1 seperate from eth0 and eth1?
TIA,
Tomoki Taniguchi
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-users] xen 3.2 change in bridge behavior is causing problems,
Tomoki Taniguchi <=
|
|
|
|
|