IPFW IPFW Connections

Hello.


I'm limiting actual the max connections to some ports over my ipfw:
Code:
${fwcmd} add 02010 set 21 allow tcp from any to ${game_ip} ${apps_tcp_login} setup
${fwcmd} add 02012 set 21 allow tcp from any to ${game_ip} ${apps_tcp_login} limit src-addr 2
${fwcmd} add 02014 set 21 allow tcp from ${game_ip} to any src-port ${apps_tcp_login}
My question now, is it possible to block the IPs which are sending like 10 connections in 15 seconds?
 
Back
Top