SSL Certificate
For a secure connection between the integrated web server of the Kentix device and a browser, an SSL certificate can be loaded onto the device. The file that is uploaded contains the certificate and a key. These can be generated with OpenSSL, for example.
note
If no custom certificate is used, KentixONE secures SSL connections with a self-signed certificate.
Example for creating a self-signed certificate with OpenSSL
# Create temporary folder
$ mkdir ~/Desktop/cert
# Create certificate and key file
$ openssl req -x509 -newkey rsa:2048 -keyout ~/Desktop/cert/key.pem -out ~/Desktop/cert/cert.pem \ -days 999 -subj
"/C=DE/ST=RP/L=Idar-Oberstein/O=Kentix GmbH/OU=Org/CN=192.168.100.222" -nodes
# Combine key file and certificate
$ cat ~/Desktop/cert/key.pem ~/Desktop/cert/cert.pem > ~/Desktop/cert/server.pem