For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

MOHIT_125417's avatar
MOHIT_125417
Icon for Altostratus rankAltostratus
Aug 22, 2015

Getting SSL Error during Curl

Dear Experts,

 

I am getting the below Error while doing the curl for one of my VIP.

 

What could be the Issue here...Any help really appreciated

 

curl -v https://abcd.com * About to connect() to abcd.com port 443 * Trying 1.1.1.1... connected * Connected to abcd (1.1.1.1) port 443 * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * SSLv2, Client hello (1): error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error * Closing connection 0 curl: (35) error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error

 

2 Replies

  • Hi,

     

    If you need to test connection and certificate are work properly. Please try openssl command like this

     

    openssl s_client -host -port

     

    If your certificate is correct you will see any details of certificate and put http command.

     

  • Generally speaking, in order to do SSL with cURL you either need to specify a CA certificate with the --cacert option (in order to validate the server's certificate), or the -k option to completely ignore the trust error.

    curl -vk https://abcd.com