1 Rookie

 • 

1 Message

15

December 1st, 2025 10:45

Set iDRAC next boot to "Virtual Network File 1" using Ansible

Hello,

I'm trying to set the next boot option to "Virtual Network File 1" using Ansible, when I do this in the UI and then fetch the selected boot option via the UI, then set that specific boot option using Ansible, i see "UEFI Device Path" selected instead of "Virtual Network File 1".

I can share my current playbook task but I dont think it benefits the question, so the question is: How do I set "Virtual Network File 1" as next boot option using Ansible?

Thank you in advance!

Moderator

 • 

2.9K Posts

December 1st, 2025 15:28

Hello,

We do not provide direct support for Ansible, but here is the basic information:

  • iDRAC uses UEFI boot option IDs internally. The name shown in the UI (e.g., Virtual Network File 1) corresponds to an ID like Boot0007.
  • To set this option via Ansible, you need to:
  1. Query available boot options using Redfish API or Dell OpenManage Ansible modules.
  2. Identify the ID for Virtual Network File 1.
  3. Use that ID in your Ansible task with:
    BootSourceOverrideEnabled: Once
    BootSourceOverrideTarget: UefiBootNext
    UefiTargetBootSourceOverride: Boot0007   # replace with the correct ID
    

Seeing “UEFI Device Path” in the UI after applying the change is expected behavior.

However, our community might have more detailed examples or playbooks that could help you further.

 

Hope that helps!

No Events found!

Top