AIX must not run any routing protocol daemons unless the system is a router.
Severity | Group ID | Group Title | Version | Rule ID | Date | STIG Version |
|---|---|---|---|---|---|---|
| medium | V-215428 | SRG-OS-000480-GPOS-00227 | AIX7-00-003133 | SV-215428r991589_rule | 2026-02-06 | 3 |
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
Check for any running routing protocol daemons by running:
# ps -ef | egrep '(ospf|route|bgp|zebra|quagga|gate)'
If any routing protocol daemons are listed, this is a finding.
✔️ Fix
Kill any routing protocol daemons by running the following command:
# ps -ef |egrep '(ospf|route|bgp|zebra|quagga|gate)' | grep -v egrep | awk -F " " '{print $2}' | while read pid;do kill $pid;done