libvirt 下的 Windows 10 guest 无法使用网络

libvirt 下的 Windows 10 guest 无法使用网络

我安装了 libvirt (libvirtd 3.0.0),并在 kvm 下安装了多个来宾虚拟机。我在主机上使用桥接网络,以允许它们完全访问网络。主机操作系统是 Debian (stretch)。

auto br0
iface br0 inet static
    bridge_ports eno1
    bridge_stp on
    bridge_waitport 0
    bridge_maxwait 0
    address [redacted]
    netmask 255.255.255.0
    gateway [redacted]
    dns-nameservers [redacted]

我刚刚安装了 Windows 10 Pro VM(版本 1809,内部版本 17763.379),它似乎无法访问网络。 Windows 界面故障排除程序显示“硬件”没有问题,但无法 ping 默认网关(与主机操作系统相同的子网)。

主机和我的其他来宾都是双栈的,但目前我仅尝试使用 IPv4 配置 Windows 来宾。

我的虚拟机的网络接口配置如下:

    <interface type='bridge'>
      <mac address='52:54:00:f7:46:de'/>
      <source bridge='br0'/>
      <model type='rtl8139'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
    </interface>
    <interface type='bridge'>
      <mac address='52:54:00:f9:0c:28'/>
      <source bridge='br1'/>
      <model type='rtl8139'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
    </interface>

操作系统驱动程序与 VM 的 XML 定义中列出的驱动程序相匹配。

我应该看什么?

相关内容