Hi, I have the following certs 1) End user cert subject: enduser whatever issuer : Intermediate CA whatever
2) Intermediate CA cert subject: Intermediate CA whatever issuer : Actual CA whatever 3) Actual CA cert (self signed) subject : Actual CA whatever issuer : Actual CA whatever I have these certs in PEM format. I appended cert2 to the end of cert 1 to get mycert.pem cat mycert.pem -----BEGIN RSA PRIVATE KEY----- /* The RSA key */ -----END RSA PRIVATE KEY----- -----BEGIN CERTIFICATE----- /* Cert 1 */ -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- /* Cert 2 */ -----END CERTIFICATE----- I send this to a SSL Server which verifies client certs openssl s_client -connect <host>:<port> -cert mycert.pem -msg -CApath <mycapath> However this only seems to send Cert1 to the server? How can I make "openssl s_client" send the chain - i.e. cert1 & cert2? ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List openssl-users@openssl.org Automated List Manager [EMAIL PROTECTED]