5.227. VmNics
名称 | 概述 |
---|---|
| 为虚拟机添加一个 NIC。 |
|
5.227.1. 添加 POST
为虚拟机添加一个 NIC。
以下示例将使用 virtio
和 ovirtmgmt
网络名为 mynic
的网络接口添加到虚拟机。
POST /ovirt-engine/api/vms/123/nics
<nic> <interface>virtio</interface> <name>mynic</name> <network> <name>ovirtmgmt</name> </network> </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> <network> <name>ovirtmgmt</name> </network> </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 |