You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by herauthon <he...@home.nl> on 2007/04/03 16:46:53 UTC

[users@httpd] how can i filter fromout a list

Dear Enlisted Ones.

I would be pleased if i could exclude 
visitors because they have no return dns.
my very smart idea was to list allthose
without and make this a rule set for
exclusion - but i am sure there is 
yet smarter way..

enlighten me please..
show me the way

one apprentice alchemist 


---------------------------------------------------------------------
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] how can i filter fromout a list

Posted by Joshua Slive <jo...@slive.ca>.
On 4/3/07, herauthon <he...@home.nl> wrote:
> Dear Enlisted Ones.
>
> I would be pleased if i could exclude
> visitors because they have no return dns.
> my very smart idea was to list allthose
> without and make this a rule set for
> exclusion - but i am sure there is
> yet smarter way..
>
> enlighten me please..
> show me the way

This is a silly (if I weren't so polite, I'd say "stupid") idea. It
will slow your server and won't increase security in any noticeable
way. But if you insist,

HostNameLookups On
SetEnvIf Remote_Host ^[0-9.]+$ noname
<Location />
Order deny,allow
Deny from env=noname
</Location>

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