This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SSL Cert issues | |
Need to get the .crt file for ZScaler. Can be done with an OpenSSL command or by asking IT for a copy. | |
## Extracting the cert(?) | |
``` | |
openssl x509 -inform DER -in /mnt/d/eset.cer -out ./ZscalerRootCertificate-2048-SHA256.crt | |
``` | |
## Installing the cert | |
``` | |
sudo cp ZscalerRootCertificate-2048-SHA256.crt /usr/local/share/ca-certificates/ |