On Thu, 30 Sep 1999, you wrote:
> How does one control(limit) the httpd web-server access to only dozen IP's
> that are not in the same subnet.
> 
> for example: If I wanted to restrict only the following users to my intranet
> web-server,
> 888.888.888.888, 777.777.777.777, 666.666.666.666, 555.555.555.555.
> 
> exactly what would the script appear as?


<Directory /home/httpd/html>
<Limit GET POST>
        Order Deny, Allow
        Deny from ALL
        Allow from 888.888.888.888 777.777.777.777 ... 
</Limit>
</Directory>
##Gavin##

> 
> 
> (httpd is not in my inet.d)
> 
> Thanks.
-- 

Regards,
   Gavin ([EMAIL PROTECTED])
********************************************************************
      ENTER.NET - "The Road to the Internet Starts Here!" (tm)
  (610) 437-2221 * http://www.enter.net/ * email:[EMAIL PROTECTED]
********************************************************************

Reply via email to