Ubuntu 上的虚拟机

Ubuntu 上的虚拟机

我在以下文章的帮助下在 Ubuntu 上配置了一个虚拟机,

https://help.ubuntu.com/9.04/serverguide/C/libvirt.html

我设法完成了除让虚拟主机与真实网络通信的主要部分之外的所有部分,我猜这应该仅通过桥接接口来完成。

通过虚拟机管理器,当我尝试选择任何接口时,它会给我未桥接的接口

当我尝试桥接接口 eth0 时,如下所示

  • 自动 br0
  • iface br0 inet 静态
  • 地址 192.168.0.223
  • 网络 192.168.0.0
  • 网络掩码 255.255.255.0
  • 广播 192.168.0.255
  • 网关 192.168.0.1
  • bridge_ports eth0
  • bridge_fd 9
  • bridge_hello 2
  • bridge_maxage 12
  • bridge_stp 关闭

我无法通过此接口与网络通信,主机服务器丢失了与网络的所有通信。但是当我从 /etc/network/interfaces 远程桥接接口并按如下所示配置 eth0 时,它工作正常。

主网络接口

  • 自动 eth0
  • iface eth0 inet 静态
  • 地址 192.168.0.223
  • 网络掩码 255.255.255.0
  • 网络 192.168.0.0
  • 广播 192.168.0.255
  • dns 名称服务器 62.215.6.51
  • 网关 192.168.0.1

我如何正确设置桥接接口以及我的 /etc/netwrok/interfaces 文件是什么样的?

答案1

auto eth0
iface eth0 inet manual

auto br0
iface br0 inet static
address 192.168.0.223
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
bridge_ports eth0
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off

相关内容