My company has implemented an upstream device that does decryption and this requires all boxes to have the root CA certificate installed.
I copied the ca certificate in pem format and did the below. The update acknowledged one certificate was added. The last cert in /etc/ssl/certs/ca-certifcates.crt, shows the root.crt certificate. I have also installed the intermediate certificate.
sudo apt-get install -y ca-certificates sudo cp root.crt /usr/local/share/ca-certificates sudo update-ca-certificates However, when using Firefox or Brave the following error occurs. This error is from Firefox . It's clearly a certificate issue, I think the browsers aren't seeing the certificate?
"Did Not Connect: Potential Security Issue"
Someone could be trying to impersonate the site and you should not continue.
Websites prove their identity via certificates. Firefox does not trust www.google.com because its certificate issuer is unknown, the certificate is self-signed, or the server is not sending the correct intermediate certificates.
Error code: SEC_ERROR_UNKNOWN_ISSUER
www.google.comjust a placeholder and the cert for your company's site which you are trying to access from Firefox on a Ubuntu 24 system? If not, edit the question and add an explanation of what it is exactly that you are trying to do.openssl s_client -showcerts -connect $host:$port </dev/nullwhich will show exactly the cert chain received (as PEM blocks) and validated -- or not -- in the callback trace at the beginning.