
iptables:ai:8dddf
Allow all outgoing traffic from localhost, LAN IP, and Internet IP addresses
$ iptables -A OUTPUT -p ALL -s $LO_IP -j ACCEPT && iptables -A OUTPUT -p ALL -s $LAN_IP -j ACCEPT && iptables -A OUTPUT -p ALL -s $INET_IP -j ACCEPT
try on your machine
Allow all outgoing traffic from localhost, LAN IP, and Internet IP addresses
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- $IPTABLES -A OUTPUT -p ALL -s $LO_IP -j ACCEPT $IPTABLES -A OUTPUT -p ALL -s $LAN_IP -j ACCEPT $IPTABLES -A OUTPUT -p ALL -s $INET_IP -j ACCEPT?