Answer the question
In order to leave comments, you need to log in
DDoS site through active connections (ISP). How to set a limit on the number of requests?
There is a site on OVH. Their antiddos catches big attacks. But somehow they manage to zaddosit us.
httpd.itk becomes 256 and that's it. And all connections with 1 IP.
How can I do something to distribute the load?
CentOS 6.6 (64bits)
Processor Intel(R) Xeon(R) CPU W3530 @ 2.80GHz 1600.000 Mhz X 8
RAM 16 GB
Answer the question
In order to leave comments, you need to log in
In Iptables add a line. Limit of 10 connections from one IP to port 80
Another option. The gist is the same:
iptables -A INPUT -p tcp --syn --dport 80 -m recent --name radiator --set
iptables -A INPUT -p tcp --syn --dport 80 -m recent --name radiator --update --seconds 120 --hitcount 10 -j REJECT
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question