[prev in list] [next in list] [prev in thread] [next in thread] 

List:       apache-httpd-users
Subject:    [users@httpd] Three-way access
From:       "Alonso Lara" <keko () khor-ha ! net>
Date:       2005-01-31 21:48:17
Message-ID: auto-000108356929 () easily ! co ! uk
[Download RAW message or body]

Spam detection software, running on the system "kinsei.thewillards.local", has
identified this incoming email as possible spam.  The original message
has been attached to this so you can view it (if it isn't spam) or label
similar future email.  If you have any questions, see
postmaster@thewillards.co.uk for details.

Content preview:  Hi! I would like to configure a directory with this
  access method: 1.- Direct access to 192.168.0.1 2.- Login access to
  subnet (192.168.0.*, user: local) 3.- Deny rest [...] 

Content analysis details:   (2.9 points, 1.9 required)

 pts rule name              description
---- ---------------------- --------------------------------------------------
 1.7 MSGID_FROM_MTA_ID      Message-Id for external message added locally
 1.2 LOCAL_HTTP             BODY: Has web link




Return-Path: <SRS0+5df61f681a71103f2784+526+httpd.apache.org+users-return-49152-chris.willard=sentinetcomputing.com@easymx2-214854.srs.easily.co.uk>
                
X-Original-To: sentinetbackup@localhost
Delivered-To: sentinetbackup@localhost.thewillards.local
Received: from localhost (localhost.localdomain [127.0.0.1])
	by kinsei.thewillards.local (Postfix) with ESMTP id A6F08481DD5
	for <sentinetbackup@localhost>; Mon, 31 Jan 2005 16:41:21 -0500 (EST)
Received: from customermail.easily.co.uk [217.206.220.10]
	by localhost with POP3 (fetchmail-6.2.1)
	for sentinetbackup@localhost (single-drop); Mon, 31 Jan 2005 21:41:21 +0000 (GMT)
Received: from [212.53.64.68] (HELO easymx2.easily.co.uk)
  by easily.co.uk (CommuniGate Pro SMTP 4.1.3)
  with ESMTP id 108356929 for uvyhipys5y4k@customermail.easily.co.uk; Mon, 31 Jan \
                2005 21:48:53 +0000
Received: from [209.237.227.199] (port=49895 helo=mail.apache.org) 
	by easymx2.easily.co.uk with smtp (NetBenefit 2.0)
	id 1CvjPV-0003CR-Tb 
	for chris.willard@sentinetcomputing.com; Mon, 31 Jan 2005 21:48:47 +0000
Received: (qmail 13930 invoked by uid 500); 31 Jan 2005 21:48:23 -0000
Mailing-List: contact users-help@httpd.apache.org; run by ezmlm
Precedence: bulk
Reply-To: users@httpd.apache.org
list-help: <mailto:users-help@httpd.apache.org>
list-unsubscribe: <mailto:users-unsubscribe@httpd.apache.org>
list-post: <mailto:users@httpd.apache.org>
Delivered-To: mailing list users@httpd.apache.org
Received: (qmail 13916 invoked by uid 99); 31 Jan 2005 21:48:23 -0000
X-ASF-Spam-Status: No, hits=0.0 required=10.0
	tests=
X-Spam-Check-By: apache.org
Received-SPF: pass (hermes.apache.org: local policy)
Received: from ns1.hostaix.com (HELO ns1.hostaix.com) (67.19.99.130)
  by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 31 Jan 2005 13:48:22 -0800
Received: from 235.red-80-35-202.pooles.rima-tde.net ([80.35.202.235] \
helo=minicarrier)  by ns1.hostaix.com with esmtp (Exim 4.44)
	id 1CvjP9-00056l-AR
	for users@httpd.apache.org; Mon, 31 Jan 2005 22:48:20 +0100
From: "Alonso Lara" <keko@khor-ha.net>
To: <users@httpd.apache.org>
Date: Mon, 31 Jan 2005 22:48:17 +0100
X-Mailer: Microsoft Office Outlook, Build 11.0.6353
Thread-Index: AcUH3pKM1rOtojqtRtyR4bYIVel8bQ==
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-AntiAbuse: This header was added to track abuse, please include it with any abuse \
                report
X-AntiAbuse: Primary Hostname - ns1.hostaix.com
X-AntiAbuse: Original Domain - httpd.apache.org
X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]
X-AntiAbuse: Sender Address Domain - khor-ha.net
X-Source: 
X-Source-Args: 
X-Source-Dir: 
X-Virus-Checked: Checked
Subject: [users@httpd] Three-way access
X-SRS-Rewrite: SMTP reverse-path rewritten from \
<users-return-49152-chris.willard=sentinetcomputing.com@httpd.apache.org> by \
easymx2.easily.co.uk  See http://www.infradead.org/rpr.html
X-Originally-To: chris.willard@sentinetcomputing.com
X-SRS-Rewrite: SMTP reverse-path rewritten from \
<users-return-49152-chris.willard=sentinetcomputing.com@httpd.apache.org> by \
easymx2.easily.co.uk  See http://www.infradead.org/rpr.html
X-Originally-To: sales@sentinetcomputing.com
X-SRS-Rewrite: SMTP reverse-path rewritten from \
<users-return-49152-chris.willard=sentinetcomputing.com@httpd.apache.org> by \
easymx2.easily.co.uk  See http://www.infradead.org/rpr.html
Message-ID: <auto-000108356929@easily.co.uk>
X-Sanitizer: Advosys mail filter
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Hi!

I would like to configure a directory with this access method:

1.- Direct access to 192.168.0.1
2.- Login access to subnet (192.168.0.*, user: local)
3.- Deny rest

I can only configure two of the above lines to work at the same time.

# Direct Access to .1 and user login to the rest (subnet and Inet)
Order Allow,Deny
Allow from 192.168.0.1
AuthType Basic
AuthName "foo"
AuthUserFile /etc/httpd/pw
Require user local
Satisfy Any

Or

# Login entire subnet (and .1), deny rest
Order Allow,Deny
Allow from 192.168.0.*
AuthType Basic
AuthName "foo"
AuthUserFile /etc/httpd/pw
Require user local
Satisfy All

There's any way to configure this three-way access?

Thanks! :)


---------------------------------------------------------------------
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



---------------------------------------------------------------------
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

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic