Horizon View

Unified Access Gateway UAG Certificate Install

Getting certificates squared away for your UAG configuration sitting in front of your Horizon infrastructure is a great task to get completed before going into production. You want to make sure you have a trusted certificate in place before placing any web facing solution into production. This includes your Unified Access Gateway (UAG). In this post, I will go through a quick walkthrough Unified Access Gateway UAG certificate install, including how to export a cert from a Windows server and split this out into the files you need to import onto your Unified Access Gateway configuration.

Certificate Request from Windows Server

To get your certificate that you will install on your Unified Access Gateway frontend server(s), you can easily use a Windows Server to formulate the certificate request for the certificate that will be installed.

SSL Certificate Authorities such as Godaddy will have a process you follow to upload the certificate request to their site. They will validate that you are the owner of the domain you are applying for an SSL certificate for. This may be an email to the email address on record, or other means of proving domain ownership. All in all, this is standard stuff most of you have done many times.

So with that out of the way, you install your issued certificate into the certificate store of your Windows Server. This will allow exporting the certificate in a format we need to use to convert to the PEM format the UAG appliance will understand.

Export the SSL Certificate from Windows

Let’s look at the first step to getting the SSL certificate on your UAG appliance. This involves exporting your certificate from the Windows certificate store so that we can use it to import to the UAG appliance.

We need to export the certificate as a PFX certificate. This allows exporting the private key. Once we export the PFX certificate, we will need to then convert it to PEM format of both the certificate an the private key.

Export-the-SSL-certificate-as-a-PFX-file-1
Export the SSL certificate as a PFX file

You have to supply a password since we are exporting the private key.

Set-a-password-for-the-exported-SSL-certificate-1
Set a password for the exported SSL certificate

Supply the file name that you want to use for the certificate export.

Choose-a-filename-for-the-exported-certificate-1
Choose a filename for the exported certificate

Finish out the certificate export.

Complete-exporting-the-SSL-certificate-1

Converting the Certificate to PEM format

The next step is to convert the PFX certificate into the format the UAG appliance understands – PEM. With the PEM format, you need to have two files, the certificate file and the private key file.

To get the two files from the one PFX file, we need to use openssl to convert the PFX file to the files needed for the UAG. Here I am simply using a Linux box that I have access to in the lab. Just copied over the PFX file and then run the openssl commands needed for conversion. You will have to supply the password for the PFX file for each command.

Converting-the-PFX-files-to-the-PEM-files-needed-1
Converting the PFX files to the PEM files needed
openssl pkcs12 -in yourPFX.pfx -nocerts -out yourfile_pk.pem -nodes

openssl pkcs12 -in yourPFX.pfx -nokeys -out yourfile_cert.pem -nodes

Unified Access Gateway UAG Certificate Install

Login to the UAG appliance and navigate to the Advanced Settings > TLS Server Certificate Settings.

UAG-install-TLS-server-certificate-1
UAG install TLS server certificate

This will launch the TLS Server Certificate Settings dialog box. Choose the Private key and the Certificate Chain file. These are the two files that were created using openssl.

Select-the-private-key-and-certificate-PEM-files

After installing the certificates, click the Save button. When you click the Save button, the UAG appliance interface will restart.

Wrapping Up

The Unified Access Gateway UAG Certificate Install is easy to accomplish using a Windows Server box to initiate the certificate request. After you have the certificate in place in the Windows certificates store, you can then export as a PFX for coverting.

After you get the PFX file, you can use a Linux box to split up the PFX file into the two PEM files needed for installation on the UAG box. The files include the certificate chain file as well as the private key file.

After you have these two files, you simply initiate the TLS server certificate configuration to install the new certificate on your UAG appliance.

Subscribe to VirtualizationHowto via Email 🔔

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Brandon Lee

Brandon Lee is the Senior Writer, Engineer and owner at Virtualizationhowto.com and has over two decades of experience in Information Technology. Having worked for numerous Fortune 500 companies as well as in various industries, Brandon has extensive experience in various IT segments and is a strong advocate for open source technologies. Brandon holds many industry certifications, loves the outdoors and spending time with family.

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.