Answers for "how to allow all ips in iptables"

0

iptables allow all outgoing

iptables -I OUTPUT -o eth0 -d 0.0.0.0/0 -j ACCEPT
iptables -I INPUT -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
Posted by: Guest on April-07-2021
0

enable iptables

iptables
Posted by: Guest on October-09-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language