Xen Dom0和DomU在Ubuntu / Debian上的不同子网中

时间:2012-02-11 16:02:47

标签: networking ubuntu debian xen subnet

ISP给了我两个IP配置:

10.0.1.5 / 255.255.255.0 / gw 10.0.1.1
10.0.9.8 / 255.255.255.0 / gw 10.0.9.1

我已经使用网桥设置 Dom0 10.0.1.5

有配置:

auto lo
iface lo inet loopback
auto eth0
auto br0

iface br0 inet static
    address 10.0.1.5
    netmask 255.255.255.0
    gateway 10.0.1.1
    bridge_ports eth0
    bridge_stp no

VM配置:

...
    vif = [ 'type=ioemu, bridge=br0' ]
...

因此,当我启动并配置我的VM到10.0.9.8 - 无法从VM访问网络时。

我知道10.0.9.1直接通过switch与我的10.0.1.5连接。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

将进行以下工作:

ip route add default via 10.0.1.5

就像在https://github.com/mcclurmc/devstack/blob/xcp-toolstack/tools/xcp-toolstack/build_domU.sh

中完成的那样