SV-258746r933299_rule
V-258746
SRG-OS-000366-VMM-001430
ESXI-80-000133
CAT I
10
From the vSphere Client, go to Hosts and Clusters.
Select the ESXi Host >> 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-258746
False
ESXI-80-000133
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
5562