Quote:
Originally Posted by B!n@ry
iptables -A OUTPUT -i lo --dport 80 -j ACCEPT
|
Naa it won't work as it open port 80 for loopback only
Code:
iptables -A INPUT -p tcp -s 0/0 --sport 1024:65535 -d WEB-SERVER-IP --dport 80 -j ACCEPT
@asim.mcp can you paste your existing iptables rules?