Information
Every device with networking capabilities has a loopback interface.
Loopback traffic refers to network communication where a device sends data to itself, essentially routing the traffic back to its own network interface.
Loopback traffic is generated between processes on machine and is typically critical to operation of the system. The loopback interface is the only place that loopback network traffic should be seen, all other interfaces should ignore traffic on this network as an anti-spoofing measure.
Solution
- Run one of the following commands to add the lo interface to the trusted zone.
If the lo interface is not currently assigned to a zone:
# firewall-cmd --permanent --zone=trusted --add-interface=lo
- OR - if the lo interface is currently assigned to a zone:
# firewall-cmd --zone=public --change-interface=lo <xhtml:ol start="2"> - Run the following command to reload firewalld:
# firewall-cmd --reload