6.275. VmNics
名称 | 概述 |
---|---|
| 将 NIC 添加到虚拟机。 |
| 返回虚拟机的 NIC 列表。 |
6.275.1. 添加 POST
将 NIC 添加到虚拟机。
以下示例使用 virtio
和 NIC 配置集 456
向虚拟机添加一个名为 mynic
的 网络接口
。
POST /ovirt-engine/api/vms/123/nics
<nic> <name>mynic</name> <interface>virtio</interface> <vnic_profile id="456"/> </nic>
以下示例使用 curl
发送该请求:
curl \ --request POST \ --header "Version: 4" \ --header "Content-Type: application/xml" \ --header "Accept: application/xml" \ --user "admin@internal:mypassword" \ --cacert /etc/pki/ovirt-engine/ca.pem \ --data ' <nic> <name>mynic</name> <interface>virtio</interface> <vnic_profile id="456"/> </nic> ' \ https://myengine.example.com/ovirt-engine/api/vms/123/nics
重要
热插拔功能仅支持带有热插拔操作的虚拟机操作系统。操作系统示例包括:
- Red Hat Enterprise Linux 6
- Red Hat Enterprise Linux 5
- Windows Server 2008 和
- Windows Server 2003
名称 | 类型 | 方向 | 概述 |
---|---|---|---|
| in/Out |