Try This. I have never tried this myself but take a look at the following page. http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html It seems self explanitary and can be placed in the apache directives section in the ispconfig web panel I think!
I just tried to put a line Deny from 192.168.1.33 in the Directive block at the bottom in ISPconfig of a test-site. When I hit save and opened the site properties again my line was changed to: #Deny from 192.168.1.33 #NOT SUPPORTED Am I doing something wrong?
maybe use .htaccess Not the best solution, but sometimes usefull? make a file .htaccess in your web directory -------------------------------------------------- <Limit GET> order deny,allow deny from {addresses} </Limit> ------------------------------ example: <Limit GET> order deny,allow deny from 155.212. 199.171.167. .aol.com 207.51.72.139 grog.ric.edu </Limit> RayIT