NCSI configuration
Field | Type | Read only | Description | |||
---|---|---|---|---|---|---|
Mode | String | False | There are two modes for NCSI configuration:
| |||
Interface | String | False | Ethernet interface for NCSI configuration. | |||
PackageID | Number | False | Package ID for this interface. | |||
ChannelNum | Number | False | Channel number for the corresponding package ID. |
Request
Get NCSI Configuration
GET https://{{ip}}/redfish/v1/Managers /Self/Oem/Lenovo/NCSIConfig
Content-Type: application/json
Response
{ "@odata.context": "/redfish/v1/$metadata#Manager.Manager",
"@odata.etag": "W/\"1535355197\"",
"@odata.id": "/redfish/v1/Managers/Self/Oem/Lenovo/NCSIConfig",
"@odata.type": "#Manager.v1_3_1.Manager",
"ChannelNum": "0",
"Id": "NCSIConfig",
"Interface": "eth0",
"Mode": " Manual Switch mode",
"Name": "Lenovo NCSI Config",
"PackageID": "0"
}
Request
PATCH NCSI Configuration
PATCH https://{{ip}}/redfish/v1/Managers /Self/Oem/Lenovo/NCSIConfig
Content-Type: application/json
Request body
Mode, Interface, PackageID, and ChannelNum should be patched individually. See the following example patch body:
- Auto Failover mode
{
"Mode" : "Auto Failover mode",
"Interface" : "share"
}
- Manual Switch mode
{
"Mode" : "Manual Switch mode",
"Interface" : "share",
"PackageID" : 0,
"ChannelNum" : 0
}
Response
The response content is 204 with no body.
Give documentation feedback