SV-243081r719486_rule
V-243081
SRG-APP-000516
VCTR-67-000012
CAT II
10
From the vSphere Client, go to Networking >> select a distributed switch >> Configure >> Settings >> Health Check.
Click the edit button and disable the "VLAN and MTU" and "Teaming and failover" checks.
or
From a PowerCLI command prompt while connected to the vCenter server, run the following command:
Get-View -ViewType DistributedVirtualSwitch | ?{($_.config.HealthCheckConfig | ?{$_.enable -notmatch "False"})}| %{$_.UpdateDVSHealthCheckConfig(@((New-Object Vmware.Vim.VMwareDVSVlanMtuHealthCheckConfig -property @{enable=0}),(New-Object Vmware.Vim.VMwareDVSTeamingHealthCheckConfig -property @{enable=0})))}
From the vSphere Client, go to Networking >> select a distributed switch >> Configure >> Settings >> Health Check.
View the health check pane and verify that the "VLAN and MTU" and "Teaming and failover" checks are disabled.
or
From a PowerCLI command prompt while connected to the vCenter server, run the following commands:
$vds = Get-VDSwitch
$vds.ExtensionData.Config.HealthCheckConfig
If the health check feature is enabled on distributed switches and is not on temporarily for troubleshooting purposes, this is a finding.
V-243081
False
VCTR-67-000012
From the vSphere Client, go to Networking >> select a distributed switch >> Configure >> Settings >> Health Check.
View the health check pane and verify that the "VLAN and MTU" and "Teaming and failover" checks are disabled.
or
From a PowerCLI command prompt while connected to the vCenter server, run the following commands:
$vds = Get-VDSwitch
$vds.ExtensionData.Config.HealthCheckConfig
If the health check feature is enabled on distributed switches and is not on temporarily for troubleshooting purposes, this is a finding.
M
5399