SV-239302r674835_rule
V-239302
SRG-OS-000366-VMM-001430
ESXI-67-000047
CAT I
10
From the vSphere Client, select the ESXi host and go to Configure >> System >> Security Profile.
Under "Host Image Profile Acceptance Level", click "Edit".
Using the pull-down selection, set the acceptance level to be "VMwareCertified", "VMwareAccepted", or "PartnerSupported".
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$arguments = $esxcli.software.acceptance.set.CreateArgs()
$arguments.level = "PartnerSupported"
$esxcli.software.acceptance.set.Invoke($arguments)
Note: "VMwareCertified" or "VMwareAccepted" may be substituted for "PartnerSupported", depending on local requirements. These are also case sensitive.
From the vSphere Client, select the ESXi host and go to Configure >> System >> Security Profile.
Under "Host Image Profile Acceptance Level", view the acceptance level.
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.software.acceptance.get.Invoke()
If the acceptance level is "CommunitySupported", this is a finding.
V-239302
False
ESXI-67-000047
From the vSphere Client, select the ESXi host and go to Configure >> System >> Security Profile.
Under "Host Image Profile Acceptance Level", view the acceptance level.
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.software.acceptance.get.Invoke()
If the acceptance level is "CommunitySupported", this is a finding.
M
5326