UCF STIG Viewer Logo

OL 8 must enable the hardware random number generator entropy gatherer service.


Overview

Finding ID Version Rule ID IA Controls Severity
V-248599 OL08-00-010471 SV-248599r779363_rule Low
Description
The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems. The rngd service feeds random data from hardware device to kernel random device. Quality (non-predictable) random number generation is important for several security functions (i.e., ciphers).
STIG Date
Oracle Linux 8 Security Technical Implementation Guide 2022-12-06

Details

Check Text ( C-52033r779361_chk )
Verify the rngd service is enabled and active with the following commands:

$ sudo systemctl is-enabled rngd

enabled

$ sudo systemctl is-active rngd

active

If the service is not "enable and "active", this is a finding.
Fix Text (F-51987r779362_fix)
Start the rngd service and enable it with the following commands:

$ sudo systemctl start rngd.service

$ sudo systemctl enable rngd.service