Modify Boot Order with Redfish

Modified on Wed, 10 May, 2023 at 12:05 PM

Redfish is supported on the following platforms:

  • SPR-M - Sapphire Rapids
  • RPL - Raptor Lake
  • ADL - Alder Lake



To update the boot order via Redfish, you must modify /Systems/Self/SD instead of /Systems/Self



Example with curl:


curl -k -u "admin:admin123" https://192.168.0.108/redfish/v1/Systems/Self/SD -H "If-None-Match: sdsdsd" -H "Content-Type: application/json" -d '{"Boot": { "BootSourceOverrideTarget":"Pxe", "BootSourceOverrideEnabled": "Continuous" } }' -X PATCH


Please note that if using PowerShell, this will require additional escape character like so:


curl.exe -k -u "admin:admin123" https://192.168.0.108/redfish/v1/Systems/Self/SD -H "If-None-Match: sdsdsd" -H "Content-Type: application/json" -d '{\"Boot\": { \"BootSourceOverrideTarget\":\"Pxe\", \"BootSourceOverrideEnabled\": \"Continuous\" } }' -X PATCH

Please reference the "boot" structure and available options for each record:


"Boot":{

"BootNext":null,

"BootOptions":{"@odata.id":"/redfish/v1/Systems/Self/BootOptions"},

"BootOrder":["Boot0003","Boot0004","Boot0007","Boot0006"],

"BootOrderPropertySelection":"BootOrder",

"BootSourceOverrideEnabled":"Disabled",

"BootSourceOverrideEnabled@Redfish.AllowableValues":["Disabled","Once","Continuous"],

"BootSourceOverrideMode":null,

"BootSourceOverrideMode@Redfish.AllowableValues":["Legacy","UEFI"],

"BootSourceOverrideTarget":"None",

"BootSourceOverrideTarget@Redfish.AllowableValues":["None","Pxe","Floppy","Cd","Usb","Hdd","BiosSetup","Utilities","Diags","UefiShell","UefiTarget","SDCard","UefiHttp","RemoteDrive","UefiBootNext"],

"Certificates":{"@odata.id":"/redfish/v1/Systems/Self/Boot/Certificates"},"UefiTargetBootSourceOverride":null}

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article