SV-258716r959010_rule
V-258716
SRG-OS-000480-VMM-002000
VMCH-80-000203
CAT II
10
For each virtual machine do the following:
From the vSphere Client, right-click the Virtual Machine and go to Edit Settings >> VM Options >> Encryption.
For "Encrypted vMotion" set the value to "Opportunistic" or "Required". Click "OK".
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)
For each virtual machine do the following:
From the vSphere Client, right-click the Virtual Machine and go to Edit Settings >> VM Options >> Encryption.
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 "Encrypted vMotion" setting does not have a value of "Opportunistic" or "Required", this is a finding.
V-258716
False
VMCH-80-000203
For each virtual machine do the following:
From the vSphere Client, right-click the Virtual Machine and go to Edit Settings >> VM Options >> Encryption.
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 "Encrypted vMotion" setting does not have a value of "Opportunistic" or "Required", this is a finding.
M
5563