[Expert@VXX-FWXX:0]# curl_cli -v
https://004e0b01.pphosted.com:10000/* Trying 205.220.162.242...
* Connected to 004e0b01.pphosted.com (205.220.162.242) port 10000 (#0)
* ALPN, offering http/1.1
* Cipher selection: HIGH:!RC4:!LOW:!EXP:!aNULL:!SSLv2:!MD5:!aECDH:!EDH
* *** Current date is: Wed Oct 28 14:46:31 2020
* TLSv1.2 (OUT), TLS header, Certificate Status (22):
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
* err is -1, detail is 2
* *** Current date is: Wed Oct 28 14:46:31 2020
* TLSv1.2 (IN), TLS handshake, Server hello (2):
* TLSv1.2 (IN), TLS handshake, Certificate (11):
* TLSv1.2 (OUT), TLS alert, Server hello (2):
* err is -1, detail is 1
* errdetail=0x14090086
ERR_lib_error_string: SSL routines
ERR_func_error_string: ssl3_get_server_certificate
ERR_reason_error_string: certificate verify failed
ERR_error_string: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed
* SSL certificate problem: unable to get local issuer certificate
* Closing connection 0
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here:
http://curl.haxx.se/docs/sslcerts.html
curl performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn't adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option.
As you can see from the above output the connection to the server itself is successful but towards the end there is cert error because of which connection is being dropped, i dont think this is a firewall issue (we have url filtering enabled but not https inpsection, using only categoized https inspection), so im assuming that this is not an issue from our side?
Thank You.