search for: synconns

Displaying 1 result from an estimated 1 matches for "synconns".

Did you mean: syncobjs
2004 Nov 30
0
Multiply targets ?
hi, I have two situation where I need two targets in one rule ....... First one iptables -N syn-flood iptables -A syn-flood -m limit --limit ${synConns} --limit-burst ${synBurst} -j RETURN iptables -A syn-flood -j DROP iptables -A protect -p tcp --syn -j syn-flood Now I want to be able to say : iptables -A syn-flood -m limit --limit ${synConns} --limit-burst ${synBurst} -j LOG --log-prefix Synflood -j RETURN i.e. I want to return and log the...