Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 12102 invoked from network); 11 Sep 2009 11:31:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Sep 2009 11:31:39 -0000 Received: (qmail 14643 invoked by uid 500); 11 Sep 2009 11:31:38 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 14560 invoked by uid 500); 11 Sep 2009 11:31:37 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 14548 invoked by uid 99); 11 Sep 2009 11:31:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Sep 2009 11:31:37 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [81.14.177.136] (HELO excalibur.michael-wessel.de) (81.14.177.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Sep 2009 11:31:28 +0000 Received: from mppd (localhost [127.0.0.1]) by excalibur.michael-wessel.de (Postfix) with ESMTP id C6C3D3C0AE for ; Fri, 11 Sep 2009 13:31:06 +0200 (CEST) Received: from excalibur.intranet.michael-wessel.de (localhost [127.0.0.1]) by localhost.domain.tld (Postfix) with ESMTP id B033F3C247 for ; Fri, 11 Sep 2009 13:31:06 +0200 (CEST) Received: from vm-w2k3s04.intranet.michael-wessel.de (vm-w2k3s04.intranet.michael-wessel.de [10.10.10.7]) by excalibur.michael-wessel.de (Postfix) with ESMTP id A62453C0AE for ; Fri, 11 Sep 2009 13:31:06 +0200 (CEST) Received: from vm-w2k3s04.intranet.michael-wessel.de ([10.10.10.7]) by vm-w2k3s04.intranet.michael-wessel.de ([10.10.10.7]) with mapi; Fri, 11 Sep 2009 13:31:06 +0200 From: Natanael Mignon - michael-wessel.de To: "dev@httpd.apache.org" Date: Fri, 11 Sep 2009 13:31:04 +0200 Subject: AW: OCSP stapling in mod_ssl - use as OCSP cache for client authentication Thread-Topic: OCSP stapling in mod_ssl - use as OCSP cache for client authentication Thread-Index: AcoyxLURfBGdRXVhSe2cma+xkb3mGQADfTHg Message-ID: References: <4AAA1C3B.9030803@oss-institute.org> In-Reply-To: <4AAA1C3B.9030803@oss-institute.org> Accept-Language: de-DE Content-Language: de-DE X-MS-Has-Attach: X-MS-TNEF-Correlator: x-cr-hashedpuzzle: AHAQ AQvW AjmG BiUX CFPn C7ni DNqh Dys5 FKh6 GSe8 Gk6c GrzM Henr Jo8O LUvF L78u;1;ZABlAHYAQABoAHQAdABwAGQALgBhAHAAYQBjAGgAZQAuAG8AcgBnAA==;Sosha1_v1;7;{1999F3A5-4E4F-4B06-BEDF-38497928F077};bgBtAEAAbQBpAGMAaABhAGUAbAAtAHcAZQBzAHMAZQBsAC4AZABlAA==;Fri, 11 Sep 2009 11:31:04 GMT;QQBXADoAIABPAEMAUwBQACAAcwB0AGEAcABsAGkAbgBnACAAaQBuACAAbQBvAGQAXwBzAHMAbAAgAC0AIAB1AHMAZQAgAGEAcwAgAE8AQwBTAFAAIABjAGEAYwBoAGUAIABmAG8AcgAgAGMAbABpAGUAbgB0ACAAYQB1AHQAaABlAG4AdABpAGMAYQB0AGkAbwBuAA== x-cr-puzzleid: {1999F3A5-4E4F-4B06-BEDF-38497928F077} acceptlanguage: de-DE Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-TBoneOriginalFrom: Natanael Mignon - michael-wessel.de X-TBoneOriginalTo: "dev@httpd.apache.org" X-TBoneDomainSigned: false X-Virus-Checked: Checked by ClamAV on apache.org > -----Urspr=FCngliche Nachricht----- > Von: Dr Stephen Henson [mailto:shenson@oss-institute.org] > Gesendet: Freitag, 11. September 2009 11:46 > An: dev@httpd.apache.org > Betreff: Re: OCSP stapling in mod_ssl - use as OCSP cache for client > authentication >=20 =20 > Now to the actual query, if I understand it correctly. That patch works > in > reverse to your problem. It is designed to stop thousands of OCSP > requests from > SSL clients connecting to an Apache server and all simultaneously > slamming an > OCSP responder attempting to check the status of that server > certificate. [NM] Right, the patch basically works reverse to our way. > What I think you are trying to do is to include a cache for OCSP > queries the > proxy itself makes which is IMHO the best solution. So instead of > always > consulting the OCSP responder it instead checks the cache to see if > there is a > valid OCSP response in there, if it is expired or invalid then and only > then > would it renew the response by making an actual query. Doing things > that way > doesn't need OCSP stapling support in the server(s). >=20 > If that's correct then you could reuse some of the OCSP response query > and > caching code in the stapling patch. It implements similar > functionality. [NM] That's it, exactly. And I've come to the conclusion, too, that reusing= some of your code for our purpose would be the best solution. Hopefully, w= e get it right. ;) Mit freundlichen Gr=FC=DFen / Kind regards Natanael Mignon IT-Dienstleistungen: beraten | planen | umsetzen | betreiben __________________________________________________________________________= =20 fon (+49) 511 260 911-0 (DW: - 13) fax (+49) 511 318 039-9 eMail nm@michael-wessel.de web www.michael-wessel.de Bitte senden Sie wichtige E-Mails stets auch an service@michael-wessel.de, = um sicherzustellen, dass diese zeitnah bearbeitet werden.