You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Kelly Keeton <ad...@eshopping4less.com> on 2003/05/01 20:30:43 UTC

[users@httpd] Restrict an IP Address

Is there anyway to restrict an IP address from accessing my web server?

I would like to restrict 12.238.*.*
This IP seems to visit every day and about every 15 to 30 minutes doing
nothing be receiving errors.

Thanks for your help.




---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Restrict an IP Address

Posted by Joshua Slive <jo...@slive.ca>.
On Thu, 1 May 2003, Kelly Keeton wrote:

> Is there anyway to restrict an IP address from accessing my web server?
>
> I would like to restrict 12.238.*.*
> This IP seems to visit every day and about every 15 to 30 minutes doing
> nothing be receiving errors.

<Location />
Order allow,deny
deny from 12.238
</Location>

See:
http://httpd.apache.org/docs-2.0/mod/mod_access.html

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org