Disable DHCP Service
An XCCDF Rule
Description
The dhcpd
service should be disabled on
any system that does not need to act as a DHCP server.
The dhcpd
service can be disabled with the following command:
$ sudo systemctl mask --now dhcpd.service
Rationale
Unmanaged or unintentionally activated DHCP servers may provide faulty information to clients, interfering with the operation of a legitimate site DHCP server if there is one.
- ID
- xccdf_org.ssgproject.content_rule_service_dhcpd_disabled
- Severity
- Medium
- References
- Updated
Remediation - OS Build Blueprint
[customizations.services]
disabled = ["dhcpd"]
Remediation - Puppet
include disable_dhcpd
class disable_dhcpd {
service {'dhcpd':
enable => false,
ensure => 'stopped',
Remediation - Ansible
- name: Block Disable service dhcpd
block:
- name: Disable service dhcpd
block:
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if [ ! -f /.dockerenv ] && [ ! -f /run/.containerenv ]; then
SYSTEMCTL_EXEC='/usr/bin/systemctl'
"$SYSTEMCTL_EXEC" stop 'dhcpd.service'
"$SYSTEMCTL_EXEC" disable 'dhcpd.service'