I don't understand this iptables rule -i lo
I entered this command into my Fedora firewall:
/sbin/iptables -A RH-Firewall-1-INPUT -i lo -j ACCEPT
When I read the table,
/sbin/iptables -L
I think that, according to the rules sorting order, the rule above corresponds to this line:
target prot opt source destination
ACCEPT all -- anywhere anywhere
I read that the rule stands for allowing anything over loopback. What does it mean and why does the iptable entry look so scary?
Thank you.
|