On Tue, Jun 06, 2000 at 10:52:55PM +0000, Sibuyas wrote: > how do I ban a list of IP adds (or an entire /24) from ever accessing > my apache http server ? i always thought /etc/hosts.deny can do this > but i just discovered that i was wrong. Apache is not linked against libwrap per default, but needs to be linked against in order to work with tcpwrappers.
Check out the rule 'deny' in your apache configuration. order deny,allow allow from all deny from 192.168.0.0/24 Should be sufficient for your needs. MfG/Regards, Alexander -- Alexander Reelsen http://joker.rhwd.de [EMAIL PROTECTED] GnuPG: pub 1024D/F0D7313C sub 2048g/6AA2EDDB [EMAIL PROTECTED] 7D44 F4E3 1993 FDDF 552E 7C88 EE9C CBD1 F0D7 313C Securing Debian: http://joker.rhwd.de/doc/Securing-Debian-HOWTO

