GET – Server Ethernet over USB properties
Use the GET method to retrieve properties in Ethernet interface resource between the server and manager.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Systems/1/EthernetInterfaces/ToManager
Request body
None
Response body
Field | Type | Description | |||
---|---|---|---|---|---|
Id | String | ToManager | |||
Name | String | Host Ethernet Interface | |||
Description | String | Host Network Interface | |||
Links | Object | Expanded. | |||
Chassis | Link | The value is a reference to the resource “Chassis” that represent the physical container. | |||
HostInterface | Link | A reference to the resource “HostInterface” which represents the interface used by the host to communicate with the manager. | |||
EthernetInterfaceType | String | Physical | |||
InterfaceEnabled | Boolean | A boolean indicating whether this interface is enabled. | |||
Status | Object | Expanded. | |||
Health | String | Null | |||
State | String | Enabled | |||
FQDN | String | “” (empty string) | |||
HostName | String | “” (empty string) | |||
MACAddress | String | The currently configured MAC address of the (logical port) interface. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.context": "/redfish/v1/$metadata#EthernetInterface.EthernetInterface",
"@odata.etag": "\"60FC328F\"",
"@odata.id": "/redfish/v1/Systems/1/EthernetInterfaces/ToManager",
"@odata.type": "#EthernetInterface.v1_8_0.EthernetInterface",
"Description": "Host Ethernet Interface",
"EthernetInterfaceType": "Physical",
"FQDN": "",
"HostName": "",
"Id": "ToManager",
"InterfaceEnabled": false,
"Links": {
"Chassis": {
"@odata.id": "/redfish/v1/Chassis/1"
},
"HostInterface": {
"@odata.id": "/redfish/v1/Managers/1/HostInterfaces/1"
}
},
"MACAddress": "c4:c6:e6:88:bf:b8",
"Name": "Host Ethernet Interface",
"Status": {
"Health": "OK",
"State": "Disabled"
}
}
Give documentation feedback