作为路由器托管并连接 KVM 虚拟机

作为路由器托管并连接 KVM 虚拟机

我想将我的主机配置为路由器,并将每个虚拟机配置为连接到不同网络中的主机路由器。我正在使用 KVM 在我的 debian 主机上运行虚拟机。有没有办法做到这一点?

答案1

您可以使用单个仅主机网络并为连接的访客配置 VLAN,以便它们不会互相看到(但我对此并不熟悉),或者为每个访客创建单独的仅主机网络(使用virsh net-define ...virsh net-edit ...)像这样:

<network>
  <name>private0</name>
  <uuid>a2422899-d29b-9055-4bf7-1995fd6af4b8</uuid>
  <bridge name='private0' stp='off' delay='0'/>
  <mac address='52:54:00:29:c3:aa'/>
</network>

(定义时省略 uuid 和 mac。)

相关内容