The Photon operating system must not perform IPv4 packet forwarding.

Severity
Group ID
Group Title
Version
Rule ID
Date
STIG Version
mediumV-256575SRG-OS-000480-GPOS-00227PHTN-30-000106SV-256575r991589_rule2024-12-161
Description
Routing protocol daemons are typically used on routers to exchange network topology information with other routers. If this software is used when not required, system network information may be unnecessarily transmitted across the network.
ℹ️ Check
At the command line, run the following command: # /sbin/sysctl -a --pattern "net.ipv4.ip_forward$" Expected result: net.ipv4.ip_forward = 0 If the output does not match the expected result, this is a finding.
✔️ Fix
At the command line, run the following commands: # sed -i -e "/^net.ipv4.ip_forward/d" /etc/sysctl.conf # echo net.ipv4.ip_forward=0>>/etc/sysctl.conf # /sbin/sysctl --load