I am configuring my iptables
. The policy for OUTPUT
is ACCEPT
. Though INPUT
is DROP
. I am wondering what I need to open up on INPUT
so I can receive responses on outgoing traffic (automatic or manual, i.e. wget
), without leaving me vulnerable to ddos attacks.
I'm thinking somehwere along the lines of
iptables -A INPUT -p tcp --dport 80 --state ESTABLISHED -j ACCEPT
Thanks for any input!