SV-258732r933257_rule
V-258732
SRG-OS-000033-VMM-000140
ESXI-80-000014
CAT I
10
From an ESXi shell, run the following command:
# esxcli system security fips140 ssh set -e true
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$arguments = $esxcli.system.security.fips140.ssh.set.CreateArgs()
$arguments.enable = $true
$esxcli.system.security.fips140.ssh.set.Invoke($arguments)
From an ESXi shell, run the following command:
# esxcli system security fips140 ssh get
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.system.security.fips140.ssh.get.invoke()
Expected result:
Enabled: true
If the FIPS mode is not enabled for SSH, this is a finding.
V-258732
False
ESXI-80-000014
From an ESXi shell, run the following command:
# esxcli system security fips140 ssh get
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.system.security.fips140.ssh.get.invoke()
Expected result:
Enabled: true
If the FIPS mode is not enabled for SSH, this is a finding.
M
5562