1. Home
  2. Security Hardening
  3. DISA STIG VMware vSphere ESXi OS 6.5 V2R3
  4. ESXI-65-000044 – The ESXi host must enable kernel core dumps.

ESXI-65-000044 – The ESXi host must enable kernel core dumps.

Details

In the event of a system failure, the system must preserve any information necessary to determine cause of failure and any information necessary to return to operations with least disruption to mission processes.

Solution

From the vSphere Web Client select the ESXi Host and right click. Select the ‘Add Diagnostic Partition’ option configure a core dump diagnostic partition.

or

From a PowerCLI command prompt while connected to the ESXi host run at least one of the following sets of commands:

To configure a core dump partition:

$esxcli = Get-EsxCli
#View available partitions to configure
$esxcli.system.coredump.partition.list()
$esxcli.system.coredump.partition.set($null,’PartitionName’,$null,$null)

To configure a core dump collector:

$esxcli = Get-EsxCli
$esxcli.system.coredump.network.set($null,’vmkernel port to use’,$null,’CollectorIP’,’CollectorPort’)
$esxcli.system.coredump.network.set($true)

Supportive Information

The following resource is also helpful.

This security hardening control applies to the following category of controls within NIST 800-53: System and Communications Protection.This control applies to the following type of system Unix.

References

Source

Updated on July 16, 2022
Was this article helpful?

Related Articles