I need to know What should the role of iptables of a typical apache web server on the Internet to help preventing or limiting DoS or other attacks.
feedback
|
closed as not a real question by womble, Ward, DJ Pon3, Shane Madden, MDMarra Nov 14 '11 at 2:39
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
As you have noted, IPTables is not a definitive solution to DoS - at least one reason being that your server still receives the packets and must process them. If enough packets are sent, your bandwidth will be exhausted and your server will still do a lot of processing while legitimate requests might not make it through. None the less, IPTables have their uses, and if you can't setup devices external to (upstream from) your server, they may be a reasonable defense. The starting point would be to close all ports other than the ones you need. For web requests you will need port 80 open (and port 443 if you do HTTPS/SSL). Any other services (SSH, FTP, POP, SMTP, IMAP, etc) your server runs will require additional ports open. A word of caution - before you block too many ports, ensure you have implemented something to reset your configuration if you get yourself 'locked out'. As for the DoS, you probably want to look into the recent module. It will monitor the number of incoming requests from a given IP address, can be used in such a way that if the limit you specify is exceeded, all future packets from the IP address in question will be dropped (for a time you specify). e.g. You may say that if more than 100 new requests come from an IP in 60 seconds, drop requests from this IP for 1 hour. If you want something more complex, you can implement a tiered system, where you block the IP for 10 minutes the first time, 30 minutes the second time, etc. I use something similar, but for non-HTTP connections (e.g. SSH, FTP, etc) which you can see here. For you, a possible (incomplete) implementation might look like the following:
Which is basically ban for 30 min, if more than 100 hits/min on port 80 and if the attack continues, keep extending the 30 minutes. | |||||||
feedback
|
|
You can perhaps set up a program on the server os itself, not the Apache, that will ban an IP if they access X times in under X minutes... Make it temporary bans too, so... Google for a specific program, since I cannot tell what OS you use. Good luck. \EDIT Sorry, CentOS. Got it. | |||
|
feedback
|