That message is just a pass-through from the libssl function. 

void ntop_ssl_error_report(char * whyMe) {
    unsigned long l;
    char buf[200];
    const char *file,*data;
    int line,flags;
    unsigned long es;

    es=CRYPTO_thread_id();
    while ((l=ERR_get_error_line_data(&file,&line,&data,&flags)) != 0) {
        ERR_error_string_n(l, buf, sizeof buf);
        traceEvent(CONST_TRACE_ERROR, "SSL(%s)ERROR [Thread %lu]: %s at
%s(%d) %s",
                                whyMe,
                                es,
                                buf,
                                file,
                                line,
                                (flags&ERR_TXT_STRING)?data:"";);
    }
}

If you google for "ssl handshake failure" s23_lib, you'll find a lot of
stuff.  Much of it seems to relate to TLS, which IIRC has browser issues.
Try turning it off in your Tools | Internet Options, on the Advanced tab
under 'security'.

-----Burton


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, June 29, 2005 9:41 AM
To: [email protected]
Subject: [Ntop] ntop[501]: **ERROR** SSL(read)ERROR [Thread 501]

Hello,

I'm trying to use HTTPS with NTOP and get the following error into the log
files -> ntop[501]: **ERROR** SSL(read)ERROR [Thread 501]:
error:140780E5:SSL routines:SSL23_READ:ssl handshake failure at
s23_lib.c(180).

NTOP has been compiled as follow:
aclocal-1.6
autoheader
autoconf
automake-1.6 --gnu --copy --add-missing
./configure --datadir=/home/httpd/htdocs \
        --disable-static

make
make install

I've read the FAQ and other documentations included into the source code
about SSL without a solution that fix the above problem. Please can someone
give me an idea to check or a fix, thanks.

Gerhard,

_______________________________________________
Ntop mailing list
[email protected]
http://listgateway.unipi.it/mailman/listinfo/ntop

_______________________________________________
Ntop mailing list
[email protected]
http://listgateway.unipi.it/mailman/listinfo/ntop

Reply via email to