I have installed mod_limitipconn.so on my server Apache 1.3/Fedora.
I put this rule on the main httpd.conf:
But it will not work. I could download/view more than two files at the same time?
for the location, I also tried: <Location /*> <Location /*.*>.
I am trying to block more than one connection to the server @ PORT 80.
I also tried to look for iptable rule, but never succeeded.
Thanks,
I put this rule on the main httpd.conf:
Code:
LoadModule limitipconn_module /usr/lib/apache/mod_limitipconn.so
AddModule mod_limitipconn.c
<IfModule mod_limitipconn.c>
<Location />
MaxConnPerIP 1
</Location>
</IfModule>
But it will not work. I could download/view more than two files at the same time?
for the location, I also tried: <Location /*> <Location /*.*>.
I am trying to block more than one connection to the server @ PORT 80.
I also tried to look for iptable rule, but never succeeded.
Thanks,