Libvirt Domain 结构体中配置网卡和子网
要配置网卡和子网,需要在 Domain 结构体中添加一个或多个接口(Interface)元素。每个接口元素都包含一个 MAC 地址和一个或多个网络地址(IP 地址)。
以下是一个示例 Domain 结构体,其中包含两个接口元素:
<domain type='kvm'>
<name>example-vm</name>
<memory unit='KiB'>524288</memory>
<vcpu placement='static'>1</vcpu>
<os>
<type arch='x86_64' machine='pc-i440fx-2.9'>hvm</type>
<boot dev='hd'/>
</os>
<devices>
<interface type='network'>
<mac address='52:54:00:12:34:56'/>
<source network='default'/>
<model type='virtio'/>
</interface>
<interface type='network'>
<mac address='52:54:00:12:34:57'/>
<source network='internal'/>
<model type='virtio'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
</devices>
</domain>
在这个示例中,第一个接口使用默认网络('default'),第二个接口使用名为'internal'的自定义网络。第二个接口还包含一个 PCI 地址(address 元素),用于在虚拟机中显式地指定接口的位置。
要配置子网,可以在 libvirt 中创建自定义网络,并将其分配给虚拟机的接口。有关如何创建自定义网络的更多信息,请参阅 libvirt 文档。
原文地址: https://www.cveoy.top/t/topic/f0IS 著作权归作者所有。请勿转载和采集!