How can we restrict number of connections through each IP Address (defined in Network Access)?
For ex:
I have 5 IP-Addresses that I have given access, with respective threshold of number of connections can be active at a time:
IP-A – 1000
IP-B – 1000
IP-C – 1000
IP-D – 1000
IP-E – 1000
Now I have maximum 32000 connections that could parallely extablish the connection to my database. And I need to establish an automat system that could basically delete or deactivate all old connection that are trying to connect to my database if each IP has exceeds its given threshold limit.
How could I do that? Please help me