Skip to content

8. Manager (BMC)

You can perform the following operations under /redfish/v1/Manager.

Available Methods: Get

8.1 Get Managers Info

You can use the API and payload to get managers information.

URI: /redfish/v1/Managers

Method: GET

Payload:

Response:

{
    "@odata.id": "/redfish/v1/Managers",
    "@odata.type": "#ManagerCollection.ManagerCollection",
    "Members": [
        {
            "@odata.id": "/redfish/v1/Managers/BMC"
        }
    ],
    "Members@odata.count": 1,
    "Name": "Manager Collection"
}

8.2 Get BMC Info

You can use the API and payload to get BMC information.

URI: /redfish/v1/Managers/BMC

Method: GET

Payload:

Response:

{
    "@odata.id": "/redfish/v1/Managers/BMC",
    "@odata.type": "#Manager.v1_19_0.Manager",
    "Actions": {
        "#Manager.Reset": {
            "ResetType@Redfish.AllowableValues": [
                "GracefulRestart"
            ],
            "target": "/redfish/v1/Managers/BMC/Actions/Manager.Reset"
        }
    },
    "AdditionalFirmwareVersions": {
        "Bootloader": "v2022.01",
        "Kernel": "Linux 5.13.0-30-generic arm71"
    },
    "CommandShell": {
        "ConnectTypesSupported": [
            "SSH"
        ],
        "MaxConcurrentSessions": 4,
        "ServiceEnabled": true
    },
    "DateTime": "2015-03-13T04:14:33+06:00",
    "DateTimeLocalOffset": "+06:00",
    "Description": "AVerMedia BMC",
    "EthernetInterfaces": {
        "@odata.id": "/redfish/v1/Managers/BMC/EthernetInterfaces"
    },
    "FirmwareVersion": "0.0.1.0",
    "Id": "BMC",
    "LogServices": {
        "@odata.id": "/redfish/v1/Managers/BMC/LogServices"
    },
    "SerialNumber": "000001",
    "SKU": "AVT 990",
    "ManagerType": "BMC",
    "Model": "D135-OB",
    "Name": "Manager",
    "NetworkProtocol": {
        "@odata.id": "/redfish/v1/Managers/BMC/NetworkProtocol"
    },
    "PowerState": "On",
    "ServiceEntryPointUUID": "92384634-2938-2342-8820-489239905423",
    "Status": {
        "Health": "OK",
        "State": "Enabled"
    },
    "SerialInterfaces": {
        "@odata.id": "/redfish/v1/Managers/BMC/SerialInterfaces"
    },
    "UUID": "58893887-8974-2487-2389-841168418919"
}

Next section