1. Home
  2. Security Hardening
  3. DISA STIG VMware vSphere 6.7 ESXi V1R1
  4. ESXI-67-000054 – The ESXi host must enable bidirectional CHAP authentication for iSCSI traffic.

ESXI-67-000054 – The ESXi host must enable bidirectional CHAP authentication for iSCSI traffic.

Details

When enabled, vSphere performs bidirectional authentication of both the iSCSI target and host. There is a potential for a MiTM attack, when not authenticating both the iSCSI target and host, in which an attacker might impersonate either side of the connection to steal data. Bidirectional authentication mitigates this risk.

Solution

From the vSphere Client, select the ESXi host and go to Configure >> Storage >> Storage Adapters.

Select the iSCSI adapter >> Properties >> Authentication and click the ‘Edit’ button.

Set Authentication method to ‘Use bidirectional CHAP’ and enter a unique secret for each traffic flow direction.

or

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

Get-VMHost | Get-VMHostHba | Where {$_.Type -eq ‘iscsi’} | Set-VMHostHba -ChapType Required -ChapName ‘chapname’ -ChapPassword ‘password’ -MutualChapEnabled $true -MutualChapName ‘mutualchapname’ -MutualChapPassword ‘mutualpassword’

Supportive Information

The following resource is also helpful.

This security hardening control applies to the following category of controls within NIST 800-53: Configuration Management.This control applies to the following type of system VMware.

References

Source

Updated on July 16, 2022
Was this article helpful?

Related Articles