SV-256472r959010_rule
V-256472
SRG-OS-000480-VMM-002000
VMCH-70-000024
CAT II
10
From the vSphere Client, select the Virtual Machine, right-click, and go to Edit Settings >> VM Options tab >> Encryption >> Encrypted vMotion.
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.MigrateEncryption = New-Object VMware.Vim.VirtualMachineConfigSpecEncryptedVMotionModes
$spec.MigrateEncryption = $true
(Get-VM -Name <vmname>).ExtensionData.ReconfigVM($spec)
From the vSphere Client, select the virtual machine, right-click, and go to Edit Settings >> VM Options tab >> Encryption >> Encrypted vMotion.
or
From a PowerCLI command prompt while connected to the ESXi host or vCenter server, run the following command:
Get-VM | Where {($_.ExtensionData.Config.MigrateEncryption -eq "disabled")}
If the setting does not have a value of "Opportunistic" or "Required", this is a finding.
V-256472
False
VMCH-70-000024
From the vSphere Client, select the virtual machine, right-click, and go to Edit Settings >> VM Options tab >> Encryption >> Encrypted vMotion.
or
From a PowerCLI command prompt while connected to the ESXi host or vCenter server, run the following command:
Get-VM | Where {($_.ExtensionData.Config.MigrateEncryption -eq "disabled")}
If the setting does not have a value of "Opportunistic" or "Required", this is a finding.
M
5519