Start a Conversation

Solved!

Go to Solution

1 Rookie

 • 

1 Message

119

October 22nd, 2024 18:05

Dell redfish api - Enable uefi pxe boot for all network cards

I have manged with redfish api to enable uefi boot instead of bios via 

base_url = f"https://{ip_address}/redfish/v1/Systems/System.Embedded.1"
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

headers = {"Content-Type": "application/json"}
payloads ={
"Boot": {
"BootSourceOverrideTarget": "UefiTarget",
"BootSourceOverrideMode": "UEFI"
}
}

now from the bios I have "network settings" and only the first network card in enabled with "uefi pxe"
I want to allow it for all of my network cards via redfish API. 

and suggestions will be much appreciated 

Moderator

 • 

5.2K Posts

October 23rd, 2024 03:13

Hello thanks for choosing Dell and welcome to our community.
so we do not do scripting for customers. What we could is to provide resource so that you figure out yourself.
iDRAC9 Redfish API | Dell Technologies Developer
Dell Technologies Developer
 https://dell.to/3BRgTZw
If it can be done from iDRAC GUI, most likely it can be done using API, I think.
Respectfully,

No Events found!

Top