Skip to main content

NCSI configuration

Table 1. NCSI configuration properties
FieldTypeRead onlyDescription
ModeStringFalse
There are two modes for NCSI configuration:
  • Auto Failover mode

  • Manual Switch mode

InterfaceStringFalseEthernet interface for NCSI configuration.
PackageIDNumberFalsePackage ID for this interface.
ChannelNumNumberFalseChannel 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.