i use these rules , but i don't know how to accept this match after 1 minutes,... these rules if match ,Denying for ever i need Denying for 2 minutes how can i do that?
iptables -A INPUT -i eth0 -p tcp --tcp-flags SYN,ACK SYN -m state --dport 6050 --state NEW -m recent --set
iptable -A INPUT -i eth0 -p --tcp-flags SYN,ACK SYN -m state --dport 6050 --state NEW -m recent --update --seconds 20 --hitcount 3 -j Drop
[EDIT]: Added code tags. Rich