Hi,
I am running UTM 9.352-6. I'd like to install a Digicert SSL certificate to use when connecting to the UTM webadmin portal. Can someone please provide me some guidance on how to create the CSR for the certificate and later installing the certificate on UTM.
Thanks for anyone's help!
Hi, and welcome to the UTM Community!
You can generate a CSR at the UTM command line using the prescription in this KnowledgeBase article: community.sophos.com/.../115976.
If you prefer to do this from the Windows command line with the free openssl tool:
openssl genrsa -aes128 -out <private key file name>.key 2048
openssl req -new -key <private key file name>.key -out <csr file name>.csr
If I recall correctly, you can get a PKCS#12 format file from Digicert that you can upload without further hassle. If not, come back and tell us what they sent you.
Cheers - Bob
This is an old post but I wanted to reply that I was able to figure it out. As of today, 11/01/2016, Digicert still does not provide PKCS#12 certificates. So hopefully, it helps anyone out there that uses Digicert and has an UTM 9.
I followed the firsts steps that BAlfson suggests, create a private key and a csr using openSSL.
Then I submitted the csr to Digicert and downloaded the individual .crt files (it 3 files in total for me) and combining them with BAlfson's cmdlets except without the <private key file name>.key. Like so:
cat cert1.crt cert2.crt cert3.crt > combined.crt
You can only run the above command on a Linux machine., by the way. I have a Windows workstation, had to look for Linux machine to run this.
After, I ran the following:
openssl pkcs12 -export -in <combined crt>.crt -inkey <private key file name>.key -out <your new cert>.p12
After you hit Enter on the above command, you will be asked to enter your private key's password and then create an export password. You will need to enter the export password on the UTM when you upload the .p12 certificate.
I hope this helps! And thanks BAlfson for your guidance!
I was able to use a DigiCert cert without the use of OpenSSL.
I did this process a while ago, so the following is from memory and may have a few missteps as I last did this as a renewal not from scratch.
Also, there are likely different ways to get to the same places in the Sophos menu. I write the way I know to get to the options, your mileage may vary.
If you are doing this for the first time, you may also need to import the DigiCert CA certificates that came with your key in the zip file. If memory serves me right, you would do that in WebServer Protection / Certificate Management / Certificate Authorities
Thanks, Larry - an excellent contribution that will help the great majority of admins much better than my suggestion above!
Cheers - Bob
Hi Bob,
I downloaded the certs from DigiCert in one .pem files that contains all the certificates. However upon checking with DigiCert - it gives me the error "
The server is not sending the required intermediate certificate." Any thoughts on this?
Hi KM and welcome to the UTM Community!
Only that there's an intermediate certificate missing. What does "checking with DigiCert" mean?
Cheers - Bob