SV-243111r719576_rule
V-243111
SRG-APP-000516
VCTR-67-000055
CAT II
10
From the vSphere Client, go to Hosts and Clusters >> select a vSAN Enabled Cluster >> Datastores.
Right-click on the datastore named "vsanDatastore" and select "Rename".
Rename the datastore based on site-specific 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"
}
If no clusters are enabled for vSAN, this is not applicable.
From the vSphere Client, go to Hosts and Clusters >> select a vSAN Enabled Cluster >> Datastores.
Review the datastores.
Identify any datastores with "vSAN" as the datastore type.
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"
Get-Cluster | where {$_.VsanEnabled} | Get-Datastore | where {$_.type -match "vsan"}
}
else{
Write-Host "vSAN is not enabled, this finding is not applicable"
}
If vSAN is enabled and the datastore is named "vsanDatastore", this is a finding.
V-243111
False
VCTR-67-000055
If no clusters are enabled for vSAN, this is not applicable.
From the vSphere Client, go to Hosts and Clusters >> select a vSAN Enabled Cluster >> Datastores.
Review the datastores.
Identify any datastores with "vSAN" as the datastore type.
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"
Get-Cluster | where {$_.VsanEnabled} | Get-Datastore | where {$_.type -match "vsan"}
}
else{
Write-Host "vSAN is not enabled, this finding is not applicable"
}
If vSAN is enabled and the datastore is named "vsanDatastore", this is a finding.
M
5399