mod_auth_cas intermittent "authorization required error message
Phil Ames
modauthcas at gmail.com
Mon Jan 26 16:57:27 EST 2009
[.1.]
[Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(1581): [client
128.59.31.61] Entering cas_authenticate()
[Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(490): [client
128.59.31.61] entering getCASService()
[Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(510): [client
128.59.31.61] CAS Service 'https%3a%2f%2febi.cc.columbia.edu%2fnagios'
[Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(465): [client
128.59.31.61] entering getCASLoginURL()
[Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(424): [client
128.59.31.61] entering getCASGateway()
[Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(526): [client
128.59.31.61] entering redirectRequest()
[Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(538): [client
128.59.31.61] Adding outgoing header: Location:
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[.2.]
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(582): [client
128.59.31.61] Modified r->args (old
'ticketid=nkS6M5FFY9nnbyDgmVQVbngndzWPJ1RD1nsSx4H', new ''), referer:
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1406): [client
128.59.31.61] entering getResponseFromServer(), referer:
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(448): [client
128.59.31.61] entering getCASValidateURL(), referer:
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1517): [client
128.59.31.61] Validation request: GET
/validate?ticketid=nkS6M5FFY9nnbyDgmVQVbngndzWPJ1RD1nsSx4H
HTTP/1.0\nHost: wind.columbia.edu\n\n, referer:
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[.3.]
[Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1517): [client
128.59.31.61] Validation request: GET
/validate?ticketid=nkS6M5FFY9nnbyDgmVQVbngndzWPJ1RD1nsSx4H
HTTP/1.0\nHost: wind.columbia.edu\n\n, referer:
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1539): [client
128.59.31.61] Validation response: HTTP/1.1 200 OK\r\nDate: Mon, 26
Jan 2009 18:15:14 GMT\r\nServer: Apache/2.2.8\r\nContent-Length:
11\r\nConnection: close\r\nContent-Type:
text/plain\r\n\r\nyes\nsr2690\n, referer:
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[.4.]
[Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1581): [client
128.59.31.61] Entering cas_authenticate(), referer:
https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
[.5.]
[Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1539): [client
128.59.31.61] Validation response: HTTP/1.1 200 OK\r\nDate: Mon, 26
Jan 2009 18:15:14 GMT\r\nServer: Apache/2.2.8\r\nContent-Length:
3\r\nConnection: close\r\nContent-Type: text/plain\r\n\r\nno\n,
referer: https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
I have excerpted what appears to be most relevant. As others have
suggested, you can see that the same ticket id being used in both
"[.2.]" and "[.3.]" -- obviously this will fail the second time
around. The other thing that I notice is the service that you appear
to be accessing:
https%3a%2f%2febi.cc.columbia.edu%2fnagios => https://ebi.cc.columbia.edu/nagios
There is no trailing "/" but my presumption is that this is a
directory that holds an installation of Nagios? The "location" block
for Nagios does not include a DirectoryIndex, which may be a problem.
Did you try Matt's suggestion of accessing the index file directly, or
at the very least adding a trailing /? My hunch is that Apache may be
producing some type of redirect, but that the proper cookie
information is not being transmitted with that request.
It would be interesting to see what mod_auth_cas believes the CAS
'service' parameter is on that second request. You can obtain this
information by adding a log statement in the getResponseFromServer()
function. The original request contains the 'service=' parameter,
which is returned from getCASService(). A change like this to your
modified code would give us more information:
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "Validation request:
%s", validateRequest);
to:
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "Validation request: %s
for service: %s", validateRequest, getCASService(r, c));
Hope this helps.
-Phil
On Mon, Jan 26, 2009 at 4:16 PM, Shadhin rahman <sr2690 at columbia.edu> wrote:
> All,
> I have re organized my apache configs. There is no global redirect.
> However, I am still seeing two requests going out which causing problem. I
> am resubmitting my log files. Is it a problem with ssl or mod_auth_cas?
> Can someone point me to the right direction. Thanks
>
> Shadhin rahman wrote:
>>
>> I had few rewrites in apache config. I have removed them all. I tried to
>> hit the url directly and I am still seeing the error.
>> In the /nagios location there is an index.html file.
>>
>>
>> I am attaching my entire httpd.conf file with this. Please advise on
>> this. Thanks
>>
>>
>>
>> Matt Smith wrote:
>>>
>>> I see what appears to be an Apache subrequest in the error log.
>>> * Do you have any redirect or rewrite statements in your Apache conf?
>>> * Are there any higher (" <Location />") configuration blocks,
>>> particularly with AuthType statements?
>>> * What is in /nagios ? Is there an index.html, or some other file
>>> that is located via the DirectoryIndex ? If so, can you try going
>>> straight to that file, or modifying DirectoryIndex to make your target
>>> file the first item?
>>> * Would it be possible for you to send your entire Apache conf file?
>>>
>>> -Matt
>>>
>>> On Tue, Jan 20, 2009 at 1:50 PM, Shadhin rahman <sr2690 at columbia.edu>
>>> wrote:
>>>
>>>>
>>>> Matt,
>>>> per your request I have rebuild the server from trunk with the patch I
>>>> have submitted earlier. I have started apache with debug log level. I
>>>> am
>>>> adding two files with ssl_access_log and ssl_error_log. Also below is
>>>> my
>>>> CAS related configuration from apache. Thanks.
>>>>
>>>>
>>>>
>>>>
>>>> CASVersion 1
>>>> CASDebug On
>>>> CASValidateServer Off
>>>> CASLoginURL https://wind.columbia.edu/login
>>>> CASValidateURL https://wind.columbia.edu/validate
>>>> CASCookiePath /var/cas/
>>>> CASCookieEntropy 32
>>>> CASTimeout 7200
>>>> CASIdleTimeout 3600
>>>> CASCacheCleanInterval 1800
>>>> CASCookieDomain nagios.cc.columbia.edu
>>>>
>>>>
>>>>
>>>> <Location /nagios>
>>>>
>>>> SSLRequireSSL
>>>> Options ExecCGI
>>>> AllowOverride None
>>>> Order allow,deny
>>>> Allow from all
>>>> AuthType CAS
>>>> CASScope /
>>>> CASRenew Off
>>>> CASGateway Off
>>>> CASCookie MOD_AUTH_CAS
>>>> CASSecureCookie MOD_AUTH_CAS_S
>>>> CASGatewayCookie MOD_AUTH_CAS_G
>>>> CASAuthNHeader None
>>>> require valid-user
>>>>
>>>> </Location>
>>>>
>>>>
>>>>
>>>>
>>>> Benn Oshrin wrote:
>>>>
>>>>>
>>>>> It requires either service or destination (where service triggers a
>>>>> server side lookup on destination URL), iirc.
>>>>>
>>>>> -Benn-
>>>>>
>>>>> On Jan 19, 2009, at 8:11 PM, Matt Smith <matt at forsetti.com> wrote:
>>>>>
>>>>>
>>>>>
>>>>>>
>>>>>> Thanks Benn - does the validation callback require the destination
>>>>>> parameter? The posted patch seems to only include ticketid.
>>>>>>
>>>>>> On Mon, Jan 19, 2009 at 10:46 AM, Benn Oshrin
>>>>>> <benjamin.oshrin at rutgers.edu> wrote:
>>>>>>
>>>>>>
>>>>>>>
>>>>>>> "Smith, Matthew J." <matt.smith at uconn.edu> wrote on January 19, 2009
>>>>>>> 9:32:53 AM -0500:
>>>>>>>
>>>>>>> ] 4) Could someone explain the difference between WIND's protocol and
>>>>>>> ] the CAS 1.0 protocol?
>>>>>>>
>>>>>>> Basically the same, except ticket=ticketid, and I think
>>>>>>> service=destination. Also, WIND can return "affiliations" (authz
>>>>>>> attributes) as part of the plaintext reply.
>>>>>>>
>>>>>>> yes
>>>>>>> netid
>>>>>>> foo1
>>>>>>> foo2
>>>>>>> ...
>>>>>>>
>>>>>>> -Benn-
>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> Yale CAS mailing list
>>>>>>> cas at tp.its.yale.edu
>>>>>>> http://tp.its.yale.edu/mailman/listinfo/cas
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>> --
>>>>>> matt at forsetti.com
>>>>>> Key ID:D6EEC5B5
>>>>>> _______________________________________________
>>>>>> Yale CAS mailing list
>>>>>> cas at tp.its.yale.edu
>>>>>> http://tp.its.yale.edu/mailman/listinfo/cas
>>>>>>
>>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> Yale CAS mailing list
>>>>> cas at tp.its.yale.edu
>>>>> http://tp.its.yale.edu/mailman/listinfo/cas
>>>>>
>>>>>
>>>>>
>>>>
>>>> --
>>>> Shadhin Rahman
>>>> 619 Watson Hall
>>>> Columbia University Information Technology-Network Infrastructure
>>>> Cell: 347-256-7869 Work: 212-851-7161
>>>> Email: sr2690 at columbia.edu
>>>>
>>>>
>>>> 128.59.31.61 - - [20/Jan/2009:13:25:16 -0500] "GET /nagios/ HTTP/1.1"
>>>> 302
>>>> 355
>>>> 128.59.31.61 - - [20/Jan/2009:13:25:24 -0500] "GET
>>>> /nagios/?ticketid=CbtCY2pmMsLMG27GrsSTqDlbRLNpdjVRzbpr9PM HTTP/1.1" 401
>>>> 480
>>>> 128.59.31.61 - - [20/Jan/2009:13:25:24 -0500] "GET /favicon.ico
>>>> HTTP/1.1"
>>>> 200 2366
>>>>
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03
>>>> 01
>>>> 00 a6 01 00 00-a2 03 01 ........... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 160/160 bytes from BIO#2b5c69579e00 [mem: 2b5c695814db] (BIO dump
>>>> follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 49 76
>>>> 17
>>>> 0c 32 f4 99 01-09 50 56 d5 62 87 59 51 Iv..2....PV.b.YQ |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0010: e1 9a
>>>> 1a
>>>> 69 12 6b de b2-bf 69 70 4e 57 eb 07 16 ...i.k...ipNW... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0020: 00 00
>>>> 44
>>>> c0 0a c0 14 00-88 00 87 00 39 00 38 c0 ..D.........9.8. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0030: 0f c0
>>>> 05
>>>> 00 84 00 35 c0-07 c0 09 c0 11 c0 13 00 ......5......... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0040: 45 00
>>>> 44
>>>> 00 33 00 32 c0-0c c0 0e c0 02 c0 04 00 E.D.3.2......... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0050: 41 00
>>>> 04
>>>> 00 05 00 2f c0-08 c0 12 00 16 00 13 c0 A...../......... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0060: 0d c0
>>>> 03
>>>> fe ff 00 0a 01-00 00 35 00 00 00 1b 00 ..........5..... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0070: 19 00
>>>> 00
>>>> 16 6e 61 67 69-6f 73 2e 63 63 2e 63 6f ....nagios.cc.co |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0080: 6c 75
>>>> 6d
>>>> 62 69 61 2e 65-64 75 00 0a 00 08 00 06 lumbia.edu...... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0090: 00 17
>>>> 00
>>>> 18 00 19 00 0b-00 02 01 00 00 23 .............# |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1751): | 0160 -
>>>> <SPACES/NULS>
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 read client hello A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write server hello A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write certificate A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1143): [client
>>>> 128.59.31.61] handing out temporary 1024 bit DH key
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write key exchange A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write server done A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 flush data
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03
>>>> 01
>>>> 00 86 ..... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 134/134 bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump
>>>> follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 10 00
>>>> 00
>>>> 82 00 80 51 19-e1 83 e7 dd fb 29 21 7b ......Q......)!{ |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0010: 4c 6d
>>>> 78
>>>> c7 3b 39 47 c4-4a 93 3c 94 bd 21 f2 50 Lmx.;9G.J.<..!.P |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0020: 86 24
>>>> 3f
>>>> 62 93 ce d3 f5-6e e3 b7 c9 3d a5 3c 0b .$?b....n...=.<. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0030: f9 7e
>>>> 8c
>>>> 22 45 c4 28 0d-7d 4e 05 a5 73 91 93 b1 .~."E.(.}N..s... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0040: 5f a0
>>>> 75
>>>> 59 48 14 ba 6b-c3 de d0 50 24 c5 fa cf _.uYH..k...P$... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0050: f3 1a
>>>> ed
>>>> c2 9c 3e 1d e6-a2 d4 19 87 fb 07 7d 2c .....>........}, |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0060: d9 2d
>>>> ca
>>>> 52 77 59 0d 04-3a 49 04 5e a2 85 68 a7 .-.RwY..:I.^..h. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0070: ab 7e
>>>> 30
>>>> bb 3a 3e 40 9d-3b bd 21 71 c0 90 d9 98 .~0.:>@.;.!q.... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0080: 02 56
>>>> f6
>>>> 89 a7 85 .V.... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 read client key exchange A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 14 03
>>>> 01
>>>> 00 01 ..... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 1/1
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 01
>>>> . |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03
>>>> 01
>>>> 00 30 ....0 |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 48/48 bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: b0 67
>>>> e5
>>>> ae 6e 55 67 aa-1c 37 47 71 51 27 c6 2a .g..nUg..7GqQ'.* |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0010: af 85
>>>> 6f
>>>> 6e 31 90 ad dd-c3 5d 4a 21 ef c6 c0 1c ..on1....]J!.... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0020: d7 4a
>>>> 36
>>>> 70 bc dc 1a 26-56 63 db 1e 3e f5 8b 96 .J6p...&Vc..>... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 read finished A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write change cipher spec A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write finished A
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 flush data
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(670): inside
>>>> shmcb_store_session
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(676):
>>>> session_id[0]=95, masked index=31
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(1059): entering
>>>> shmcb_insert_encoded_session, *queue->pos_count = 0
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(983): entering
>>>> shmcb_expire_division
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(1115): we have
>>>> 13853
>>>> bytes and 133 indexes free - enough
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(1144): storing in
>>>> index 0, at offset 0
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(1159):
>>>> session_id[0]=95, idx->s_id2=23
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(1170): leaving now
>>>> with 148 bytes in the cache and 1 indexes
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(1174): leaving
>>>> shmcb_insert_encoded_session
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(704): leaving
>>>> shmcb_store successfully
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_scache_shmcb.c(418): shmcb_store
>>>> successful
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1598):
>>>> Inter-Process
>>>> Session Cache: request=SET status=OK
>>>> id=5F17C4630862B8351C5D9C110337F92A12A6DA1ADF5D2872146FAB8665E1343D
>>>> timeout=300s (session caching)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_kernel.c(1756): OpenSSL:
>>>> Handshake: done
>>>> [Tue Jan 20 13:25:16 2009] [info] Connection: Client IP: 128.59.31.61,
>>>> Protocol: TLSv1, Cipher: DHE-RSA-AES256-SHA (256/256 bits)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 17 03
>>>> 01
>>>> 02 60 ....` |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 608/608 bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump
>>>> follows)
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0000: 37 9d
>>>> 72
>>>> 9c c7 25 b0 2e-32 d7 42 b0 b9 ea c6 ce 7.r..%..2.B..... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0010: 03 fe
>>>> 5a
>>>> 63 90 a0 b2 8a-76 66 f2 56 98 9f 3a a3 ..Zc....vf.V..:. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0020: 8b 7f
>>>> 41
>>>> 3b 2a 45 c5 b6-f9 e0 d1 68 28 bb db ab ..A;*E.....h(... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0030: 11 32
>>>> 1e
>>>> 85 3e f0 1e b2-72 e6 8f 78 89 e4 67 29 .2..>...r..x..g) |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0040: b4 17
>>>> b6
>>>> dd 4b 0b 4e f7-89 b6 02 0d 2b 5c a7 ab ....K.N.....+\\.. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0050: b0 95
>>>> dd
>>>> d1 9e 4e 36 43-df a4 a8 21 30 d2 58 be .....N6C...!0.X. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0060: 5f 7c
>>>> 68
>>>> 08 4d b2 44 76-44 1a 45 52 61 14 b8 99 _|h.M.DvD.ERa... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0070: 20 2a
>>>> 54
>>>> 02 4c d2 e5 b8-b0 57 67 35 4e 7b 4d 47 *T.L....Wg5N{MG |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0080: ae 2a
>>>> 3f
>>>> 8a 4f ac 63 7d-2b 99 d8 50 35 55 b7 87 .*?.O.c}+..P5U.. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0090: 42 f7
>>>> ea
>>>> ff 0d 23 cd 97-ec 2c 44 73 a1 0f bc 19 B....#...,Ds.... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 00a0: 68 61
>>>> 1d
>>>> a5 2c 42 8b b6-2f fe f8 48 cf a0 8b 38 ha..,B../..H...8 |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 00b0: da f7
>>>> 2a
>>>> ea 17 dd 0c 8d-db 8b 5d ec 5c a8 3f c8 ..*.......].\\.?. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 00c0: f9 a4
>>>> 99
>>>> ca 3b 6c 54 ee-90 d6 75 e1 17 e0 cd 69 ....;lT...u....i |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 00d0: 14 3d
>>>> df
>>>> ec f7 f6 98 1f-e2 b0 5b 1b 10 aa 69 7b .=........[...i{ |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 00e0: 87 35
>>>> 35
>>>> a9 05 5d b1 8f-fc 84 2b 2d 49 a5 b2 bf .55..]....+-I... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 00f0: b2 28
>>>> e9
>>>> f1 29 b0 c6 7c-04 d8 a3 ab 6c 46 9d a6 .(..)..|....lF.. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0100: 3e 51
>>>> b8
>>>> 99 3e c7 db 3c-55 83 c2 1a 49 6f 7f 1c >Q..>..<U...Io.. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0110: cc b3
>>>> 77
>>>> e4 38 8e f3 61-7e 9f ea 51 49 3c 49 fc ..w.8..a~..QI<I. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0120: 55 65
>>>> 11
>>>> 09 e3 a2 d8 52-0c 0b 44 6e 1e a2 24 94 Ue.....R..Dn..$. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0130: 16 47
>>>> c7
>>>> b0 ce 96 c4 10-66 81 00 c0 34 2f aa 49 .G......f...4/.I |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0140: b3 5c
>>>> 0a
>>>> d4 a6 9f 83 81-51 a2 c6 a6 74 96 66 bb .\\......Q...t.f. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0150: 2e ed
>>>> 89
>>>> e3 15 95 67 60-ca d2 e5 d4 c1 69 75 b5 ......g`.....iu. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0160: dd 09
>>>> fc
>>>> 13 1c de 1d d1-89 83 f9 a6 d9 4b 2a 6e .............K*n |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0170: f3 6c
>>>> 79
>>>> a1 69 7d f2 47-66 fe 17 89 3b 2d a3 ea .ly.i}.Gf...;-.. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0180: 7d fd
>>>> d3
>>>> 3d 47 13 dd 3c-7f 89 36 dd b2 e6 ab 86 }..=G..<..6..... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0190: 3e da
>>>> e8
>>>> 8b 0e af 47 20-aa ba e8 7a 9d 3e a1 e1 >.....G ...z.>.. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 01a0: 87 0c
>>>> 59
>>>> 95 14 fa b8 f7-17 e6 1e dc d5 ec 71 9e ..Y...........q. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 01b0: 44 e9
>>>> 5e
>>>> 48 dd 33 d9 cb-79 6c b5 34 a5 a6 87 78 D.^H.3..yl.4...x |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 01c0: 40 fb
>>>> 60
>>>> f6 a2 79 15 f4-06 bf 7b 82 96 09 4b c0 @.`..y....{...K. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 01d0: ec 80
>>>> 34
>>>> 13 06 cf b8 89-e1 14 91 c0 88 e9 fa ba ..4............. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 01e0: 7c e7
>>>> 9b
>>>> 8b 93 dc 44 a7-e4 c6 af a9 ab a4 a0 3f |.....D........? |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 01f0: 1e c0
>>>> 25
>>>> e5 fc 03 fd 1b-21 ed e2 be cb 31 b8 d7 ..%.....!....1.. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0200: c1 63
>>>> 24
>>>> a8 75 f9 00 73-73 92 bc c8 c0 83 6e 11 .c$.u..ss.....n. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0210: 4e 29
>>>> 02
>>>> 79 b9 37 4e 0f-7d 98 96 3a 51 1b c2 45 N).y.7N.}..:Q..E |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0220: 8e 64
>>>> fc
>>>> 4c d2 8d 7e 30-31 3e a2 bb a5 b4 29 e1 .d.L..~01>....). |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0230: 3a 02
>>>> e6
>>>> fd 7c 1e cf 0e-8c 0a 2d db 5c b1 7f 8d :...|.....-.\\... |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0240: 0c 12
>>>> d6
>>>> ee 76 de 45 4d-16 f4 d9 de 20 03 6d 8a ....v.EM.... .m. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1747): | 0250: 6e 96
>>>> 2e
>>>> a2 2b b7 20 1c-a0 07 34 ee 5e 9a 7d db n...+. ...4.^.}. |
>>>> [Tue Jan 20 13:25:16 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:16 2009] [info] Initial (No.1) HTTPS request received
>>>> for
>>>> child 1 (server nagios.cc.columbia.edu:443)
>>>> [Tue Jan 20 13:25:16 2009] [debug] mod_auth_cas.c(1581): [client
>>>> 128.59.31.61] Entering cas_authenticate()
>>>> [Tue Jan 20 13:25:16 2009] [debug] mod_auth_cas.c(490): [client
>>>> 128.59.31.61] entering getCASService()
>>>> [Tue Jan 20 13:25:16 2009] [debug] mod_auth_cas.c(510): [client
>>>> 128.59.31.61] CAS Service
>>>> 'https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f'
>>>> [Tue Jan 20 13:25:16 2009] [debug] mod_auth_cas.c(465): [client
>>>> 128.59.31.61] entering getCASLoginURL()
>>>> [Tue Jan 20 13:25:16 2009] [debug] mod_auth_cas.c(424): [client
>>>> 128.59.31.61] entering getCASGateway()
>>>> [Tue Jan 20 13:25:16 2009] [debug] mod_auth_cas.c(526): [client
>>>> 128.59.31.61] entering redirectRequest()
>>>> [Tue Jan 20 13:25:16 2009] [debug] mod_auth_cas.c(538): [client
>>>> 128.59.31.61] Adding outgoing header: Location:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0000: 17 03
>>>> 01
>>>> 02 f0 ..... |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 752/752 bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump
>>>> follows)
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0000: a1 07
>>>> cf
>>>> 4c 4c bb 42 5a-c5 1a 68 cc dc de 21 b9 ...LL.BZ..h...!. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0010: 47 61
>>>> f3
>>>> 5c 75 22 f4 bf-67 0c 1c 77 e1 43 75 50 Ga.\\u"..g..w.CuP |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0020: 1b c4
>>>> 4a
>>>> e2 ff ba ef df-e6 dd c3 08 36 6d 3a 59 ..J.........6m:Y |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0030: 77 24
>>>> d8
>>>> 55 20 78 48 18-6c b8 ff 7b 71 1b 3d 3a w$.U xH.l..{q.=: |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0040: 5b c7
>>>> 9b
>>>> 05 80 57 1e f9-e5 5c da 3c 04 b3 e4 d0 [....W...\\.<.... |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0050: 16 97
>>>> 53
>>>> 55 06 91 7b 78-9a 7c af 56 04 17 52 bc ..SU..{x.|.V..R. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0060: 1b 8c
>>>> b3
>>>> a1 d9 2d c1 e8-07 58 22 0e c8 5f af 30 .....-...X".._.0 |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0070: 79 17
>>>> e1
>>>> be 91 98 b6 e4-30 61 3b f8 b7 eb 93 4c y.......0a;....L |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0080: dd 5d
>>>> 3d
>>>> 93 c8 a0 9a fe-8a c2 7d 2e f3 ff 25 3c .]=.......}...%< |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0090: 35 db
>>>> ea
>>>> 78 2f b5 c0 df-f0 77 48 94 bb f8 53 76 5..x/....wH...Sv |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 00a0: 16 7c
>>>> c7
>>>> 0c 48 7f 38 e6-00 24 c6 4f 7d f2 5b b2 .|..H.8..$.O}.[. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 00b0: 52 ea
>>>> 20
>>>> ce 1b ab 7c b0-07 fa b9 3a 52 c5 3b 34 R. ...|....:R.;4 |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 00c0: 81 a5
>>>> ef
>>>> eb 5c d0 d4 0f-33 02 a5 96 56 9c c7 85 ....\\...3...V... |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 00d0: ee 7e
>>>> 1e
>>>> 62 b9 ca 5a 43-65 b6 60 4c 54 42 35 dc .~.b..ZCe.`LTB5. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 00e0: 3e 74
>>>> bc
>>>> be 64 be d2 1e-60 99 29 66 10 38 67 03 >t..d...`.)f.8g. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 00f0: 14 06
>>>> df
>>>> 38 e3 03 81 8b-84 3f 87 1f 90 97 f7 8a ...8.....?...... |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0100: fe 6a
>>>> 19
>>>> a0 11 f2 3f 0b-10 c2 f4 5f 61 cb f2 d3 .j....?...._a... |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0110: 1c 26
>>>> 7e
>>>> a7 a4 17 10 3e-16 8e a1 97 b3 28 87 47 .&~....>.....(.G |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0120: f5 f5
>>>> 42
>>>> 62 e6 35 b1 ca-1c 64 00 a2 5e 05 0d 39 ..Bb.5...d..^..9 |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0130: e8 e0
>>>> 96
>>>> 18 6d cc 4b df-0f d6 97 a2 25 0b 45 e7 ....m.K.....%.E. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0140: 26 5f
>>>> d7
>>>> 0e b6 1a e5 a1-c6 2f c0 1f ee 93 2c 69 &_......./....,i |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0150: 26 d2
>>>> 95
>>>> b0 c3 a2 59 d1-53 f5 a6 14 4b f5 e3 7c &.....Y.S...K..| |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0160: 05 5d
>>>> be
>>>> 2b b8 51 4f ee-22 63 4d 3e b8 69 76 b2 .].+.QO."cM>.iv. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0170: 4f 32
>>>> fa
>>>> bb 45 d5 8e a7-59 82 6b 8e ab 23 08 67 O2..E...Y.k..#.g |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0180: 65 4a
>>>> 66
>>>> 09 e1 f1 d6 c6-15 4f c3 e0 b7 56 39 3f eJf......O...V9? |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0190: 68 a5
>>>> 31
>>>> 38 c3 ac 40 5b-a7 25 0f 52 21 1d 15 97 h.18..@[.%.R!... |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 01a0: 22 4c
>>>> 91
>>>> 48 30 dd 70 43-a0 d2 09 fa 09 87 3e 91 "L.H0.pC......>. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 01b0: 7b 69
>>>> 08
>>>> 71 33 56 26 c3-e4 00 b6 4b 41 61 5a 42 {i.q3V&....KAaZB |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 01c0: 51 b6
>>>> 99
>>>> bf e8 e2 63 df-76 81 49 80 99 85 71 f3 Q.....c.v.I...q. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 01d0: e6 cb
>>>> ad
>>>> 33 c4 55 d9 14-8d 7a d4 47 57 0f a5 91 ...3.U...z.GW... |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 01e0: 12 fc
>>>> 85
>>>> 6a 03 2c 5e 91-8f e3 7f 0e 5d 99 fa 5d ...j.,^.....]..] |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 01f0: 8d 69
>>>> fb
>>>> 6b 82 02 4a 5d-60 a5 19 1b 20 75 3a 71 .i.k..J]`... u:q |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0200: e8 65
>>>> 5a
>>>> 9a 1d e2 16 ba-39 1e b2 a9 fb 12 44 94 .eZ.....9.....D. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0210: 1e 4b
>>>> 02
>>>> d3 af 14 22 90-77 29 3d 8e a8 78 5b ff .K....".w)=..x[. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0220: 89 f8
>>>> 00
>>>> 7f d9 50 4d 42-f1 1b 99 50 08 cd 56 22 .....PMB...P..V" |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0230: 07 d3
>>>> 3e
>>>> c3 ee a6 83 d4-2a 2d 16 b9 eb a7 ed 22 ..>.....*-....." |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0240: ae ec
>>>> a2
>>>> e7 b4 ac 4b c1-2e 28 16 85 b9 3d 5e dc ......K..(...=^. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0250: f3 cf
>>>> c1
>>>> 06 7d 6d 9b cf-8b 4f 40 69 16 5e 6e e9 ....}m...O at i.^n. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0260: 8e f8
>>>> 63
>>>> 5f bc 56 db c5-e5 f6 58 16 90 8c d6 a7 ..c_.V....X..... |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0270: a5 b0
>>>> 49
>>>> 16 c2 3c 19 a6-d4 20 60 dc 1a 41 37 3f ..I..<... `..A7? |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0280: 9a a2
>>>> fb
>>>> bc d4 db d3 5b-59 1d 3c 67 76 42 22 d0 .......[Y.<gvB". |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 0290: 77 11
>>>> aa
>>>> c9 bb eb d5 d4-a2 b8 38 1e 03 d1 6f ed w.........8...o. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 02a0: 35 74
>>>> 68
>>>> 57 91 ee 91 53-e4 86 98 54 b4 7a 41 b7 5thW...S...T.zA. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 02b0: c4 65
>>>> 77
>>>> d2 47 9f 6c 36-5e 88 a6 33 2b 6a 42 00 .ew.G.l6^..3+jB. |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 02c0: dd 5f
>>>> c0
>>>> be bb b4 fa 74-0a 13 2e 78 4c 80 20 d7 ._.....t...xL. . |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 02d0: 9e 1d
>>>> 68
>>>> ad 6f 0e 99 06-64 7d 87 05 09 2d b2 52 ..h.o...d}...-.R |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1747): | 02e0: 41 02
>>>> 5d
>>>> 0a 52 96 a2 56-0d 2b db 23 1c 58 23 34 A.].R..V.+.#.X#4 |
>>>> [Tue Jan 20 13:25:23 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:23 2009] [info] Subsequent (No.2) HTTPS request
>>>> received
>>>> for child 1 (server nagios.cc.columbia.edu:443)
>>>> [Tue Jan 20 13:25:23 2009] [debug] mod_auth_cas.c(1581): [client
>>>> 128.59.31.61] Entering cas_authenticate(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:23 2009] [debug] mod_auth_cas.c(582): [client
>>>> 128.59.31.61] Modified r->args (old
>>>> 'ticketid=CbtCY2pmMsLMG27GrsSTqDlbRLNpdjVRzbpr9PM', new ''), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:23 2009] [debug] mod_auth_cas.c(1406): [client
>>>> 128.59.31.61] entering getResponseFromServer(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(448): [client
>>>> 128.59.31.61] entering getCASValidateURL(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1517): [client
>>>> 128.59.31.61] Validation request: GET
>>>> /validate?ticketid=CbtCY2pmMsLMG27GrsSTqDlbRLNpdjVRzbpr9PM
>>>> HTTP/1.0\nHost:
>>>> wind.columbia.edu\n\n, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1525): [client
>>>> 128.59.31.61] Request successfully transmitted, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1533): [client
>>>> 128.59.31.61] Received 143 bytes of response, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1533): [client
>>>> 128.59.31.61] Received 11 bytes of response, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1533): [client
>>>> 128.59.31.61] Received 0 bytes of response, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1539): [client
>>>> 128.59.31.61] Validation response: HTTP/1.1 200 OK\r\nDate: Tue, 20 Jan
>>>> 2009
>>>> 18:25:24 GMT\r\nServer: Apache/2.2.8\r\nContent-Length:
>>>> 11\r\nConnection:
>>>> close\r\nContent-Type: text/plain\r\n\r\nyes\nsr2690\n, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1184): [client
>>>> 128.59.31.61] entering isValidCASTicket(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1015): [client
>>>> 128.59.31.61] entering createCASCookie(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(863): [client
>>>> 128.59.31.61] entering CASCleanCache(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(901): [client
>>>> 128.59.31.61] Beginning cache clean, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(919): [client
>>>> 128.59.31.61] Processing cache file 'bf0caf5f058c5941484792e664369f0d',
>>>> referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(748): [client
>>>> 128.59.31.61] entering readCASCacheFile(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [info] [client 128.59.31.61] Connection to
>>>> child
>>>> 2 established (server nagios.cc.columbia.edu:443)
>>>> [Tue Jan 20 13:25:24 2009] [info] Seeding PRNG with 144 bytes of entropy
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1752): OpenSSL:
>>>> Handshake: start
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> before/accept initialization
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 11/11 bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03
>>>> 01
>>>> 00 c6 01 00 00-c2 03 01 ........... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 192/192 bytes from BIO#2b5c69579e00 [mem: 2b5c695814db] (BIO dump
>>>> follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 49 76
>>>> 17
>>>> 14 5e ba c5 fb-6f 29 23 fc b1 fe 13 b5 Iv..^...o)#..... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0010: 84 d6
>>>> a2
>>>> ce 98 b6 82 6b-d1 df 58 ad 65 e1 36 38 .......k..X.e.68 |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0020: 20 5f
>>>> 17
>>>> c4 63 08 62 b8-35 1c 5d 9c 11 03 37 f9 _..c.b.5.]...7. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0030: 2a 12
>>>> a6
>>>> da 1a df 5d 28-72 14 6f ab 86 65 e1 34 *.....](r.o..e.4 |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0040: 3d 00
>>>> 44
>>>> c0 0a c0 14 00-88 00 87 00 39 00 38 c0 =.D.........9.8. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0050: 0f c0
>>>> 05
>>>> 00 84 00 35 c0-07 c0 09 c0 11 c0 13 00 ......5......... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0060: 45 00
>>>> 44
>>>> 00 33 00 32 c0-0c c0 0e c0 02 c0 04 00 E.D.3.2......... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0070: 41 00
>>>> 04
>>>> 00 05 00 2f c0-08 c0 12 00 16 00 13 c0 A...../......... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0080: 0d c0
>>>> 03
>>>> fe ff 00 0a 01-00 00 35 00 00 00 1b 00 ..........5..... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0090: 19 00
>>>> 00
>>>> 16 6e 61 67 69-6f 73 2e 63 63 2e 63 6f ....nagios.cc.co |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00a0: 6c 75
>>>> 6d
>>>> 62 69 61 2e 65-64 75 00 0a 00 08 00 06 lumbia.edu...... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00b0: 00 17
>>>> 00
>>>> 18 00 19 00 0b-00 02 01 00 00 23 .............# |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1751): | 0192 -
>>>> <SPACES/NULS>
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(720): inside
>>>> shmcb_retrieve_session
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(732): id[0]=95,
>>>> masked
>>>> index=31
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(1195): entering
>>>> shmcb_lookup_session_id
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(983): entering
>>>> shmcb_expire_division
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(1205): loop=0,
>>>> count=1, curr_pos=0
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(1209):
>>>> idx->s_id2=23,
>>>> id[1]=23, offset=0
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(1226): at index 0,
>>>> found possible session match
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(1245): a match!
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(748): leaving
>>>> shmcb_retrieve_session
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_scache_shmcb.c(435):
>>>> shmcb_retrieve
>>>> had a hit
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1598):
>>>> Inter-Process
>>>> Session Cache: request=GET status=FOUND
>>>> id=5F17C4630862B8351C5D9C110337F92A12A6DA1ADF5D2872146FAB8665E1343D
>>>> (session
>>>> reuse)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 read client hello A
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write server hello A
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write change cipher spec A
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 write finished A
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 flush data
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 14 03
>>>> 01
>>>> 00 01 ..... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 1/1
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 01
>>>> . |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03
>>>> 01
>>>> 00 30 ....0 |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 48/48 bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: f4 ab
>>>> a6
>>>> ee 74 65 7e c5-f1 91 84 ca 44 f2 bc 00 ....te~.....D... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0010: 11 bc
>>>> 26
>>>> 83 33 98 2d 41-f6 f1 53 74 00 d1 5f d0 ..&.3.-A..St.._. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0020: 2e 47
>>>> 1b
>>>> 8c 2a 59 0f b3-d8 cf 21 ae 44 d7 02 f3 .G..*Y....!.D... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL:
>>>> Loop:
>>>> SSLv3 read finished A
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_kernel.c(1756): OpenSSL:
>>>> Handshake: done
>>>> [Tue Jan 20 13:25:24 2009] [info] Connection: Client IP: 128.59.31.61,
>>>> Protocol: TLSv1, Cipher: DHE-RSA-AES256-SHA (256/256 bits)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 17 03
>>>> 01
>>>> 02 f0 ..... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 752/752 bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump
>>>> follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 99 55
>>>> 1f
>>>> c0 8c d1 e4 66-3a 3a 3a e6 3f 2d b8 0b .U.....f:::.?-.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0010: 46 3b
>>>> 70
>>>> 8b 0f b9 f8 36-8b 94 70 a9 26 41 19 bf F;p....6..p.&A.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0020: 70 69
>>>> 5b
>>>> 5b eb b4 79 32-c7 8c 56 25 bd c3 cc 22 pi[[..y2..V%..." |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0030: be 5f
>>>> 41
>>>> e0 ab 1f cd 20-3c e7 40 34 96 a7 7c 3b ._A.... <. at 4..|; |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0040: ef 57
>>>> 85
>>>> 80 cc 5c 33 b4-0a a4 c7 43 39 3f 51 b6 .W...\\3....C9?Q. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0050: e0 9d
>>>> 45
>>>> c1 23 1d a1 f6-9f 57 d3 1d 22 5a 36 66 ..E.#....W.."Z6f |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0060: 92 e3
>>>> b0
>>>> 05 d6 62 6d 3f-13 38 25 9f 57 74 70 dd .....bm?.8%.Wtp. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0070: fc 5c
>>>> 80
>>>> 35 7b 31 7f 02-03 61 1e 7a f1 27 47 79 .\\.5{1...a.z.'Gy |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0080: c8 36
>>>> 8a
>>>> 34 85 14 ae c5-f9 6d ad 27 93 e5 97 bb .6.4.....m.'.... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0090: 48 3f
>>>> 38
>>>> f6 d6 d1 e3 5d-2c f2 99 1b cf af 3a c9 H?8....],.....:. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00a0: e0 fd
>>>> 0d
>>>> db 76 73 e4 d2-e9 b6 36 bc 1d 94 68 a2 ....vs....6...h. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00b0: 32 df
>>>> 26
>>>> 55 b0 b4 80 73-dd 44 89 7e b4 a9 55 0f 2.&U...s.D.~..U. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00c0: 61 f0
>>>> 5a
>>>> 5a 84 ae d0 96-0d a1 56 2b 23 05 10 7c a.ZZ......V+#..| |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00d0: ba f0
>>>> e3
>>>> e4 cc 22 33 fc-7f 49 4f 63 a4 4a 3b e8 ....."3..IOc.J;. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00e0: 20 66
>>>> e9
>>>> 0c 75 46 ab f6-df 10 6c ee 24 28 5d c6 f..uF....l.$(]. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00f0: 3a 1e
>>>> 02
>>>> 19 5d 23 fe 65-53 ec 78 66 ed c4 84 8d :...]#.eS.xf.... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0100: e8 3a
>>>> d3
>>>> be 6d 52 44 25-88 ba 55 1f 4b 66 61 ed .:..mRD%..U.Kfa. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0110: f4 6b
>>>> e5
>>>> 1f 82 f0 42 b2-dc b4 f5 12 2b 4c 44 b6 .k....B.....+LD. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0120: f4 b8
>>>> 28
>>>> 35 24 dd 50 f4-8d 46 f8 39 87 b2 91 ec ..(5$.P..F.9.... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0130: ba b9
>>>> d6
>>>> b0 61 69 5b 12-06 74 de 80 40 b6 13 22 ....ai[..t.. at .." |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0140: 39 de
>>>> 5d
>>>> 05 2c 8d ef 01-a2 d3 e7 8e 2a c6 07 5a 9.].,.......*..Z |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0150: b6 2c
>>>> 5e
>>>> b1 e7 ad 63 b9-5c ab 5b e6 79 09 ba df .,^...c.\\.[.y... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0160: 16 33
>>>> 50
>>>> 8e 53 b3 ef 76-a9 22 17 7c 78 39 cd 9b .3P.S..v.".|x9.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0170: 70 b7
>>>> 1e
>>>> d8 6d 89 0f a5-df a8 3a a9 20 a9 6d a7 p...m.....:. .m. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0180: ab b0
>>>> 36
>>>> 05 7a 33 b5 84-cf d4 e7 50 c5 d9 af 07 ..6.z3.....P.... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0190: 21 c9
>>>> 71
>>>> 47 02 81 40 5c-f9 cb 47 fe f8 14 70 d4 !.qG..@\\..G...p. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01a0: 3e 32
>>>> fc
>>>> 2c d9 2f 7a 8e-65 94 d7 e9 f1 7e f3 92 >2.,./z.e....~.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01b0: 68 b7
>>>> 6f
>>>> e7 9a 17 2c a8-13 39 d7 ab 30 79 79 14 h.o...,..9..0yy. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01c0: 66 a5
>>>> f6
>>>> dc b6 10 e1 f3-f0 b1 a0 fb be ad 4e 5e f.............N^ |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01d0: 4a bf
>>>> 12
>>>> b9 77 5b a6 f4-64 66 d6 03 fc df da 94 J...w[..df...... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01e0: 7b 8d
>>>> 30
>>>> 67 72 26 1b 7c-b4 b6 c2 76 80 62 15 cb {.0gr&.|...v.b.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01f0: 06 c8
>>>> 0f
>>>> 08 90 95 96 0f-8f 0d d8 ae 7c 49 22 86 ............|I". |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0200: 89 82
>>>> a0
>>>> 82 16 58 da 6d-2a 56 53 8a f6 99 fd 65 .....X.m*VS....e |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0210: c7 cc
>>>> 23
>>>> ef ee f9 c8 06-18 d9 3e c5 67 12 b3 93 ..#.......>.g... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0220: ad 90
>>>> 14
>>>> b0 3c e2 3c ed-c9 ca 31 e1 4f e7 76 5b ....<.<...1.O.v[ |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0230: d9 ac
>>>> d1
>>>> 84 cb 74 46 ff-33 88 34 a5 36 c0 9c 66 .....tF.3.4.6..f |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0240: 1c 97
>>>> 51
>>>> 6f 7e 2e 35 b0-1e ad 48 7d 2e 84 8f 77 ..Qo~.5...H}...w |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0250: 67 f7
>>>> 16
>>>> e4 36 73 7b 5c-86 35 f3 67 fc 5f 7e bc g...6s{\\.5.g._~. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0260: 49 22
>>>> cd
>>>> fe 51 7a 43 e4-42 e9 86 b8 03 f6 0d 35 I"..QzC.B......5 |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0270: 73 16
>>>> 6e
>>>> 41 b4 36 d3 a5-6e 6c 12 b9 2d ea 2c 17 s.nA.6..nl..-.,. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0280: 09 91
>>>> 1d
>>>> ed 2b a7 84 fc-47 04 1d 04 63 6b e9 e9 ....+...G...ck.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0290: 0c fd
>>>> 28
>>>> ed a7 32 38 f1-21 62 23 27 eb a8 ce 5a ..(..28.!b#'...Z |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 02a0: e8 3a
>>>> 2a
>>>> 03 1d d9 5d fa-f8 ce 4c cb 20 2d 89 d1 .:*...]...L. -.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 02b0: 38 b9
>>>> 36
>>>> f1 e5 fe 85 71-b2 c5 54 ac ef 83 40 a2 8.6....q..T... at . |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 02c0: 05 bc
>>>> 16
>>>> 34 16 fa 04 7a-f8 78 9a 4a 85 c3 9b bf ...4...z.x.J.... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 02d0: c2 95
>>>> 20
>>>> 3b 3b 56 6a 3b-06 08 a5 5c 7e bc 4f 95 .. ;;Vj;...\\~.O. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 02e0: d1 47
>>>> 5c
>>>> 89 b6 5f 04 a7-b7 10 c5 82 1e 72 d0 e2 .G\\.._.......r.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [info] Initial (No.1) HTTPS request received
>>>> for
>>>> child 2 (server nagios.cc.columbia.edu:443)
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1581): [client
>>>> 128.59.31.61] Entering cas_authenticate(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(582): [client
>>>> 128.59.31.61] Modified r->args (old
>>>> 'ticketid=CbtCY2pmMsLMG27GrsSTqDlbRLNpdjVRzbpr9PM', new ''), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1406): [client
>>>> 128.59.31.61] entering getResponseFromServer(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(448): [client
>>>> 128.59.31.61] entering getCASValidateURL(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1517): [client
>>>> 128.59.31.61] Validation request: GET
>>>> /validate?ticketid=CbtCY2pmMsLMG27GrsSTqDlbRLNpdjVRzbpr9PM
>>>> HTTP/1.0\nHost:
>>>> wind.columbia.edu\n\n, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1525): [client
>>>> 128.59.31.61] Request successfully transmitted, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1533): [client
>>>> 128.59.31.61] Received 142 bytes of response, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1533): [client
>>>> 128.59.31.61] Received 3 bytes of response, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1533): [client
>>>> 128.59.31.61] Received 0 bytes of response, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1539): [client
>>>> 128.59.31.61] Validation response: HTTP/1.1 200 OK\r\nDate: Tue, 20 Jan
>>>> 2009
>>>> 18:25:24 GMT\r\nServer: Apache/2.2.8\r\nContent-Length: 3\r\nConnection:
>>>> close\r\nContent-Type: text/plain\r\n\r\nno\n, referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] mod_auth_cas.c(1184): [client
>>>> 128.59.31.61] entering isValidCASTicket(), referer:
>>>>
>>>> https://wind.columbia.edu/login?destination=https%3a%2f%2fnagios.cc.columbia.edu%2fnagios%2f
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 5/5
>>>> bytes from BIO#2b5c69579e00 [mem: 2b5c695814d0] (BIO dump follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 17 03
>>>> 01
>>>> 02 40 ....@ |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
>>>> 576/576 bytes from BIO#2b5c69579e00 [mem: 2b5c695814d5] (BIO dump
>>>> follows)
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1722):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0000: 39 09
>>>> 12
>>>> f5 8e 27 1b e1-72 81 75 c7 a3 74 cc 2b 9....'..r.u..t.+ |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0010: 27 08
>>>> 77
>>>> 5f 26 e0 42 ef-99 50 99 83 f9 9d 51 96 '.w_&.B..P....Q. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0020: f2 ba
>>>> a6
>>>> a7 6a db f6 07-91 89 88 5d 50 e7 4d 89 ....j......]P.M. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0030: cc ed
>>>> db
>>>> 66 3c e9 d3 44-68 90 3e 24 47 da 9a 8d ...f<..Dh.>$G... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0040: ef c3
>>>> f5
>>>> d6 88 86 9b 31-5b b7 08 49 67 1b c8 64 .......1[..Ig..d |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0050: 31 c7
>>>> f2
>>>> 60 a7 28 d0 3d-53 1b d7 0f 9c 5a 7a bf 1..`.(.=S....Zz. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0060: 8f fb
>>>> f4
>>>> 19 79 b3 fc d1-fa 6b 39 84 93 a9 03 94 ....y....k9..... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0070: 15 1b
>>>> cb
>>>> 7e 60 8a c7 61-b0 13 a2 44 05 48 96 2f ...~`..a...D.H./ |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0080: 42 87
>>>> c0
>>>> bb aa 62 10 1e-6c 93 f2 2b 2d 4e 1a bf B....b..l..+-N.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0090: 06 d6
>>>> 9d
>>>> 85 b8 a1 32 f8-2c 22 b0 d5 7b 48 b2 3c ......2.,"..{H.< |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00a0: 93 a9
>>>> 6f
>>>> 17 ce 02 7c 82-0a a2 58 ef 6d d4 b8 c5 ..o...|...X.m... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00b0: 34 e6
>>>> 38
>>>> c1 58 8c a4 37-3a 76 76 83 18 4b 20 b2 4.8.X..7:vv..K . |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00c0: 5f 51
>>>> df
>>>> b3 76 1c 9a 59-57 b8 c8 81 f9 0f 89 62 _Q..v..YW......b |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00d0: 5b 54
>>>> 37
>>>> 64 ab 02 4e 45-e4 4c 7d 77 98 c3 46 d6 [T7d..NE.L}w..F. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00e0: 9d 3f
>>>> 98
>>>> b9 70 46 25 15-9f b6 1e 2d b3 d6 1d 5a .?..pF%....-...Z |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 00f0: da 8c
>>>> a9
>>>> 7c 47 b5 41 4a-22 a4 25 12 62 87 30 6a ...|G.AJ".%.b.0j |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0100: c6 a3
>>>> a8
>>>> 12 c0 e9 ab 7f-c1 d8 50 8e 3a 2f 75 a2 ..........P.:/u. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0110: 91 ac
>>>> 75
>>>> 44 9a ac ca 26-55 21 9b 1f 8b f8 8c 7b ..uD...&U!.....{ |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0120: eb 19
>>>> 48
>>>> ca 0f b1 48 3c-18 68 52 08 47 0b 03 aa ..H...H<.hR.G... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0130: 78 d9
>>>> fc
>>>> 15 35 fb 25 fa-ce f4 50 8e b7 d5 e7 e9 x...5.%...P..... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0140: 72 14
>>>> a3
>>>> 53 0f c2 ce b6-6e 70 a0 0c d9 65 84 e6 r..S....np...e.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0150: 9a 5a
>>>> 09
>>>> f4 60 12 23 ba-7b 72 be e6 e1 46 05 b6 .Z..`.#.{r...F.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0160: 17 46
>>>> 8f
>>>> 1e f2 fc c4 7d-64 0c 43 6b 9c 42 95 b7 .F.....}d.Ck.B.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0170: 55 a3
>>>> e1
>>>> a4 7d 8a b3 96-a9 67 f3 ad 88 bb 5a 1e U...}....g....Z. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0180: 67 04
>>>> de
>>>> 00 e9 d5 59 ea-26 d2 83 46 0d cc 47 2b g.....Y.&..F..G+ |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0190: 25 4c
>>>> 82
>>>> 28 f4 8b a8 9d-52 4d 04 be 05 6a 55 e4 %L.(....RM...jU. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01a0: c4 55
>>>> 29
>>>> ea 3d 82 bc 9d-da 82 51 7d e7 c5 9e 25 .U).=.....Q}...% |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01b0: 7a 5a
>>>> ad
>>>> 94 84 ad 89 0b-6a 89 b0 16 5f 64 d5 96 zZ......j..._d.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01c0: d2 ae
>>>> b7
>>>> ec 2b f6 f4 0f-74 28 35 07 33 08 ce e7 ....+...t(5.3... |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01d0: 22 10
>>>> 6c
>>>> 88 fc ee 30 28-d9 ce 7f 1b ab 31 45 3e ".l...0(.....1E> |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01e0: 49 16
>>>> da
>>>> 1b 7b 2b eb 1b-87 17 8e ce e1 3f 8d 25 I...{+.......?.% |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 01f0: 53 fe
>>>> 90
>>>> ad 78 9c c8 48-27 f8 23 b2 39 b0 28 5f S...x..H'.#.9.(_ |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0200: eb 6e
>>>> 86
>>>> 84 7a 94 a9 b2-79 7f d6 ef 60 84 1b 6f .n..z...y...`..o |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0210: e5 f9
>>>> b6
>>>> 6d c8 ef 62 54-2b 24 64 17 e3 64 12 ae ...m..bT+$d..d.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0220: bc 31
>>>> a4
>>>> 8e c7 bb d2 dc-fe f4 0e 11 48 5c aa 03 .1..........H\\.. |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1747): | 0230: 4a 54
>>>> b6
>>>> a5 b3 76 01 2f-3a bc 31 2c 07 78 63 72 JT...v./:.1,.xcr |
>>>> [Tue Jan 20 13:25:24 2009] [debug] ssl_engine_io.c(1753):
>>>>
>>>> +-------------------------------------------------------------------------+
>>>> [Tue Jan 20 13:25:24 2009] [info] Subsequent (No.2) HTTPS request
>>>> received
>>>> for child 2 (server nagios.cc.columbia.edu:443)
>>>> [Tue Jan 20 13:25:39 2009] [debug] ssl_engine_io.c(1786): OpenSSL: I/O
>>>> error, 5 bytes expected to read on BIO#2b5c69579e00 [mem: 2b5c695814d0]
>>>> [Tue Jan 20 13:25:39 2009] [info] [client 128.59.31.61] (70007)The
>>>> timeout
>>>> specified has expired: SSL input filter read failed.
>>>> [Tue Jan 20 13:25:39 2009] [debug] ssl_engine_kernel.c(1770): OpenSSL:
>>>> Write: SSL negotiation finished successfully
>>>> [Tue Jan 20 13:25:39 2009] [info] [client 128.59.31.61] Connection
>>>> closed to
>>>> child 2 with standard shutdown (server nagios.cc.columbia.edu:443)
>>>>
>>>> _______________________________________________
>>>> Yale CAS mailing list
>>>> cas at tp.its.yale.edu
>>>> http://tp.its.yale.edu/mailman/listinfo/cas
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>>
>>
>>
>> ------------------------------------------------------------------------
>>
>> _______________________________________________
>> Yale CAS mailing list
>> cas at tp.its.yale.edu
>> http://tp.its.yale.edu/mailman/listinfo/cas
>
>
> --
> Shadhin Rahman
> 619 Watson Hall
> Columbia University Information Technology-Network Infrastructure
> Cell: 347-256-7869 Work: 212-851-7161
> Email: sr2690 at columbia.edu
>
>
> [Mon Jan 26 11:06:04 2009] [error] [client 128.59.30.251] File does not
> exist: /etc/httpd/htdocs/nagios
> [Mon Jan 26 11:06:11 2009] [error] [client 128.59.30.251] File does not
> exist: /etc/httpd/htdocs/nagios
> [Mon Jan 26 13:13:55 2009] [info] Loading certificate & private key of
> SSL-aware server
> [Mon Jan 26 13:13:55 2009] [debug] ssl_engine_pphrase.c(469): unencrypted
> RSA private key - pass phrase not required
> [Mon Jan 26 13:13:56 2009] [info] Configuring server for SSL protocol
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_init.c(405): Creating new SSL
> context (protocols: SSLv2, SSLv3, TLSv1)
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_init.c(601): Configuring
> permitted SSL ciphers
> [ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP]
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_init.c(729): Configuring RSA
> server certificate
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_init.c(768): Configuring RSA
> server private key
> [Mon Jan 26 13:13:56 2009] [info] Loading certificate & private key of
> SSL-aware server
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_pphrase.c(469): unencrypted
> RSA private key - pass phrase not required
> [Mon Jan 26 13:13:56 2009] [info] Configuring server for SSL protocol
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_init.c(405): Creating new SSL
> context (protocols: SSLv2, SSLv3, TLSv1)
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_init.c(601): Configuring
> permitted SSL ciphers
> [ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP]
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_init.c(729): Configuring RSA
> server certificate
> [Mon Jan 26 13:13:56 2009] [debug] ssl_engine_init.c(768): Configuring RSA
> server private key
> [Mon Jan 26 13:15:08 2009] [info] [client 128.59.31.61] Connection to child
> 1 established (server ebi.cc.columbia.edu:443)
> [Mon Jan 26 13:15:08 2009] [info] Seeding PRNG with 144 bytes of entropy
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1752): OpenSSL:
> Handshake: start
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> before/accept initialization
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 11/11 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03 01
> 00 a3 01 00 00-9f 03 01 ........... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 157/157 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c6688b] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 49 7d fd
> ac f6 ae 26 84-aa 33 c6 30 bb 00 c1 09 I}....&..3.0.... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0010: fe 2e 71
> b3 4b 46 7c b5-d2 5c 46 55 57 70 e7 56 ..q.KF|..\\FUWp.V |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0020: 00 00 44
> c0 0a c0 14 00-88 00 87 00 39 00 38 c0 ..D.........9.8. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0030: 0f c0 05
> 00 84 00 35 c0-07 c0 09 c0 11 c0 13 00 ......5......... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0040: 45 00 44
> 00 33 00 32 c0-0c c0 0e c0 02 c0 04 00 E.D.3.2......... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0050: 41 00 04
> 00 05 00 2f c0-08 c0 12 00 16 00 13 c0 A...../......... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0060: 0d c0 03
> fe ff 00 0a 01-00 00 32 00 00 00 18 00 ..........2..... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0070: 16 00 00
> 13 65 62 69 2e-63 63 2e 63 6f 6c 75 6d ....ebi.cc.colum |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0080: 62 69 61
> 2e 65 64 75 00-0a 00 08 00 06 00 17 00 bia.edu......... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0090: 18 00 19
> 00 0b 00 02 01-00 00 23 ..........# |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1751): | 0157 -
> <SPACES/NULS>
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 read client hello A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write server hello A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write certificate A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1143): [client
> 128.59.31.61] handing out temporary 1024 bit DH key
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write key exchange A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write server done A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 flush data
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 5/5
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03 01
> 00 86 ..... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 134/134 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66885] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 10 00 00
> 82 00 80 89 62-5b 25 c2 de d8 6f c0 01 .......b[%...o.. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0010: 0b 1f 73
> 51 c1 41 e1 52-21 ad e2 fa 08 6b d6 b5 ..sQ.A.R!....k.. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0020: 91 8a 2d
> c1 e5 33 33 b9-f1 27 d6 84 d0 91 b4 56 ..-..33..'.....V |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0030: 0b fc c5
> 81 a1 86 dc c0-ec 89 d0 99 05 24 c1 19 .............$.. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0040: 1c 71 11
> f9 76 82 f7 d5-f3 00 6a e5 f6 11 85 c1 .q..v.....j..... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0050: cc 3a c0
> 89 1f 1f ec f4-79 7b b9 5d 7f 34 43 67 .:......y{.].4Cg |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0060: 22 d6 0c
> 81 08 93 30 ca-55 2d 7f 99 10 6d aa d4 ".....0.U-...m.. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0070: ee 89 4c
> a9 c7 46 52 2c-2c 01 94 18 90 7b 22 76 ..L..FR,,....{"v |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0080: 4f 23 01
> 7b fe f6 O#.{.. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 read client key exchange A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 5/5
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 14 03 01
> 00 01 ..... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 1/1
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66885] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 01
> . |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 5/5
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03 01
> 00 30 ....0 |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 48/48 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66885] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 34 dd 5d
> 2b 2d e0 96 08-b3 f9 7a 12 e8 29 b7 f2 4.]+-.....z..).. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0010: 64 ad 5b
> 64 a4 87 32 b2-db d9 62 31 94 45 e2 2a d.[d..2...b1.E.* |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0020: 37 4d 48
> 5d 04 b6 5e 22-f3 10 02 ef f2 a4 89 aa 7MH]..^"........ |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 read finished A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write change cipher spec A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write finished A
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 flush data
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(670): inside
> shmcb_store_session
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(676):
> session_id[0]=41, masked index=9
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(1059): entering
> shmcb_insert_encoded_session, *queue->pos_count = 0
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(983): entering
> shmcb_expire_division
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(1115): we have 13853
> bytes and 133 indexes free - enough
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(1144): storing in
> index 0, at offset 0
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(1159):
> session_id[0]=41, idx->s_id2=44
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(1170): leaving now
> with 148 bytes in the cache and 1 indexes
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(1174): leaving
> shmcb_insert_encoded_session
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(704): leaving
> shmcb_store successfully
> [Mon Jan 26 13:15:08 2009] [debug] ssl_scache_shmcb.c(418): shmcb_store
> successful
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1598): Inter-Process
> Session Cache: request=SET status=OK
> id=292CC2B342249731BC3EC642EB4935D46705156F9EDDF5D6245BD5670A50F858
> timeout=1200s (session caching)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_kernel.c(1756): OpenSSL:
> Handshake: done
> [Mon Jan 26 13:15:08 2009] [info] Connection: Client IP: 128.59.31.61,
> Protocol: TLSv1, Cipher: DHE-RSA-AES256-SHA (256/256 bits)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 5/5
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: 17 03 01
> 02 50 ....P |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 592/592 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66885] (BIO dump follows)
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0000: cd 62 f6
> 4b 93 66 5d e2-f4 5b ea 80 44 52 c8 7e .b.K.f]..[..DR.~ |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0010: 6e 6b 4f
> ad a0 6b 63 33-cf ae 78 78 04 88 59 fc nkO..kc3..xx..Y. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0020: 59 fe 58
> 90 1d 43 f4 96-6f f0 a0 22 a9 8f 69 45 Y.X..C..o.."..iE |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0030: 44 e4 3c
> 99 10 0d 89 13-4b 08 7c 51 4f 0a 35 8d D.<.....K.|QO.5. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0040: a7 4f fe
> 31 c9 5d 8d 5f-33 8c cb e2 17 b7 45 a5 .O.1.]._3.....E. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0050: 7d 87 95
> f3 8a 1b 1c 5a-32 da 8f 2f e9 61 d8 76 }......Z2../.a.v |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0060: 45 a2 f9
> 06 96 02 d8 d0-f4 ab 9e 71 72 b4 70 46 E..........qr.pF |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0070: be 52 35
> 51 54 ff e4 72-7e 3b da dd a3 07 9b 60 .R5QT..r~;.....` |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0080: cb bb b6
> 4e 67 1a 2d 5c-67 f9 49 94 36 46 29 1b ...Ng.-\\g.I.6F). |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0090: 50 0f fe
> 53 08 61 f4 fa-87 ce 18 e6 43 24 42 93 P..S.a......C$B. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 00a0: e5 23 42
> 40 6f e0 0a 65-d8 ec 6c 9d 95 6a d7 5c .#B at o..e..l..j.\\ |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 00b0: ff 99 dc
> b3 fc af 6f 32-52 4e f8 70 a7 bb 39 9e ......o2RN.p..9. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 00c0: a8 8c df
> 0d 16 fc d7 08-48 f1 28 14 85 ca 22 e5 ........H.(...". |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 00d0: 9b 30 95
> 53 06 13 68 c3-19 25 c1 26 11 18 d7 54 .0.S..h..%.&...T |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 00e0: 02 55 ab
> 67 bd 3c 3e 05-3a 06 81 59 d4 ba ad 09 .U.g.<>.:..Y.... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 00f0: c7 94 6c
> b1 eb b9 59 a7-11 37 72 19 b9 7c 82 8e ..l...Y..7r..|.. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0100: ce 67 1b
> 5d 52 e9 5f 2c-8f 90 f1 b1 86 c9 09 bc .g.]R._,........ |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0110: 3e b5 30
> 8b 76 e3 f1 f8-05 c6 e5 2e 46 e3 a2 72 >.0.v.......F..r |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0120: 9b 3c ad
> ee a3 fd 41 9f-28 7c d7 92 3b 71 7c 62 .<....A.(|..;q|b |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0130: 03 70 ea
> 0a 2e 80 c7 07-2a 95 4f 49 ef fe 06 36 .p......*.OI...6 |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0140: f1 e2 e8
> 19 68 c5 9e 5d-53 a3 37 ce bc 9c e0 1a ....h..]S.7..... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0150: 7e 7b 5b
> c8 42 12 a8 f6-85 69 c4 8d 0c ed be 99 ~{[.B....i...... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0160: 2d ff 95
> e0 79 b9 dd 6b-2b 09 98 c0 dc ab 70 d8 -...y..k+.....p. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0170: a1 c7 4b
> eb 48 ab 9e 6b-42 2b bf a2 d0 f4 37 ed ..K.H..kB+....7. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0180: 08 42 d1
> 86 fa 60 08 e6-0a 9d 5b fc 9e 58 80 3c .B...`....[..X.< |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0190: 4e a2 1e
> 3d fb 5b e9 cd-b5 3f d7 9b 96 4b ff 2a N..=.[...?...K.* |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 01a0: 44 e8 92
> 54 b1 f9 94 6e-3e 8e 5f c0 5a a1 4c a4 D..T...n>._.Z.L. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 01b0: a7 10 ef
> 9c fc 12 b3 4e-0d 5f 90 88 f6 ae 69 a7 .......N._....i. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 01c0: 8d 34 48
> 18 af be dd bd-20 32 19 06 1d f0 86 33 .4H..... 2.....3 |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 01d0: fe 7a 43
> fa 15 2e b8 0c-bf a1 36 c6 06 36 0f 8a .zC.......6..6.. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 01e0: d0 17 6a
> 65 cf b6 df 19-e3 5d fd a6 7c 19 7b 92 ..je.....]..|.{. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 01f0: e4 7e 1c
> 46 72 47 57 69-c3 f5 97 51 83 50 30 13 .~.FrGWi...Q.P0. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0200: 63 3d b5
> 4f f7 cf 2b 02-00 48 e0 40 6b 2c 61 59 c=.O..+..H. at k,aY |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0210: ed e5 af
> 08 50 97 16 3d-6e 65 50 a2 45 c8 8c e5 ....P..=neP.E... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0220: 86 3b 07
> a4 cb eb 1a 4f-c8 e4 3e d1 7b 3e 3e 81 .;.....O..>.{>>. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0230: 5b ad f3
> 78 a5 52 23 4d-e8 59 fb 64 83 fb 6c ef [..x.R#M.Y.d..l. |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1747): | 0240: 01 d1 47
> 2d 51 c8 5b a7-4b 10 c3 1c c6 a0 87 07 ..G-Q.[.K....... |
> [Mon Jan 26 13:15:08 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:08 2009] [info] Initial (No.1) HTTPS request received for
> child 1 (server ebi.cc.columbia.edu:443)
> [Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(1581): [client
> 128.59.31.61] Entering cas_authenticate()
> [Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(490): [client
> 128.59.31.61] entering getCASService()
> [Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(510): [client
> 128.59.31.61] CAS Service 'https%3a%2f%2febi.cc.columbia.edu%2fnagios'
> [Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(465): [client
> 128.59.31.61] entering getCASLoginURL()
> [Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(424): [client
> 128.59.31.61] entering getCASGateway()
> [Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(526): [client
> 128.59.31.61] entering redirectRequest()
> [Mon Jan 26 13:15:08 2009] [debug] mod_auth_cas.c(538): [client
> 128.59.31.61] Adding outgoing header: Location:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 5/5
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 17 03 01
> 02 e0 ..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 736/736 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66885] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: f6 10 ba
> e0 8e 8e dd 64-01 fd 65 25 c9 e2 bc a3 .......d..e%.... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0010: 13 88 71
> 27 24 d1 0c 42-9e b3 01 f1 d8 db 60 bb ..q'$..B......`. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0020: c3 58 b2
> 9f 20 27 df ab-ee 18 c2 8a 50 df 40 54 .X.. '......P. at T |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0030: 7d d2 0c
> 28 72 10 16 4f-b2 37 cc a8 a2 93 89 cc }..(r..O.7...... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0040: 13 65 85
> c4 0f 91 7b c3-55 bb f1 b0 49 8b cb 7b .e....{.U...I..{ |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0050: c3 f7 4e
> 71 c8 21 3b ed-15 2e c9 09 1b 1c 58 9e ..Nq.!;.......X. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0060: 71 42 ba
> 42 8a 2a bf a4-2d 33 1f 6d 0b df 2a 41 qB.B.*..-3.m..*A |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0070: 08 bb 4e
> 49 46 c9 7b e4-ac 84 54 13 4d 84 2c d8 ..NIF.{...T.M.,. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0080: b3 a8 33
> 47 4f a6 ab 94-72 51 90 3f af 0f bb fc ..3GO...rQ.?.... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0090: 19 4d b6
> b4 7d 3b 0b 5a-ae b2 dd 5a ed e7 a4 ac .M..};.Z...Z.... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00a0: e6 d3 f5
> d3 50 28 a1 3f-08 b1 e8 8f 79 44 04 a6 ....P(.?....yD.. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00b0: 18 bd fa
> 91 55 0f 9a cf-52 cb 66 6b f9 a7 51 b0 ....U...R.fk..Q. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00c0: 73 55 9a
> 5d 9f cc 5d fc-9d d9 a1 9b 9e 63 a5 2f sU.]..]......c./ |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00d0: ba c1 2b
> f8 5d 44 2a 5e-84 c5 2e 79 33 72 f9 50 ..+.]D*^...y3r.P |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00e0: e2 52 1c
> ae 97 31 2e 6a-b8 94 11 48 31 4b ea c6 .R...1.j...H1K.. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00f0: 93 28 ed
> 0f d4 9b 38 23-5b 78 cf e1 48 3b 25 d5 .(....8#[x..H;%. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0100: c6 48 bb
> 90 24 a2 f8 72-b0 a9 eb 89 9a 97 fb 0a .H..$..r........ |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0110: 44 6a a2
> 1f 23 5d 29 8e-ca e6 61 25 96 7b 67 e1 Dj..#])...a%.{g. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0120: 0c 35 89
> 7a 09 e9 4c 92-8a d2 3d a7 a9 e2 c5 b8 .5.z..L...=..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0130: 89 8d f5
> c3 da 33 5f 88-f4 07 1d 91 8c c0 1b f0 .....3_......... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0140: 1f 5e 64
> d2 9e c2 e0 bc-49 7e 7f 51 5b d5 e2 8f .^d.....I~.Q[... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0150: bc 58 b8
> 70 0f 8d 05 4e-01 3d cf 40 63 b6 31 1c .X.p...N.=. at c.1. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0160: 09 ba aa
> 2b 36 26 ec 7c-e5 5a 36 7d 0c 70 af c9 ...+6&.|.Z6}.p.. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0170: 9f 0a 3d
> d1 17 58 15 47-af 42 ab 01 b1 3f 5c dd ..=..X.G.B...?\\. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0180: a6 c2 aa
> 7a f1 73 a5 3a-f7 67 db 09 bb 3f 24 62 ...z.s.:.g...?$b |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0190: fe 0b 2f
> 0c 43 94 0f 14-b4 a0 91 32 f9 6e a3 ae ../.C......2.n.. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01a0: 9b 43 85
> 70 81 e6 f8 1c-09 54 56 a1 8e c4 de 21 .C.p.....TV....! |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01b0: 54 02 68
> 8a 38 47 7d a6-ce 66 9e d8 1f 74 5b 8b T.h.8G}..f...t[. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01c0: 1a 9c 64
> 59 e8 01 c1 24-f3 b3 84 31 38 d1 7b 47 ..dY...$...18.{G |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01d0: 4f ec 85
> 49 18 1a 05 7d-86 f8 bf 7b ef e0 e9 6a O..I...}...{...j |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01e0: 84 69 45
> 1b cf 4d 4c f8-e8 08 92 08 67 fd 46 a1 .iE..ML.....g.F. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01f0: 72 b8 cb
> 34 f8 54 fb 65-9e 0f b5 af 19 bb f1 87 r..4.T.e........ |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0200: ed 75 bd
> bd 79 1f 9c cb-ef 2b eb 2e 94 40 f3 bc .u..y....+... at .. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0210: a4 e7 a2
> 46 4a 25 ee 6f-6f c1 36 77 12 9c 6d da ...FJ%.oo.6w..m. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0220: 06 03 11
> ef c5 a0 3b b2-05 be ae 41 20 11 32 8b ......;....A .2. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0230: f7 30 85
> 0b a7 2c 0b ab-8f 30 44 93 bd 19 84 b5 .0...,...0D..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0240: e3 06 2d
> 67 65 67 ff 2d-c9 b8 43 f8 51 3f 41 29 ..-geg.-..C.Q?A) |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0250: 3f d7 e7
> 87 35 17 cb 16-72 42 f2 30 72 15 dc 55 ?...5...rB.0r..U |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0260: c2 4b 4f
> 75 64 7e fe 43-0a 55 67 14 a3 f1 3e 29 .KOud~.C.Ug...>) |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0270: ec 28 e0
> 25 1c dd f3 98-5a 0f 9a 73 1b fe b0 16 .(.%....Z..s.... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0280: fc 56 56
> 17 61 fc f4 f7-9d 27 6c 40 04 d4 c8 2a .VV.a....'l at ...* |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0290: bc 55 1a
> 88 25 68 22 d6-75 fb 7f 6a a6 1b 09 11 .U..%h".u..j.... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 02a0: 27 4c 57
> 79 dd 21 cc 81-17 e0 db 53 7d 23 7b 26 'LWy.!.....S}#{& |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 02b0: c1 8a 07
> 0b 4f 58 2b 71-b8 96 c3 ec e4 d9 3b 9c ....OX+q......;. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 02c0: 77 d9 2d
> 9f 09 9d 15 c4-e0 21 87 3b cc ae 7b 97 w.-......!.;..{. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 02d0: d5 82 1a
> b2 65 46 88 0f-40 da ec 1d ab 86 18 e8 ....eF.. at ....... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [info] Subsequent (No.2) HTTPS request received
> for child 1 (server ebi.cc.columbia.edu:443)
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1581): [client
> 128.59.31.61] Entering cas_authenticate(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(582): [client
> 128.59.31.61] Modified r->args (old
> 'ticketid=nkS6M5FFY9nnbyDgmVQVbngndzWPJ1RD1nsSx4H', new ''), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1406): [client
> 128.59.31.61] entering getResponseFromServer(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(448): [client
> 128.59.31.61] entering getCASValidateURL(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1517): [client
> 128.59.31.61] Validation request: GET
> /validate?ticketid=nkS6M5FFY9nnbyDgmVQVbngndzWPJ1RD1nsSx4H HTTP/1.0\nHost:
> wind.columbia.edu\n\n, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1525): [client
> 128.59.31.61] Request successfully transmitted, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1533): [client
> 128.59.31.61] Received 143 bytes of response, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1533): [client
> 128.59.31.61] Received 11 bytes of response, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1533): [client
> 128.59.31.61] Received 0 bytes of response, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1539): [client
> 128.59.31.61] Validation response: HTTP/1.1 200 OK\r\nDate: Mon, 26 Jan 2009
> 18:15:14 GMT\r\nServer: Apache/2.2.8\r\nContent-Length: 11\r\nConnection:
> close\r\nContent-Type: text/plain\r\n\r\nyes\nsr2690\n, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1184): [client
> 128.59.31.61] entering isValidCASTicket(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1015): [client
> 128.59.31.61] entering createCASCookie(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(863): [client
> 128.59.31.61] entering CASCleanCache(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(901): [client
> 128.59.31.61] Beginning cache clean, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(919): [client
> 128.59.31.61] Processing cache file '4f9e4534180362270d1d54c4d7e6f166',
> referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(748): [client
> 128.59.31.61] entering readCASCacheFile(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [info] [client 128.59.31.61] Connection to child
> 2 established (server ebi.cc.columbia.edu:443)
> [Mon Jan 26 13:15:14 2009] [info] Seeding PRNG with 144 bytes of entropy
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1752): OpenSSL:
> Handshake: start
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> before/accept initialization
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 11/11 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03 01
> 00 c3 01 00 00-bf 03 01 ........... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 189/189 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c6688b] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 49 7d fd
> b2 8c 61 ac 16-aa b9 b0 97 98 9b 20 a3 I}...a........ . |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0010: 2f 5e cd
> 44 7e 4e 73 90-e2 3e 9c 05 72 f9 a7 71 /^.D~Ns..>..r..q |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0020: 20 29 2c
> c2 b3 42 24 97-31 bc 3e c6 42 eb 49 35 ),..B$.1.>.B.I5 |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0030: d4 67 05
> 15 6f 9e dd f5-d6 24 5b d5 67 0a 50 f8 .g..o....$[.g.P. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0040: 58 00 44
> c0 0a c0 14 00-88 00 87 00 39 00 38 c0 X.D.........9.8. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0050: 0f c0 05
> 00 84 00 35 c0-07 c0 09 c0 11 c0 13 00 ......5......... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0060: 45 00 44
> 00 33 00 32 c0-0c c0 0e c0 02 c0 04 00 E.D.3.2......... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0070: 41 00 04
> 00 05 00 2f c0-08 c0 12 00 16 00 13 c0 A...../......... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0080: 0d c0 03
> fe ff 00 0a 01-00 00 32 00 00 00 18 00 ..........2..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0090: 16 00 00
> 13 65 62 69 2e-63 63 2e 63 6f 6c 75 6d ....ebi.cc.colum |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00a0: 62 69 61
> 2e 65 64 75 00-0a 00 08 00 06 00 17 00 bia.edu......... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00b0: 18 00 19
> 00 0b 00 02 01-00 00 23 ..........# |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1751): | 0189 -
> <SPACES/NULS>
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(720): inside
> shmcb_retrieve_session
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(732): id[0]=41, masked
> index=9
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(1195): entering
> shmcb_lookup_session_id
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(983): entering
> shmcb_expire_division
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(1205): loop=0,
> count=1, curr_pos=0
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(1209): idx->s_id2=44,
> id[1]=44, offset=0
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(1226): at index 0,
> found possible session match
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(1245): a match!
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(748): leaving
> shmcb_retrieve_session
> [Mon Jan 26 13:15:14 2009] [debug] ssl_scache_shmcb.c(435): shmcb_retrieve
> had a hit
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1598): Inter-Process
> Session Cache: request=GET status=FOUND
> id=292CC2B342249731BC3EC642EB4935D46705156F9EDDF5D6245BD5670A50F858 (session
> reuse)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 read client hello A
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write server hello A
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write change cipher spec A
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 write finished A
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 flush data
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 5/5
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 14 03 01
> 00 01 ..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 1/1
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66885] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 01
> . |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 5/5
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 16 03 01
> 00 30 ....0 |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 48/48 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66885] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 53 7f 59
> f5 7f 9e 3e f2-22 6b c0 33 0a dd 0e 2a S.Y...>."k.3...* |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0010: 42 0b c9
> d2 23 46 f4 09-fe 27 b2 7a dc ae 29 a8 B...#F...'.z..). |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0020: d8 5e b0
> b7 3e c6 b7 41-ed 09 1e e5 f2 45 28 5f .^..>..A.....E(_ |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop:
> SSLv3 read finished A
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_kernel.c(1756): OpenSSL:
> Handshake: done
> [Mon Jan 26 13:15:14 2009] [info] Connection: Client IP: 128.59.31.61,
> Protocol: TLSv1, Cipher: DHE-RSA-AES256-SHA (256/256 bits)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read 5/5
> bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66880] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 17 03 01
> 02 e0 ..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1775): OpenSSL: read
> 736/736 bytes from BIO#2acde5c5f1b0 [mem: 2acde5c66885] (BIO dump follows)
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1722):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0000: 17 4b 37
> 18 1e 26 24 97-2b 9c dc cf 47 e9 65 da .K7..&$.+...G.e. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0010: 53 e4 83
> 2a 77 eb 96 da-2f f2 63 7b 26 7a 12 82 S..*w.../.c{&z.. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0020: 94 86 59
> 68 a0 29 b4 98-f3 1b 55 95 0b 96 63 48 ..Yh.)....U...cH |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0030: da 0f 20
> 53 4a 63 a5 1a-aa 44 a4 3d 4a cd 03 e0 .. SJc...D.=J... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0040: 41 20 69
> 48 d3 4f a7 4f-53 89 c5 d8 8d a5 eb c2 A iH.O.OS....... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0050: d4 ec de
> ee 41 1b 46 ce-00 e7 f3 a9 15 cb 47 6e ....A.F.......Gn |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0060: b8 be eb
> b0 fd 43 a7 67-ed 2c 56 27 ac f5 97 22 .....C.g.,V'..." |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0070: 86 33 1a
> b1 9c 67 6a f6-e9 bc 8b 18 3f d8 01 b4 .3...gj.....?... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0080: 51 d6 00
> 82 d6 ff 20 10-1b c4 13 e6 0c ef 51 89 Q..... .......Q. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0090: a9 d6 70
> c6 b3 a5 a9 da-70 20 f9 ad b0 ea de c5 ..p.....p ...... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00a0: d4 b4 43
> 70 25 a2 bb 7d-55 23 48 96 b3 ac 26 28 ..Cp%..}U#H...&( |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00b0: da d3 43
> da 21 87 24 39-16 53 52 c5 81 e7 f5 71 ..C.!.$9.SR....q |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00c0: 96 83 01
> 92 7d 74 6f b3-3a 90 58 d7 f5 1b 36 18 ....}to.:.X...6. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00d0: 3f d6 df
> 85 5c f9 ad 9f-32 14 bf 83 a5 a7 4c 62 ?...\\...2.....Lb |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00e0: b3 e0 a6
> a6 a1 45 b1 f2-bd 22 cf 1c df 4e 1c 4a .....E..."...N.J |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 00f0: 6d 55 20
> 3b b2 96 66 63-71 2a 2f 1d e3 ae 15 a4 mU ;..fcq*/..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0100: 50 6a ff
> 4e 50 e9 5f 5c-1a 75 24 b6 6f da e7 e2 Pj.NP._\\.u$.o... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0110: e4 3f 30
> e6 9b 4e 64 88-e3 42 d5 15 ba bd be b7 .?0..Nd..B...... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0120: f7 30 de
> 28 05 30 36 63-d4 dd 55 d2 01 3a 10 65 .0.(.06c..U..:.e |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0130: 6b 2c c8
> 61 fc bb f0 79-88 e6 b6 81 bf f4 bd ec k,.a...y........ |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0140: 20 f1 a6
> c0 99 ed 48 9f-87 42 8c c5 ec 59 7c 2c .....H..B...Y|, |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0150: 0c d3 0b
> 25 d3 f0 55 e8-5e f4 ab c2 5b fd aa 68 ...%..U.^...[..h |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0160: 7c cc ad
> b8 4b 4b 3c 38-8c 07 a7 a8 e6 f3 f9 d5 |...KK<8........ |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0170: e4 11 4f
> fa 16 c3 1c 85-18 7b 5f 82 bb fa a6 8e ..O......{_..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0180: 08 52 2d
> b5 22 f8 80 b4-c1 17 f2 be 82 22 b1 d2 .R-."........".. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0190: 3e 5f c8
> 66 8f 0f 36 95-d1 1d 3b f4 30 ba eb 58 >_.f..6...;.0..X |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01a0: 34 58 21
> 77 83 45 8e 32-32 7a 62 e7 87 95 48 83 4X!w.E.22zb...H. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01b0: 24 b0 65
> 48 48 b0 1b 54-2b e3 59 d7 74 6a 72 ce $.eHH..T+.Y.tjr. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01c0: 55 90 49
> b4 a4 1a 4d 9e-09 fe 1c 32 c5 40 3f 75 U.I...M....2.@?u |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01d0: 48 fe 0c
> 9d a2 7c 17 7d-14 79 f2 fa 28 c3 c1 26 H....|.}.y..(..& |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01e0: ce 4a 01
> 31 36 77 37 e0-d6 21 90 34 44 a9 7d 5b .J.16w7..!.4D.}[ |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 01f0: 6b 07 f3
> 01 79 ed 4a b0-79 86 2a ae 22 4f 98 6b k...y.J.y.*."O.k |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0200: 08 17 16
> 46 16 14 27 bc-8e af d9 d6 18 53 67 c8 ...F..'......Sg. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0210: 7b ce fc
> 23 73 97 21 b0-af 1d b5 0c c8 87 61 28 {..#s.!.......a( |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0220: 6c 07 e5
> d0 20 9a 3f ed-ab 0b 84 2a 77 36 83 4c l... .?....*w6.L |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0230: fd e7 be
> f6 c9 2a 79 92-09 1b 65 09 aa 83 91 71 .....*y...e....q |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0240: ba 9d 01
> 72 e3 0c 38 53-e0 38 72 a0 f7 b6 e2 be ...r..8S.8r..... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0250: cb 14 89
> 19 44 6d 55 a9-23 b6 98 d6 9e f0 b3 6f ....DmU.#......o |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0260: 50 6b f1
> fb 24 2f cc 0a-3c 46 8b 3d 23 d0 f1 51 Pk..$/..<F.=#..Q |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0270: 83 2a 80
> 74 a2 5f 15 49-2e 13 bb 3b fe 3c db 06 .*.t._.I...;.<.. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0280: 56 64 7e
> 9d a2 ab 9d e6-6c 02 e8 04 e3 39 34 d9 Vd~.....l....94. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 0290: 53 72 f8
> 29 3b 32 61 0a-38 f8 da f1 9e 87 2f 19 Sr.);2a.8...../. |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 02a0: 33 1f 1e
> ea a0 b2 02 4b-b5 fd 34 4a 2c f1 11 b2 3......K..4J,... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 02b0: 5f 4c 6f
> 46 2c a8 a0 fb-36 5e 9f 5e 89 9e aa 17 _LoF,...6^.^.... |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 02c0: d0 0c d7
> a8 26 08 e4 c6-4b 21 dd 1e 0b 93 75 66 ....&...K!....uf |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1747): | 02d0: 74 fa ba
> 24 ac b7 ef 3a-d3 48 32 f7 5a 15 a5 68 t..$...:.H2.Z..h |
> [Mon Jan 26 13:15:14 2009] [debug] ssl_engine_io.c(1753):
> +-------------------------------------------------------------------------+
> [Mon Jan 26 13:15:14 2009] [info] Initial (No.1) HTTPS request received for
> child 2 (server ebi.cc.columbia.edu:443)
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1581): [client
> 128.59.31.61] Entering cas_authenticate(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(582): [client
> 128.59.31.61] Modified r->args (old
> 'ticketid=nkS6M5FFY9nnbyDgmVQVbngndzWPJ1RD1nsSx4H', new ''), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1406): [client
> 128.59.31.61] entering getResponseFromServer(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(448): [client
> 128.59.31.61] entering getCASValidateURL(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1517): [client
> 128.59.31.61] Validation request: GET
> /validate?ticketid=nkS6M5FFY9nnbyDgmVQVbngndzWPJ1RD1nsSx4H HTTP/1.0\nHost:
> wind.columbia.edu\n\n, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1525): [client
> 128.59.31.61] Request successfully transmitted, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1533): [client
> 128.59.31.61] Received 142 bytes of response, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1533): [client
> 128.59.31.61] Received 3 bytes of response, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1533): [client
> 128.59.31.61] Received 0 bytes of response, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1539): [client
> 128.59.31.61] Validation response: HTTP/1.1 200 OK\r\nDate: Mon, 26 Jan 2009
> 18:15:14 GMT\r\nServer: Apache/2.2.8\r\nContent-Length: 3\r\nConnection:
> close\r\nContent-Type: text/plain\r\n\r\nno\n, referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:14 2009] [debug] mod_auth_cas.c(1184): [client
> 128.59.31.61] entering isValidCASTicket(), referer:
> https://wind.columbia.edu/login?destination=https%3a%2f%2febi.cc.columbia.edu%2fnagios
> [Mon Jan 26 13:15:29 2009] [debug] ssl_engine_io.c(1786): OpenSSL: I/O
> error, 5 bytes expected to read on BIO#2acde5c5f1b0 [mem: 2acde5c66880]
> [Mon Jan 26 13:15:29 2009] [info] [client 128.59.31.61] (70007)The timeout
> specified has expired: SSL input filter read failed.
> [Mon Jan 26 13:15:29 2009] [debug] ssl_engine_kernel.c(1770): OpenSSL:
> Write: SSL negotiation finished successfully
> [Mon Jan 26 13:15:29 2009] [info] [client 128.59.31.61] Connection closed to
> child 2 with standard shutdown (server ebi.cc.columbia.edu:443)
>
> # httpd.conf files are automatically generated from
> # /src/systemfiles/etc/httpd2/httpd.conf.cpp
> #
> # Based upon the NCSA server configuration files originally by Rob McCool.
> #
> # This is the main Apache server configuration file. It contains the
> # configuration directives that give the server its instructions.
> # See <URL:http://httpd.apache.org/docs-2.0/> for detailed information about
> # the directives.
> #
> # Do NOT simply read the instructions in here without understanding
> # what they do. They're here only as hints or reminders. If you are unsure
> # consult the online docs. You have been warned.
> #
> # The configuration directives are grouped into three basic sections:
> # 1. Directives that control the operation of the Apache server process as
> a
> # whole (the 'global environment').
> # 2. Directives that define the parameters of the 'main' or 'default'
> server,
> # which responds to requests that aren't handled by a virtual host.
> # These directives also provide default values for the settings
> # of all virtual hosts.
> # 3. Settings for virtual hosts, which allow Web requests to be sent to
> # different IP addresses or hostnames and have them handled by the
> # same Apache server process.
> #
> # Configuration and logfile names: If the filenames you specify for many
> # of the server's control files begin with "/" (or "drive:/" for Win32), the
> # server will use that explicit path. If the filenames do *not* begin
> # with "/", the value of ServerRoot is prepended -- so
> "/var/log/cnet/foo.log"
> # with ServerRoot set to "/opt/httpd-x.y.z" will be interpreted by the
> # server as "/opt/httpd-x.y.z//var/log/cnet/foo.log".
> #
> ### Section 1: Global Environment
> #
> # The directives in this section affect the overall operation of Apache,
> # such as the number of concurrent requests it can handle or where it
> # can find its configuration files.
> #
> #
> # ServerRoot: The top of the directory tree under which the server's
> # configuration, error, and log files are kept.
> #
> # NOTE! If you intend to place this on an NFS (or otherwise network)
> # mounted filesystem then please read the LockFile documentation (available
> # at <URL:http://httpd.apache.org/docs-2.0/mod/mpm_common.html#lockfile>);
> # you will save yourself a lot of trouble.
> #
> # Do NOT add a slash at the end of the directory path.
> #
> ServerRoot "/etc/httpd"
> #
> # The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
> #
> <IfModule !mpm_winnt.c>
> <IfModule !mpm_netware.c>
> #LockFile /var/log/cnet/accept.lock
> </IfModule>
> </IfModule>
> #
> # ScoreBoardFile: File used to store internal server process information.
> # If unspecified (the default), the scoreboard will be stored in an
> # anonymous shared memory segment, and will be unavailable to third-party
> # applications.
> # If specified, ensure that no two invocations of Apache share the same
> # scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
> #
> <IfModule !mpm_netware.c>
> <IfModule !perchild.c>
> #ScoreBoardFile /var/log/cnet/apache_runtime_status
> </IfModule>
> </IfModule>
> #
> # PidFile: The file in which the server should record its process
> # identification number when it starts.
> #
> <IfModule !mpm_netware.c>
> PidFile /var/log/cnet/httpd.pid
> </IfModule>
> #
> # Timeout: The number of seconds before receives and sends time out.
> #
> Timeout 300
> #
> # KeepAlive: Whether or not to allow persistent connections (more than
> # one request per connection). Set to "Off" to deactivate.
> #
> KeepAlive On
> #
> # MaxKeepAliveRequests: The maximum number of requests to allow
> # during a persistent connection. Set to 0 to allow an unlimited amount.
> # We recommend you leave this number high, for maximum performance.
> #
> MaxKeepAliveRequests 100
> #
> # KeepAliveTimeout: Number of seconds to wait for the next request from the
> # same client on the same connection.
> #
> KeepAliveTimeout 15
> ##
> ## Server-Pool Size Regulation (MPM specific)
> ##
> # prefork MPM
> # StartServers: number of server processes to start
> # MinSpareServers: minimum number of server processes which are kept spare
> # MaxSpareServers: maximum number of server processes which are kept spare
> # MaxClients: maximum number of server processes allowed to start
> # MaxRequestsPerChild: maximum number of requests a server process serves
> <IfModule prefork.c>
> StartServers 5
> MinSpareServers 5
> MaxSpareServers 10
> MaxClients 150
> MaxRequestsPerChild 0
> </IfModule>
> # worker MPM
> # StartServers: initial number of server processes to start
> # MaxClients: maximum number of simultaneous client connections
> # MinSpareThreads: minimum number of worker threads which are kept spare
> # MaxSpareThreads: maximum number of worker threads which are kept spare
> # ThreadsPerChild: constant number of worker threads in each server process
> # MaxRequestsPerChild: maximum number of requests a server process serves
> <IfModule worker.c>
> StartServers 2
> MaxClients 150
> MinSpareThreads 25
> MaxSpareThreads 75
> ThreadsPerChild 25
> MaxRequestsPerChild 0
> </IfModule>
> # perchild MPM
> # NumServers: constant number of server processes
> # StartThreads: initial number of worker threads in each server process
> # MinSpareThreads: minimum number of worker threads which are kept spare
> # MaxSpareThreads: maximum number of worker threads which are kept spare
> # MaxThreadsPerChild: maximum number of worker threads in each server
> process
> # MaxRequestsPerChild: maximum number of connections per server process
> <IfModule perchild.c>
> NumServers 5
> StartThreads 5
> MinSpareThreads 5
> MaxSpareThreads 10
> MaxThreadsPerChild 20
> MaxRequestsPerChild 0
> </IfModule>
> #
> # Listen: Allows you to bind Apache to specific IP addresses and/or
> # ports, instead of the default. See also the <VirtualHost>
> # directive.
> #
> # Change this to Listen on specific IP addresses as shown below to
> # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
> #
> #Listen 12.34.56.78:80
> Listen 443
> Listen 80
> #
> # Dynamic Shared Object (DSO) Support
> #
> # To be able to use the functionality of a module which was built as a DSO
> you
> # have to place corresponding `LoadModule' lines at this location so the
> # directives contained in it are actually available _before_ they are used.
> # Statically compiled modules (those listed by `httpd -l') do not need
> # to be loaded here.
> #
> # Example:
> # LoadModule foo_module modules/mod_foo.so
> #
> # Modules that should be dynamically loaded on all servers (not statically)
> LoadModule authz_host_module modules/mod_authz_host.so
> LoadModule alias_module modules/mod_alias.so
> LoadModule autoindex_module modules/mod_autoindex.so
> LoadModule cgi_module modules/mod_cgi.so
> LoadModule dir_module modules/mod_dir.so
> LoadModule log_config_module modules/mod_log_config.so
> LoadModule mime_module modules/mod_mime.so
> LoadModule negotiation_module modules/mod_negotiation.so
> LoadModule setenvif_module modules/mod_setenvif.so
> LoadModule status_module modules/mod_status.so
> LoadModule userdir_module modules/mod_userdir.so
> LoadModule ssl_module modules/mod_ssl.so
> LoadModule headers_module modules/mod_headers.so
> LoadModule info_module modules/mod_info.so
> LoadModule rewrite_module modules/mod_rewrite.so
> LoadModule php5_module modules/libphp5.so
> LoadModule auth_basic_module modules/mod_auth_basic.so
> LoadModule authn_file_module modules/mod_authn_file.so
> LoadModule authz_user_module modules/mod_authz_user.so
> LoadModule auth_cas_module modules/mod_auth_cas.so
> #
> # ExtendedStatus controls whether Apache will generate "full" status
> # information (ExtendedStatus On) or just basic information (ExtendedStatus
> # Off) when the "server-status" handler is called. The default is Off.
> #
> ExtendedStatus On
> ### Section 2: 'Main' server configuration
> #
> # The directives in this section set up the values used by the 'main'
> # server, which responds to any requests that aren't handled by a
> # <VirtualHost> definition. These values also provide defaults for
> # any <VirtualHost> containers you may define later in the file.
> #
> # All of these directives may appear inside <VirtualHost> containers,
> # in which case these default settings will be overridden for the
> # virtual host being defined.
> #
> <IfModule !mpm_winnt.c>
> <IfModule !mpm_netware.c>
> #
> # If you wish httpd to run as a different user or group, you must run
> # httpd as root initially and it will switch.
> #
> # User/Group: The name (or #number) of the user/group to run httpd as.
> # . On SCO (ODT 3) use "User nouser" and "Group nogroup".
> # . On HPUX you may not be able to use shared memory as nobody, and the
> # suggested workaround is to create a user www and use that user.
> # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
> # when the value of (unsigned)Group is above 60000;
> # don't use Group #-1 on these systems!
> #
> User www
> Group www
> </IfModule>
> </IfModule>
> #
> # ServerAdmin: Your address, where problems with the server should be
> # e-mailed. This address appears on some server-generated pages, such
> # as error documents. e.g. admin at your-domain.com
> #
> ServerAdmin webmaster at columbia.edu
> #
> # ServerName gives the name and port that the server uses to identify
> itself.
> # This can often be determined automatically, but we recommend you specify
> # it explicitly to prevent problems during startup.
> #
> # If this is not set to valid DNS name for your host, server-generated
> # redirections will not work. See also the UseCanonicalName directive.
> #
> # If your host doesn\'t have a registered DNS name, enter its IP address
> here.
> # You will have to access it by its address anyway, and this will make
> # redirections work in a sensible way.
> #
> ServerName ebi.cc.columbia.edu
> #
> # UseCanonicalName: Determines how Apache constructs self-referencing
> # URLs and the SERVER_NAME and SERVER_PORT variables.
> # When set "Off", Apache will use the Hostname and Port supplied
> # by the client. When set "On", Apache will use the value of the
> # ServerName directive.
> #
> UseCanonicalName On
> #
> # DocumentRoot: The directory out of which you will serve your
> # documents. By default, all requests are taken from this directory, but
> # symbolic links and aliases may be used to point to other locations.
> #
> DocumentRoot "/etc/httpd/htdocs"
> #
> # Each directory to which Apache has access can be configured with respect
> # to which services and features are allowed and/or disabled in that
> # directory (and its subdirectories).
> #
> # First, we configure the "default" to be a very restrictive set of
> # features.
> #
> <Directory />
> Options FollowSymLinks
> # AllowOverride controls which options the .htaccess files in directories
> # can override. Can also be "All", or any combination of "Options",
> # "FileInfo", "AuthConfig", and "Limit"
> # Note: "FileInfo" allows the .htaccess file to contain Redirect commands
> AllowOverride AuthConfig FileInfo Indexes Limit
> </Directory>
> #
> # Note that from this point forward you must specifically allow
> # particular features to be enabled - so if something's not working as
> # you might expect, make sure that you have specifically enabled it
> # below.
> #
> #
> # This should be changed to whatever you set DocumentRoot to.
> #
> <Directory "/etc/httpd/htdocs">
> #
> # Possible values for the Options directive are "None", "All",
> # or any combination of:
> # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
> #
> # Note that "MultiViews" must be named *explicitly* --- "Options All"
> # doesn't give it to you.
> #
> # The Options directive is both complicated and important. Please see
> # http://httpd.apache.org/docs-2.0/mod/core.html#options
> # for more information.
> #
> Options Indexes FollowSymLinks
> # AllowOverride controls which options the .htaccess files in directories
> # can override. Can also be "All", or any combination of "Options",
> # "FileInfo", "AuthConfig", and "Limit"
> # Note: "FileInfo" allows the .htaccess file to contain Redirect commands
> AllowOverride AuthConfig FileInfo Indexes Limit
> #
> # Controls who can get stuff from this server.
> #
> Order allow,deny
> Allow from all
> </Directory>
> <Directory "/etc/httpd/htdocs/php">
> AddType application/x-httpd-php .php
> <IfModule mod_dir.c>
> DirectoryIndex index.html index.php
> </IfModule>
> </Directory>
> #
> # UserDir: The name of the directory that is appended onto a user's home
> # directory if a ~user request is received.
> #
> UserDir disabled
> #
> # Control access to UserDir directories. The following is an example
> # for a site where these directories are restricted to read-only.
> #
> #
> # DirectoryIndex: sets the file that Apache will serve if a directory
> # is requested.
> #
> # The index.html.var file (a type-map) is used to deliver content-
> # negotiated documents. The MultiViews Option can be used for the
> # same purpose, but it is much slower.
> #
> DirectoryIndex index.html index.html.var index.htm
> #
> # AccessFileName: The name of the file to look for in each directory
> # for additional configuration directives. See also the AllowOverride
> # directive.
> #
> AccessFileName .htaccess
> #
> # The following lines prevent .htaccess and .htpasswd files from being
> # viewed by Web clients.
> #
> <Files ~ "^\.ht|WEB-INF|web.xml|server.xml|\.properties$">
> Order allow,deny
> Deny from all
> </Files>
> #
> # TypesConfig describes where the mime.types file (or equivalent) is
> # to be found.
> #
> TypesConfig /etc/httpd/conf/mime.types
> #
> # DefaultType is the default MIME type the server will use for a document
> # if it cannot otherwise determine one, such as from filename extensions.
> # If your server contains mostly text or HTML documents, "text/plain" is
> # a good value. If most of your content is binary, such as applications
> # or images, you may want to use "application/octet-stream" instead to
> # keep browsers from trying to display binary files as though they are
> # text.
> #
> DefaultType text/plain
> #
> # The mod_mime_magic module allows the server to use various hints from the
> # contents of the file itself to determine its type. The MIMEMagicFile
> # directive tells the module where the hint definitions are located.
> #
> <IfModule mod_mime_magic.c>
> MIMEMagicFile /etc/httpd/conf/magic
> </IfModule>
> #
> # HostnameLookups: Log the names of clients or just their IP addresses
> # e.g., www.apache.org (on) or 204.62.129.132 (off).
> # The default is off because it'd be overall better for the net if people
> # had to knowingly turn this feature on, since enabling it means that
> # each client request will result in AT LEAST one lookup request to the
> # nameserver.
> #
> HostnameLookups Off
> #
> # EnableMMAP: Control whether memory-mapping is used to deliver
> # files (assuming that the underlying OS supports it).
> # The default is on; turn this off if you serve from NFS-mounted
> # filesystems. On some systems, turning it off (regardless of
> # filesystem) can improve performance; for details, please see
> # http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap
> #
> #EnableMMAP off
> #
> # EnableSendfile: Control whether the sendfile kernel support is
> # used to deliver files (assuming that the OS supports it).
> # The default is on; turn this off if you serve from NFS-mounted
> # filesystems. Please see
> # http://httpd.apache.org/docs-2.0/mod/core.html#enablesendfile
> #
> #EnableSendfile off
> #
> # ErrorLog: The location of the error log file.
> # If you do not specify an ErrorLog directive within a <VirtualHost>
> # container, error messages relating to that virtual host will be
> # logged here. If you *do* define an error logfile for a <VirtualHost>
> # container, that host's errors will be logged there and not here.
> #
> ErrorLog /var/log/cnet/httpd_error_log
> #
> # LogLevel: Control the number of messages logged to the error_log.
> # Possible values include: debug, info, notice, warn, error, crit,
> # alert, emerg.
> #
> LogLevel warn
> #
> # The following directives define some format nicknames for use with
> # a CustomLog directive (see below).
> #
> LogFormat "%h %l %u %t \"(%r)\" %>s %b \"(ref %{Referer}i)\" \
> \"(client %{User-agent}i)\"" mainserver
> LogFormat "%h %l %u %t \"(%r)\" %>s %b \"(ref %{Referer}i)\" \
> \"(client %{User-agent}i)\" \"vhost %v\"" virtualhost
> # You need to enable mod_logio.c to use %I and %O
> #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I
> %O" combinedio
> #
> # The location and format of the access logfile (Common Logfile Format).
> # If you do not define any access logfiles within a <VirtualHost>
> # container, they will be logged here. Contrariwise, if you *do*
> # define per-<VirtualHost> access logfiles, transactions will be
> # logged therein and *not* in this file.
> #
> CustomLog /var/log/cnet/httpd_access_log mainserver
> #
> # ServerTokens
> # This directive configures what you return as the Server HTTP response
> # Header. The default is 'Full' which sends information about the OS-Type
> # and compiled in modules.
> # Set to one of: Full | OS | Minor | Minimal | Major | Prod
> # where Full conveys the most information, and Prod the least.
> #
> ServerTokens Minimal
> #
> # Optionally add a line containing the server version and virtual host
> # name to server-generated pages (internal error documents, FTP directory
> # listings, mod_status and mod_info output etc., but not CGI generated
> # documents or custom error documents).
> # Set to "EMail" to also include a mailto: link to the ServerAdmin.
> # Set to one of: On | Off | EMail
> #
> ServerSignature On
> #
> # Aliases: Add here as many aliases as you need (with no limit). The format
> is
> # Alias fakename realname
> #
> # Note that if you include a trailing / on fakename then the server will
> # require it to be present in the URL. So "/icons" isn't aliased in this
> # example, only "/icons/". If the fakename is slash-terminated, then the
> # realname must also be slash terminated, and if the fakename omits the
> # trailing slash, the realname must also omit it.
> #
> # We include the /icons/ alias for FancyIndexed directory listings. If you
> # do not use FancyIndexing, you may comment this out.
> #
> Alias /icons/ "/var/www/icons/"
> <Directory "/var/www/icons/">
> Options Indexes
> AllowOverride None
> Order allow,deny
> Allow from all
> </Directory>
> #
> # ScriptAlias: This controls which directories contain server scripts.
> # ScriptAliases are essentially the same as Aliases, except that
> # documents in the realname directory are treated as applications and
> # run by the server when requested rather than as documents sent to the
> client.
> # The same rules about trailing "/" apply to ScriptAlias directives as to
> # Alias.
> #
> ScriptAlias /cgi-bin/ "/etc/httpd/cgi-bin/"
> <IfModule mod_cgid.c>
> #
> # Additional to mod_cgid.c settings, mod_cgid has Scriptsock <path>
> # for setting UNIX socket for communicating with cgid.
> #
> #Scriptsock /var/log/cnet/cgisock
> </IfModule>
> #
> # "/opt/httpd-x.y.z/cgi-bin" should be changed to whatever your
> ScriptAliased
> # CGI directory exists, if you have that configured.
> #
> <Directory "/etc/httpd/cgi-bin/">
> AllowOverride All
> Options FollowSymLinks
> Order allow,deny
> Allow from all
> </Directory>
> #
> # Redirect allows you to tell clients about documents which used to exist in
> # your server's namespace, but do not anymore. This allows you to tell the
> # clients where to look for the relocated document.
> # Example:
> # Redirect permanent /foo http://www.example.com/bar
> #
> # Directives controlling the display of server-generated directory listings.
> #
> #
> # IndexOptions: Controls the appearance of server-generated directory
> # listings.
> #
> IndexOptions FancyIndexing VersionSort
> #
> # AddIcon* directives tell the server which icon to show for different
> # files or filename extensions. These are only displayed for
> # FancyIndexed directories.
> #
> AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
> AddIconByType (TXT,/icons/text.gif) text/*
> AddIconByType (IMG,/icons/image2.gif) image/*
> AddIconByType (SND,/icons/sound2.gif) audio/*
> AddIconByType (VID,/icons/movie.gif) video/*
> AddIcon /icons/binary.gif .bin .exe
> AddIcon /icons/binhex.gif .hqx
> AddIcon /icons/tar.gif .tar
> AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
> AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
> AddIcon /icons/a.gif .ps .ai .eps
> AddIcon /icons/layout.gif .html .shtml .htm .pdf
> AddIcon /icons/text.gif .txt
> AddIcon /icons/c.gif .c
> AddIcon /icons/p.gif .pl .py
> AddIcon /icons/f.gif .for
> AddIcon /icons/dvi.gif .dvi
> AddIcon /icons/uuencoded.gif .uu
> AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
> AddIcon /icons/tex.gif .tex
> AddIcon /icons/bomb.gif core
> AddIcon /icons/back.gif ..
> AddIcon /icons/hand.right.gif README
> AddIcon /icons/folder.gif ^^DIRECTORY^^
> AddIcon /icons/blank.gif ^^BLANKICON^^
> #
> # DefaultIcon is which icon to show for files which do not have an icon
> # explicitly set.
> #
> DefaultIcon /icons/unknown.gif
> #
> # AddDescription allows you to place a short description after a file in
> # server-generated indexes. These are only displayed for FancyIndexed
> # directories.
> # Format: AddDescription "description" filename
> #
> #AddDescription "GZIP compressed document" .gz
> #AddDescription "tar archive" .tar
> #AddDescription "GZIP compressed tar archive" .tgz
> #
> # ReadmeName is the name of the README file the server will look for by
> # default, and append to directory listings.
> #
> # HeaderName is the name of a file which should be prepended to
> # directory indexes.
> ReadmeName README.html
> HeaderName HEADER.html
> #
> # IndexIgnore is a set of filenames which directory indexing should ignore
> # and not include in the listing. Shell-style wildcarding is permitted.
> #
> IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,tWEB-INF web.xml
> server.xml *.properties *passwd*
> #
> # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
> # information on the fly. Note: Not all browsers support this.
> # Despite the name similarity, the following Add* directives have nothing
> # to do with the FancyIndexing customization directives above.
> #
> AddEncoding x-compress Z
> AddEncoding x-gzip gz tgz
> #
> # DefaultLanguage and AddLanguage allows you to specify the language of
> # a document. You can then use content negotiation to give a browser a
> # file in a language the user can understand.
> #
> # Specify a default language. This means that all data
> # going out without a specific language tag (see below) will
> # be marked with this one. You probably do NOT want to set
> # this unless you are sure it is correct for all cases.
> #
> # * It is generally better to not mark a page as
> # * being a certain language than marking it with the wrong
> # * language!
> #
> # DefaultLanguage nl
> #
> # Note 1: The suffix does not have to be the same as the language
> # keyword --- those with documents in Polish (whose net-standard
> # language code is pl) may wish to use "AddLanguage pl .po" to
> # avoid the ambiguity with the common suffix for perl scripts.
> #
> # Note 2: The example entries below illustrate that in some cases
> # the two character 'Language' abbreviation is not identical to
> # the two character 'Country' code for its country,
> # E.g. 'Danmark/dk' versus 'Danish/da'.
> #
> # Note 3: In the case of 'ltz' we violate the RFC by using a three char
> # specifier. There is 'work in progress' to fix this and get
> # the reference data for rfc1766 cleaned up.
> #
> # Danish (da) - Dutch (nl) - English (en) - Estonian (et)
> # French (fr) - German (de) - Greek-Modern (el)
> # Italian (it) - Norwegian (no) - Norwegian Nynorsk (nn) - Korean (ko)
> # Portugese (pt) - Luxembourgeois* (ltz)
> # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
> # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
> # Russian (ru) - Croatian (hr)
> #
> AddLanguage da .dk
> AddLanguage nl .nl
> AddLanguage en .en
> AddLanguage et .et
> AddLanguage fr .fr
> AddLanguage de .de
> AddLanguage he .he
> AddLanguage el .el
> AddLanguage it .it
> AddLanguage ja .ja
> AddLanguage pl .po
> AddLanguage ko .ko
> AddLanguage pt .pt
> AddLanguage nn .nn
> AddLanguage no .no
> AddLanguage pt-br .pt-br
> AddLanguage ltz .ltz
> AddLanguage ca .ca
> AddLanguage es .es
> AddLanguage sv .se
> AddLanguage cz .cz
> AddLanguage ru .ru
> AddLanguage tw .tw
> AddLanguage zh-tw .tw
> AddLanguage hr .hr
> #
> # LanguagePriority allows you to give precedence to some languages
> # in case of a tie during content negotiation.
> #
> # Just list the languages in decreasing order of preference. We have
> # more or less alphabetized them here. You probably want to change this.
> #
> LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv
> tw
> #
> # ForceLanguagePriority allows you to serve a result page rather than
> # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
> # [in case no accepted languages matched the available variants]
> #
> ForceLanguagePriority Prefer Fallback
> # Setting the default charset here does more harm than good, since
> # most browsers ignore the charset specified in the document when they
> # gets a charset header from the web server. If we want the browser
> # to honor the charset specified in the document we must not specify a
> # default charset in the web server config.
> #
> AddDefaultCharset off
> #
> # Commonly used filename extensions to character sets. You probably
> # want to avoid clashes with the language extensions, unless you
> # are good at carefully testing your setup after each change.
> # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets for
> # the official list of charset names and their respective RFCs
> #
> AddCharset ISO-8859-1 .iso8859-1 .latin1
> AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
> AddCharset ISO-8859-3 .iso8859-3 .latin3
> AddCharset ISO-8859-4 .iso8859-4 .latin4
> AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru
> AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb
> AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk
> AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb
> AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk
> AddCharset ISO-2022-JP .iso2022-jp .jis
> AddCharset ISO-2022-KR .iso2022-kr .kis
> AddCharset ISO-2022-CN .iso2022-cn .cis
> AddCharset Big5 .Big5 .big5
> # For russian, more than one charset is used (depends on client, mostly):
> AddCharset WINDOWS-1251 .cp-1251 .win-1251
> AddCharset CP866 .cp866
> AddCharset KOI8-r .koi8-r .koi8-ru
> AddCharset KOI8-ru .koi8-uk .ua
> AddCharset ISO-10646-UCS-2 .ucs2
> AddCharset ISO-10646-UCS-4 .ucs4
> AddCharset UTF-8 .utf8
> # The set below does not map to a specific (iso) standard
> # but works on a fairly wide range of browsers. Note that
> # capitalization actually matters (it should not, but it
> # does for some browsers).
> #
> # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets
> # for a list of sorts. But browsers support few.
> #
> AddCharset GB2312 .gb2312 .gb
> AddCharset utf-7 .utf7
> AddCharset utf-8 .utf8
> AddCharset big5 .big5 .b5
> AddCharset EUC-TW .euc-tw
> AddCharset EUC-JP .euc-jp
> AddCharset EUC-KR .euc-kr
> AddCharset shift_jis .sjis
> #
> # AddType allows you to add to or override the MIME configuration
> # file mime.types for specific file types.
> #
> AddType application/x-tar .tgz
> AddType image/x-icon .ico
> #
> # AddHandler allows you to map certain file extensions to "handlers":
> # actions unrelated to filetype. These can be either built into the server
> # or added with the Action directive (see below)
> #
> # To use CGI scripts outside of ScriptAliased directories:
> # (You will also need to add "ExecCGI" to the "Options" directive.)
> #
> #AddHandler cgi-script .cgi
> #
> # For files that include their own HTTP headers:
> #
> #AddHandler send-as-is asis
> #
> # For server-parsed imagemap files:
> #
> #AddHandler imap-file map
> #
> # For type maps (negotiated resources):
> # (This is enabled by default to allow the Apache "It Worked" page
> # to be distributed in multiple languages.)
> #
> AddHandler type-map var
> #
> # Filters allow you to process content before it is sent to the client.
> #
> # To parse .shtml files for server-side includes (SSI):
> # (You will also need to add "Includes" to the "Options" directive.)
> #
> #AddType text/html .shtml
> #AddOutputFilter INCLUDES .shtml
> #
> # Action lets you define media types that will execute a script whenever
> # a matching file is called. This eliminates the need for repeated URL
> # pathnames for oft-used CGI file processors.
> # Format: Action media/type /cgi-script/location
> # Format: Action handler-name /cgi-script/location
> #
> #
> # Customizable error responses come in three flavors:
> # 1) plain text 2) local redirects 3) external redirects
> #
> # Some examples:
> #ErrorDocument 500 "The server made a boo boo."
> #ErrorDocument 404 /missing.html
> #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
> #ErrorDocument 402 http://www.example.com/subscription_info.html
> #
> #
> # Putting this all together, we can internationalize error responses.
> #
> # We use Alias to redirect any /error/HTTP_<error>.html.var response to
> # our collection of by-error message multi-language collections. We use
> # includes to substitute the appropriate text.
> #
> # You can modify the messages' appearance without changing any of the
> # default HTTP_<error>.html.var files by adding the line:
> #
> # Alias /error/include/ "/your/include/path/"
> #
> # which allows you to create your own set of files by starting with the
> # /opt/httpd-x.y.z/error/include/ files and copying them to
> /your/include/path/,
> # even on a per-VirtualHost basis. The default include files will display
> # your Apache version number and your ServerAdmin email address regardless
> # of the setting of ServerSignature.
> #
> # The internationalized error documents require mod_alias, mod_include
> # and mod_negotiation. To activate them, uncomment the following 30 lines.
> ScriptAlias /cgi-local/ /etc/httpd/cgi-local/
> Alias /error/ "/var/www/error/"
> <Directory "/var/www/error">
> AllowOverride None
> Options IncludesNoExec
> AddOutputFilter Includes html
> AddHandler type-map var
> Order allow,deny
> Allow from all
> LanguagePriority en de es fr it nl sv
> ForceLanguagePriority Prefer Fallback
> </Directory>
> #
> # The following directives modify normal HTTP response behavior to
> # handle known problems with browser implementations.
> #
> BrowserMatch "Mozilla/2" nokeepalive
> BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
> BrowserMatch "RealPlayer 4\.0" force-response-1.0
> BrowserMatch "Java/1\.0" force-response-1.0
> BrowserMatch "JDK/1\.0" force-response-1.0
> #
> # The following directive disables redirects on non-GET requests for
> # a directory that does not include the trailing slash. This fixes a
> # problem with Microsoft WebFolders which does not appropriately handle
> # redirects for folders with DAV methods.
> # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
> #
> BrowserMatch "Microsoft Data Access Internet Publishing Provider"
> redirect-carefully
> BrowserMatch "^WebDrive" redirect-carefully
> BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
> BrowserMatch "^gnome-vfs" redirect-carefully
> #
> # Allow server status reports generated by mod_status,
> # with the URL of http://servername/server-status
> # Change the ".example.com" to match your domain to enable.
> #
> <Location /server-status>
> SetHandler server-status
> Order deny,allow
> Deny from all
> Allow from 127.0.0.1 ebi.cc.columbia.edu ebi.cc.columbia.edu
> stilton.cc.columbia.edu symon-dev.cc.columbia.edu orange.cc.columbia.edu
> symon.cc.columbia.edu
> </Location>
> #
> # Allow remote server configuration reports, with the URL of
> # http://servername/server-info (requires that mod_info.c be loaded).
> # Change the ".example.com" to match your domain to enable.
> #
> <Location /server-info>
> SetHandler server-info
> Order deny,allow
> Deny from all
> Allow from 127.0.0.1 ebi.cc.columbia.edu ebi.cc.columbia.edu
> stilton.cc.columbia.edu symon-dev.cc.columbia.edu orange.cc.columbia.edu
> symon.cc.columbia.edu
> </Location>
> #
> # Proxy Server directives. Uncomment the following lines to
> # enable the proxy server:
> #
> #<IfModule mod_proxy.c>
> #ProxyRequests On
> #
> #<Proxy *>
> # Order deny,allow
> # Deny from all
> # Allow from .example.com
> #</Proxy>
> #
> # Enable/disable the handling of HTTP/1.1 "Via:" headers.
> # ("Full" adds the server version; "Block" removes all outgoing Via:
> headers)
> # Set to one of: Off | On | Full | Block
> #
> #ProxyVia On
> #
> # To enable the cache as well, edit and uncomment the following lines:
> # (no cacheing without CacheRoot)
> #
> #CacheRoot "/var/log/cnet/proxy"
> #CacheSize 5
> #CacheGcInterval 4
> #CacheMaxExpire 24
> #CacheLastModifiedFactor 0.1
> #CacheDefaultExpire 1
> #NoCache a-domain.com another-domain.edu joes.garage-sale.com
> #</IfModule>
> # End of proxy directives.
> #
> # Bring in additional module-specific configurations
> #
> #<IfModule mod_ssl.c>
> # Include /etc/httpd/conf/ssl.conf
> #</IfModule>
> SSLMutex yes
> SSLSessionCache shm:/var/log/cnet/ssl_gcache_data
> SSLPassPhraseDialog exec:/usr/sbin/getppc
> CASVersion 1
> CASDebug On
> CASValidateServer Off
> CASLoginURL https://wind.columbia.edu/login
> CASValidateURL https://wind.columbia.edu/validate
> CASCookiePath /var/cas/
> CASCookieEntropy 32
> CASTimeout 86440
> CASIdleTimeout 86440
> CASCacheCleanInterval 1800
> CASCookieDomain ebi.cc.columbia.edu
> CASCookieHttpOnly Off
> ### Section 3: Virtual Hosts
> #
> # VirtualHost: If you want to maintain multiple domains/hostnames on your
> # machine you can setup VirtualHost containers for them. Most configurations
> # use only name-based virtual hosts so the server doesn't need to worry
> about
> # IP addresses. This is indicated by the asterisks in the directives below.
> #
> # Please see the documentation at
> # <URL:http://httpd.apache.org/docs-2.0/vhosts/>
> # for further details before you try to setup virtual hosts.
> #
> # You may use the command line option '-S' to verify your virtual host
> # configuration.
> #
> # Use name-based virtual hosting.
> #
> <VirtualHost *:80>
> ServerName ebi.cc.columbia.edu
> DocumentRoot "/etc/httpd/htdocs"
> Redirect "/" "https://ebi.cc.columbia.edu/"
> </VirtualHost>
> Include /etc/httpd/conf.d/php.conf
> Include /etc/httpd/conf.d/ssl.conf
>
> #LoadModule ssl_module modules/mod_ssl.so
> #Listen 443
>
> AddType application/x-x509-ca-cert .crt
> AddType application/x-pkcs7-crl .crl
>
> SSLPassPhraseDialog builtin
>
> SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000)
> SSLSessionCacheTimeout 1200
>
> #SSLMutex default
>
> SSLRandomSeed startup file:/dev/urandom 1024
> SSLRandomSeed connect builtin
> SSLRandomSeed connect file:/dev/urandom 1024
> SSLCryptoDevice builtin
> #SSLCryptoDevice ubsec
>
>
> <VirtualHost _default_:443>
> DocumentRoot "/etc/httpd/htdocs"
> ErrorLog logs/ssl_error_log
> TransferLog logs/ssl_access_log
> LogLevel debug
>
> SSLEngine on
> SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP
>
> SSLCertificateFile /etc/httpd/certs/ebi.cc.columbia.edu.crt
> SSLCertificateKeyFile /etc/httpd/certs/ebi.cc.columbia.edu.key
> #SSLCertificateChainFile /etc/httpd/conf/ssl.crt/ca.crt
>
> #<Location />
> #SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)/ \
> # and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
> # and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \
> # and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
> # and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20 ) \
> # or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/
> #</Location>
>
> ScriptAlias /nagios/cgi-bin "/usr/lib64/nagios/cgi"
>
> #<Location /nagios/cgi>
> # SSLRequireSSL
> # Options ExecCGI
> # AllowOverride None
> # Order allow,deny
> # Allow from all
> # AuthType CAS
> # CASScope /
> # CASRenew Off
> # CASGateway Off
> # CASCookie MOD_AUTH_CAS
> # CASSecureCookie MOD_AUTH_CAS_S
> # CASGatewayCookie MOD_AUTH_CAS_G
> # CASAuthNHeader None
> # require valid-user
> #</Location>
>
> Alias /nagios "/usr/share/nagios"
>
>
> <Location /nagios>
>
> SSLRequireSSL
> Options ExecCGI
> AllowOverride None
> Order allow,deny
> Allow from all
> AuthType CAS
> CASScope /
> CASRenew Off
> CASGateway Off
> CASCookie MOD_AUTH_CAS
> CASSecureCookie MOD_AUTH_CAS_S
> CASGatewayCookie MOD_AUTH_CAS_G
> CASAuthNHeader None
> require valid-user
>
> </Location>
>
> Alias /ndograph "/usr/share/ndograph"
>
> <Location /ndograph/>
> SSLRequireSSL
> Options ExecCGI
> AllowOverride None
> Order allow,deny
> Allow from all
> AuthType CAS
> CASScope /
> CASRenew Off
> CASGateway Off
> CASCookie MOD_AUTH_CAS
> CASSecureCookie MOD_AUTH_CAS_S
> CASGatewayCookie MOD_AUTH_CAS_G
> CASAuthNHeader None
> require valid-user
>
> </Location>
>
>
> Alias /cache "/usr/share/cache"
>
> <Location /cache>
> SSLRequireSSL
> Options ExecCGI
> AllowOverride None
> Order allow,deny
> Allow from all
> AuthType CAS
> CASScope /
> CASRenew Off
> CASGateway Off
> CASCookie MOD_AUTH_CAS
> CASSecureCookie MOD_AUTH_CAS_S
> CASGatewayCookie MOD_AUTH_CAS_G
> CASAuthNHeader None
> require valid-user
> </Location>
>
>
> #SSLOptions +FakeBasicAuth +ExportCertData +CompatEnvVars +StrictRequire
> <Files ~ "\.(cgi|shtml|phtml|php3?)$">
> SSLOptions +StdEnvVars
> </Files>
> <Directory "/var/www/cgi-bin">
> SSLOptions +StdEnvVars
> </Directory>
>
> SetEnvIf User-Agent ".*MSIE.*" \
> nokeepalive ssl-unclean-shutdown \
> downgrade-1.0 force-response-1.0
>
> CustomLog logs/ssl_request_log \
> "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
>
> </VirtualHost>
>
>
> _______________________________________________
> Yale CAS mailing list
> cas at tp.its.yale.edu
> http://tp.its.yale.edu/mailman/listinfo/cas
>
>
More information about the cas
mailing list