SV-256410r984242_rule
V-256410
SRG-OS-000366-VMM-001430
ESXI-70-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 drop-down selection, set the acceptance level as "VMwareCertified", "VMwareAccepted", or "PartnerSupported". The default is "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 case sensitive.
From the vSphere Client, go to Hosts and Clusters.
Select the ESXi Host >> 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-256410
False
ESXI-70-000047
From the vSphere Client, go to Hosts and Clusters.
Select the ESXi Host >> 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
5518