UCF STIG Viewer Logo

For the ESXi host, all port groups must be configured to a value other than that of the native VLAN.


Overview

Finding ID Version Rule ID IA Controls Severity
V-239317 ESXI-67-000063 SV-239317r674880_rule Medium
Description
ESXi does not use the concept of native VLAN. Frames with VLAN specified in the port group will have a tag, but frames with VLAN not specified in the port group are not tagged and therefore will end up as belonging to the native VLAN of the physical switch. For example, frames on VLAN 1 from a Cisco physical switch will be untagged, because this is considered as the native VLAN. However, frames from ESXi specified as VLAN 1 will be tagged with a "1"; therefore, traffic from ESXi that is destined for the native VLAN will not be correctly routed (because it is tagged with a "1" instead of being untagged), and traffic from the physical switch coming from the native VLAN will not be visible (because it is not tagged). If the ESXi virtual switch port group uses the native VLAN ID, traffic from those VMs will not be visible to the native VLAN on the switch because the switch is expecting untagged traffic.
STIG Date
VMware vSphere 6.7 ESXi Security Technical Implementation Guide 2022-01-05

Details

Check Text ( C-42550r674878_chk )
From the vSphere Client, select the ESXi host and go to Configure >> Networking >> Virtual switches.

For each virtual switch, review the port group VLAN tags and verify they are not set to the native VLAN ID of the attached physical switch.

or

From a PowerCLI command prompt while connected to the ESXi host, run the following command:

Get-VirtualPortGroup | Select Name, VLanId

If any port group is configured with the native VLAN of the attached physical switch, this is a finding.
Fix Text (F-42509r674879_fix)
From the vSphere Client, select the ESXi host and go to Configure >> Networking >> Virtual switches.

Highlight the port group where VLAN ID is set to native VLAN ID and click Edit settings (dots).

Change the VLAN ID to a non-native VLAN and click "OK".

or

From a PowerCLI command prompt while connected to the ESXi host, run the following command:

Get-VirtualPortGroup -Name "portgroup name" | Set-VirtualPortGroup -VLanId "New VLAN#"