This guide applies to: RPL SPR-M SPR-X 3100-RL+ 3100-SM+ 3100-SX+ 3100-TX
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
Feedback sent
We appreciate your effort and will try to fix the article