vote up 1 vote down star
1

I want to completely block access to my web server from ~25000 different IPs (or ~10000 CIDRs).

What is the best way to use such blacklist on Linux VPS? Preferably in user-space or available in average distro's kernel.

Is there a dedicated module for Apache or Lighttpd that can do this efficiently?

Apache slows down with thousands of Deny rules. Lighttpd can't handle that many IPs at all. Vanilla iptables uses linear lookups, and all iptables improvements seem to require custom kernel…

flag

Are you hosting the website on your own server or are you going through something like slicehost? – matt_dev Nov 29 '08 at 23:09
I've got root, but it's a virtualized server. – porneL Nov 30 '08 at 2:04
1  
Is this a programming question? – Will Dean Nov 30 '08 at 18:08
1  
This really isn't a stackoverflow question. – Brian C. Lane Nov 30 '08 at 18:27
Well, someone could have answered "write a program using that API"... :) but I see your point. I'll close the question. – porneL Nov 30 '08 at 23:01

closed as not programming related by porneL Nov 30 '08 at 23:01

5 Answers

vote up 5 vote down check

You can't do it sensibly with an iptables rule for each IP address - that would make the rule set too long.

However, you CAN do it using a single rule using the ip_set match, which can efficiently hold a large number of IP addresses, but also, has an interface to add/remove addresses from the set which does not depend on executing the iptables command.

link|flag
vote up 0 vote down

You don't want regular expressions, for sure. Are there networks you can aggregate stuff into? CIDR matching is cheap and easy. OpenBSD pf tables make it really easy to dynamically add and remove addresses to rules.

link|flag
I could simplify IPs a bit, but still it would be lots of CIDRs. – porneL Nov 30 '08 at 2:05
10,000 isn't too bad. Shouldn't take much more than 6 bytes to store each one + some hash overhead. Should be able to get it stored in 128k. – Dustin Nov 30 '08 at 4:31
vote up 2 vote down

First, are they all really different? Can't you factor some of those into networks? That'd reduce the amount of rules.

Second, there's no need to use htaccess files to use the Deny directive. Just add the rules in the main Apache config (usually apache.conf or httpd.conf).

Third, if it's still too slow, you could try using mod_security to either block access or to stop whatever it is these IPs are doing to you. If possible, try to avoid blocking and preventing the potential damage/hole/whatever.

Oh, and the best and most efficient way is to tell your ISP to do it for you, that way you don't even get the requests. You've got to have a good ISP, a good relationship with it and great reasons for the block for they to do it, though.

link|flag
vote up 2 vote down

http://www.hipac.org/

link|flag
Looks awesome, but I'm not comfortable with kernel recompilation :/ – porneL Nov 30 '08 at 2:41
Besides it seems to work only with 2.6.11 through 2.6.14, somewhat old. – Vinko Vrsalovic Nov 30 '08 at 8:37
vote up 0 vote down

If you can find a userspace way which uses an appropriately indexed file to contain the IP addresses to block, searching it should be fairly efficient, 25k is not a lot of addresses.

Of course I'm sure they weren't entered manually, so you'll want to ensure that your mechanism of updating the database is sound and correct (i.e. you need to atomically replace the database with a new one).

Even using something like a sqlite database may be ok depending on your exact performance requirements. Measure everything in your lab on production-spec hardware; use a hardware or software-based load / traffic simulator.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.