SV-258740r933281_rule
V-258740
SRG-OS-000257-VMM-000910
ESXI-80-000085
CAT II
10
This setting cannot be configured until Secure Boot is properly enabled in the servers firmware.
From an ESXi shell, run the following commands:
# esxcli system settings encryption set --require-secure-boot=true
# /sbin/auto-backup.sh
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$arguments = $esxcli.system.settings.encryption.set.CreateArgs()
$arguments.requiresecureboot = $true
$esxcli.system.settings.encryption.set.Invoke($arguments)
Evacuate the host and gracefully reboot for changes to take effect.
If the ESXi host does not have a compatible TPM, this finding is downgraded to a CAT III.
From an ESXi shell, run the following command:
# esxcli system settings encryption get
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.system.settings.encryption.get.invoke() | Select RequireSecureBoot
Expected result:
Require Secure Boot: true
If "Require Secure Boot" is not enable, this is a finding.
V-258740
False
ESXI-80-000085
If the ESXi host does not have a compatible TPM, this finding is downgraded to a CAT III.
From an ESXi shell, run the following command:
# esxcli system settings encryption get
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.system.settings.encryption.get.invoke() | Select RequireSecureBoot
Expected result:
Require Secure Boot: true
If "Require Secure Boot" is not enable, this is a finding.
M
5562