NVIDIA BlueField BMC Software v24.04
NVIDIA BlueField BMC Software v24.04

Product Instance Identifier

It is possible to set a unique name for the BMC. This name may be retrieve from Redfish without a password.

Copy
Copied!
            

curl -k -u root:'<password>' -H 'Content-Type: application/json' -X PATCH https://<bmc_ip>/redfish/v1/Managers/Bluefield_BMC -d '{"ServiceIdentification": "<system_name>"}'

  • To get the system name without a password:

    Copy
    Copied!
                

    curl -k -H "X-Auth-Token: $token" -X GET https://<bmc_ip>/redfish/v1 | jq '.ServiceIdentification'

  • To get the system name with a password:

    Copy
    Copied!
                

    curl -k -u root:'<password>' -H 'Content-Type: application/json' -X GET https://<bmc_ip>/redfish/v1/Managers/Bluefield_BMC | jq '.ServiceIdentification'

© Copyright 2024, NVIDIA. Last updated on May 10, 2024.