Dear Community User! We have started the migration process.
This community is now in READ ONLY mode.
Read more: Important information on the platform change.

ctrlX_Webserver_HTTPS.jpg

How to make an HTTPS connection with ctrlX OS Web Server

Sgilk
Frequent Contributor

 
Introduction

In this article, a method of generating and installing TLS server certificates in the ctrlX OS, and a certificate authority on your PC or directly in Chrome and Firefox browsers, will be explained.

A common complaint when accessing the ctrlX Web UI is the warning in the image below.Chrome - Error MessageChrome - Error Message

This isn't a problem with ctrlX OS, but rather a security feature! Instead of using HTTP, the ctrlX web interface server provides an HTTPS connection. HTTPS encrypts and digitally signs all web server traffic, making it a far more secure communication protocol. Most browsers do not accept the self signed TLS certificates provided by ctrlX OS and display this warning when attempting to access the ctrlX web UI. This can be disabled in many browsers, but the secure connection can be made following the instructions below.

These certificates are specific to the DNS or IP address. Therefore, they can be reused across devices, so long as the certificate includes the device IP address. As an example, a certificate covering IP:127.0.0.1 should provide HTTPS connection to all ctrlX CORE Virtual instances forwarded to the local host, after the web server certificate and key are uploaded to the ctrlX OS.

Install OpenSSL

The first step is to gain access to OpenSSL. You can install this on a system of your choice, or use the installation that comes as part of a ctrlX WORKS app build environment.

OpenSSL is also included in standard Git installation. You can utilize the executable at the default location for openssl.exe: "C:\Program Files\Git\usr\bin".

Following commands needs to be written into one line without the "\" to be useable in a command line tool. VSCode as a development environment is highly recommended. The included terminal will accept the commands below with direct copy and paste.

Generate Private Certificate Authority (CA)

Open a terminal in a directory of your choice. Run the openssl command below. Modify the -subj parameter as necessary.

openssl req -x509 -nodes \
  -newkey RSA:2048       \
  -keyout root-ca.key    \
  -days 365              \
  -out root-ca.crt       \
  -subj '/C=US/ST=MN/L=Earth/O=Bosch Rexroth/CN=ctrlX_OS*'


This will generate a private key and certificate for your certificate authority. 

Generate ctrlX Web Server Certificate and Key

In the same directory as above, run the openssl command below. Modify the -subj parameter as necessary.

openssl req -nodes   \
  -newkey rsa:2048   \
  -keyout server.key \
  -out server.csr    \
  -subj '/C=US/ST=MN/L=Earth/O=Bosch Rexroth/CN=ctrlX_OS*'


This will generate a key and certificate signing request for the ctrlX OS web server.

Create a text file named config.txt, in the same directory that you are running the openssl commands, and add the following text. Modify subjectAltName to fit your device IP. You can list multiple comma seperated addresses here if you'd like the certificate to apply to more than one device or address.

subjectAltName = IP:192.168.1.100, IP:127.0.0.1
authorityKeyIdentifier = keyid,issuer
basicConstraints = CA:FALSE
keyUsage = digitalSignature, keyEncipherment
extendedKeyUsage=serverAuth


Execute the following openssl command in a terminal, located in the same working directory as the previous commands, to generate the signed web server certificate.

openssl x509 -req    \
  -CA root-ca.crt    \
  -CAkey root-ca.key \
  -in server.csr     \
  -out server.crt    \
  -days 365          \
  -CAcreateserial    \
  -extfile config.txt

 

Add Certificate to PC/HMI
Add Certificate Authority Windows Certificate Manager

Add the generated root-ca.crt to your Windows certificate manager to have it available for all applications on the PC.

Windows - certificate importWindows - certificate import

Add Certificate Authority to Browser Certificate Stores

This is only needed if browser does not support operating system certificate storage or global storage cannot be used.
Add the generated root-ca.crt to your browser certificate stores. The location for Chrome and Firefox are provided below.

  • Chrome
    • Settings --> Privacy and Security --> Manage Device Certificates --> Trusted Root Certification Authorities --> ImportChrome Certificate ImportChrome Certificate Import
  • Firefox
    • Settings --> Privacy and Security --> Certificates --> View Certificates --> Authorities --> ImportFirefox Certificate ImportFirefox Certificate Import
    • Trust the CA to identify websitesDownloading CertificateDownloading Certificate
Add Web Server Certificate and Key to ctrlX OS Certificate Manager
  1. Rename the generated server.crt to webserver_custom_cert.pem.
  2. Rename the generated server.key to webserver_custom_key.pem.
  3. Certificate
    • Settings --> Certificates and Keys --> Web Server --> Certificates
    • Delete the existing webserver_custom_cert.pem
    • Import new webserver_custom_cert.pem
    • Select category OwnctrlX OS - Replace Web Server CertificatectrlX OS - Replace Web Server Certificate
  1. Key
    • ctrlX OS web UI --> Settings --> Certificates and Keys --> Web Server --> Keys
    • Delete the existing webserver_custom_key.pem
    • Import new webserver_custom_key.pem
    • Select category Own
      ctrlX OS - Web Server Key UploadctrlX OS - Web Server Key Upload
  2.  A reboot is needed after installing certificates
Test HTTPS Connection
  1. Reboot the control
  2. Clear browser caches and restart browser
  3. Access web pages under the specified subjectAltName ip addresses with an HTTPS connection. Note: Sometimes the browser will display the warning message, after the browser cache has been cleared, the first time the page is accessed. Refresh the page after ~30s and the message should no longer appear.CtrlX Web Server Secure ConnectionCtrlX Web Server Secure Connection
Related Links
Sgilk
Sgilk
Hello, my name is Sam and I am a Software Applications Engineer supporting ctrlX Automation. Feel free to reach out if you have any questions!
Must Read
Icon--AD-black-48x48Icon--address-consumer-data-black-48x48Icon--appointment-black-48x48Icon--back-left-black-48x48Icon--calendar-black-48x48Icon--center-alignedIcon--Checkbox-checkIcon--clock-black-48x48Icon--close-black-48x48Icon--compare-black-48x48Icon--confirmation-black-48x48Icon--dealer-details-black-48x48Icon--delete-black-48x48Icon--delivery-black-48x48Icon--down-black-48x48Icon--download-black-48x48Ic-OverlayAlertIcon--externallink-black-48x48Icon-Filledforward-right_adjustedIcon--grid-view-black-48x48IC_gd_Check-Circle170821_Icons_Community170823_Bosch_Icons170823_Bosch_Icons170821_Icons_CommunityIC-logout170821_Icons_Community170825_Bosch_Icons170821_Icons_CommunityIC-shopping-cart2170821_Icons_CommunityIC-upIC_UserIcon--imageIcon--info-i-black-48x48Icon--left-alignedIcon--Less-minimize-black-48x48Icon-FilledIcon--List-Check-grennIcon--List-Check-blackIcon--List-Cross-blackIcon--list-view-mobile-black-48x48Icon--list-view-black-48x48Icon--More-Maximize-black-48x48Icon--my-product-black-48x48Icon--newsletter-black-48x48Icon--payment-black-48x48Icon--print-black-48x48Icon--promotion-black-48x48Icon--registration-black-48x48Icon--Reset-black-48x48Icon--right-alignedshare-circle1Icon--share-black-48x48Icon--shopping-bag-black-48x48Icon-shopping-cartIcon--start-play-black-48x48Icon--store-locator-black-48x48Ic-OverlayAlertIcon--summary-black-48x48tumblrIcon-FilledvineIc-OverlayAlertwhishlist