向虚拟机添加第二座桥

向虚拟机添加第二座桥

我们有一台 ubuntu-12.04 主机,其中运行着另一台 ubuntu-12.04 虚拟机,该虚拟机具有 kvm 虚拟化和 eth4 上的桥接网络接口。此网络允许虚拟机访问外部世界。我想为虚拟机添加另一个网桥 (br0),以便它可以访问本地网络。但每次我尝试这样做时,第一个网桥都会以某种方式“崩溃”,因为我无法通过 ssh 访问虚拟机,甚至无法 ping 它。

以下是/etc/network/interfaces我尝试运行的主机上的文件

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto eth4
iface eth4 inet manual

auto br4
iface br4 inet static
     address 10.52.4.247
     netmask 255.255.255.0
     gateway 10.52.4.1
     dns-nameservers 10.27.3.2 10.25.3.2
     broadcast 10.52.4.255
     bridge_ports eth4
     bridge_stp off
     bridge_maxwait 5
     metric 0

# Local network
auto eth0
iface eth0 inet manual

auto br0
iface br0 inet static
    address 192.168.0.21
    netmask 255.255.255.0
    broadcast 192.168.0.255
    bridge_ports eth0
    bridge_stp off
    bridge_maxwait 5
    metric 0

我这里遗漏了什么?非常感谢您的帮助!

相关内容