NicPhysicalPort¶
Overview¶
NicPhysicalPort is physical port information on Network Interface Card.
This data type is included in the result of execution of the next API request.
DATA TYPE¶
Contents¶
PARAMETER | DESCRIPTION | DATATYPE |
---|---|---|
id | UUID of the NicPhysicalPort. | UUID |
mac_addr | MAC address of the NicPhysicalPort. | String |
network_physical_port_id | Network controller port id of physical leaf switch. | UUID |
plane | ‘data’(default) or ‘storage’. Assigning preferentially the order to the NIC physical port. data plane: all devices cloud be connected. storage plane: this plane type is only used and optimized for storage between servers. You can assign each until 2 planes. | String |
attached_ports | Logical attached ports of host. | AttachedPort Array |
hardware_id | ID of hardware attaching the NicPhysicalPort. | UUID |
Example¶
{
"nic_physical_port": {
"id": "39285bf9-12fb-4064-b98b-a552efc51cfc",
"mac_addr": "0a:31:c1:d5:6d:9c",
"network_physical_port_id": "38268d94-584a-4f14-96ff-732a68aa7301",
"plane": "data",
"attached_ports": [
{
"port_id": "61b7da1e-9571-4d63-b779-e003a56b8105",
"network_id": "9aa93722-1ec4-4912-b813-b975c21460a5",
"fixed_ips": [
{
"subnet_id": "0419bbde-2b82-4107-9d8a-6bba76e364af",
"ip_address": "192.168.10.2"
}
]
}
],
"hardware_id": "063468e8-61ab-4afd-be38-c937254aeb9a"
}
}