使用 hostdev 转发模式在 KVM 上实现 VM 之间的连接

使用 hostdev 转发模式在 KVM 上实现 VM 之间的连接

我在使用 KVM 时遇到了问题。我有一个 Agilio Netronome SmartNIC,它与 SR-IOV 技术兼容(例如我的操作系统 - ubuntu 18.04 - 和 BIOS)。

我已经使用 virsh 配置了一个网络来管理 VF 的选择:

<network>
   <name>passthrough</name> <!-- This is the name of the file you created -->
   <forward mode='hostdev' managed='yes'>
      <pf dev='enp2s0np0'/>
   </forward>
</network>

我已经为我的虚拟机声明了接口:

   <interface type='hostdev' managed='yes'>
     <source network='passthrough'>
        <address type='pci' domain='0' bus='2' slot='8' function='1'/>
     </source>
     <mac address='52:54:00:6d:90:01'/>
   </interface>

接口位于虚拟机上,具有良好的驱动程序等,但它无法加入主机或其他虚拟机。

有人知道使用 hostdev 转发模式时如何实现连接吗?

相关内容