The dst-limit rule only limits the number of simultaneous connections not to connection per time
Code: Select all
/ip firewall filter
add action=return chain=ssh comment="Accept 1/min connections" dst-limit=1/1m,0,src-address/1m
I did expect the code to count the number of connection within one minute, but it looks like only to counts the connections at the same time.
Where do i go wrong ?.