Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions python/understack-workflows/understack_workflows/bmc_bios.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ def required_bios_settings(pxe_interface: str) -> dict:
# when its serving data from its own http server
"HttpDev1TlsMode": "None",
"TimeZone": "UTC",
# This disables a virtual USB NIC that was confusing vmware. This
# device allows the operating system to talk to the iDRAC. Disabling it
# closes down one of the ways that the operating system can make changes
# to the iDRAC. We want to retain complete control over the iDRAC
# because we rely upon it for cleaning, power cycle, and other critical
# tasks:
"OS-BMC.1.AdminState": "Disabled",
# This closes down IPMI, which we don't use anyhow:
"IPMILan.1.Enable": "Disabled",
}


Expand Down
Loading