The port is open, how to set limits on the number of packets that a user can send to this port? For example 10 per second?
$IPTABLES -A INPUT -p tcp --dport 3724 -m state --state ESTABLISHED,RELATED -j ACCEPT $IPTABLES -A INPUT -p tcp --dport 3724 -m hashlimit --hashlimit-upto 10/sec --hashlimit-mode srcip,dstip --hashlimit-name Packets --hashlimit-htable-expire 60000 -j ACCEPT $IPTABLES -P INPUT DROP but something is not working, what is the error?