SV-256477r959010_rule
V-256477
SRG-OS-000480-VMM-002000
VMCH-70-000029
CAT II
10
From the vSphere Client, select the Virtual Machine, right-click, and go to Edit Settings >> VM Options tab >> Encryption >> FT Encryption.
Set the value to "Opportunistic" or "Required".
or
From a PowerCLI command prompt while connected to the ESXi host or vCenter server, run the following commands:
$spec = New-Object VMware.Vim.VirtualMachineConfigSpec
$spec.FTEncryption = New-Object VMware.Vim.VMware.Vim.VirtualMachineConfigSpecEncryptedFtModes
$spec.FT = ftEncryptionOpportunistic or ftEncryptionRequired
(Get-VM -Name <vmname>).ExtensionData.ReconfigVM($spec)
If the VM does not have Fault Tolerance enabled, this is not applicable.
From the vSphere Client, select the Virtual Machine, right-click, and go to Edit Settings >> VM Options tab >> Encryption >> Encrypted FT.
or
From a PowerCLI command prompt while connected to the ESXi host or vCenter server, run the following command:
Get-VM | Where {$_.ExtensionData.Config.FtEncryptionMode -eq "ftEncryptionDisabled"}
If the setting does not have a value of "Opportunistic" or "Required", this is a finding.
V-256477
False
VMCH-70-000029
If the VM does not have Fault Tolerance enabled, this is not applicable.
From the vSphere Client, select the Virtual Machine, right-click, and go to Edit Settings >> VM Options tab >> Encryption >> Encrypted FT.
or
From a PowerCLI command prompt while connected to the ESXi host or vCenter server, run the following command:
Get-VM | Where {$_.ExtensionData.Config.FtEncryptionMode -eq "ftEncryptionDisabled"}
If the setting does not have a value of "Opportunistic" or "Required", this is a finding.
M
5519