1. Home
  2. Security Hardening
  3. DISA STIG VMware vSphere VCenter 6.x V1R4
  4. VCWN-06-000054 – The system must configure the VSAN Datastore name to a unique name.

VCWN-06-000054 – The system must configure the VSAN Datastore name to a unique name.

Details

VSAN Datastore name by default is ‘vsanDatastore’. If more than one VSAN cluster is present in vCenter both datastores will have the same name by default potentially leading to confusion and manually misplaced workloads.

NOTE: Nessus has not performed this check. Please review the benchmark to ensure target compliance.

Solution

From the vSphere Web Client go to Host and Clusters > Select a Cluster > Related Objects > Datastores. Right click on the datastore named ‘vsanDatastore’ and select ‘Rename’. Rename the datastore based on operational naming standards.

or

From a PowerCLI command prompt while connected to the vCenter server run the following command:

If($(Get-Cluster | where {$_.VsanEnabled} | Measure).Count -gt 0){
Write-Host ‘VSAN Enabled Cluster found’
$Clusters = Get-Cluster | where {$_.VsanEnabled}
Foreach ($clus in $clusters){
$clus | Get-Datastore | where {$_.type -match ‘vsan’} | Set-Datastore -Name $(($clus.name) + ‘_VSAN_Datastore’)
}
}
else{
Write-Host ‘VSAN is not enabled, this finding is not applicable’
}

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