Skip to content

Certificates

In Ixolate, certificates are used for ensuring trust between peers. To make using them easier, Ixolate allows creating certificates from the front-…

Updated View as Markdown

In Ixolate, certificates are used for ensuring trust between peers. To make using them easier, Ixolate allows creating certificates from the front-end. In addition to that, it also allows creating certificates for other purposes, avoiding the need to use the openssl command line tool. Certificates in Ixolate can be managed from System › Trust › Certificates.

Examples of Ixolate components that use certificates:

  • OpenVPN
  • IPsec
  • Captive Portal
  • Web Proxy

Certificate types

The following types of certificate can be generated in Ixolate:

  • Client
  • Server
  • Combined Client/Server
  • Certificate Authority

In addition to this, Ixolate can generate a Certificate Signing Request (CSR). This can be used if you want to create a certificate signed by an external CA.

Settings

In System › Trust › Settings you can find some advanced options to manage how the system handles trust. For compliance reasons, it is possible to implement certain constraints when a default OpenSSL context is requested.

Options Description
Store intermediate Allow local defined intermediate certificate authorities to be used in the local trust store. Be careful with deploying intermediate certificates as cross signed ones may causing breakage when included but expired later in the chain.
Store CRL’s Store all configured CRL’s in the default trust store. If the client or service support CRL’s, deploying to the default location eases maintenance.
Auto fetch CRL’s Schedule an hourly job to download CRLs using the defined Distributionpoints in the CAs deployed in our trust store.
Enable legacy Enable Legacy Providers. (Enables ciphers which will be removed in future versions of OpenSSL)
Configuration constraints When enabled, you can set some default ciphers and protocols, be careful with these options as these settings will be used by wuite some applications of the firewall (and might break them).

Revoke certificates

Certificate Revocation Lists

A Certificate Revocation Lists (CRL) is a list of certificates that have been revoked by the certificate authority. Some services in Ixolate can use these to validate if a certificate is still valid to use even though it might not be expired.

Defining a CRL in Ixolate is not very complicated, just go to System › Trust › Revocation and click on the [+] sign for your (local) certificate authority to create a new CRL. When a CRL exists, you may edit it and add or remove certificates in it (using the pencil icon).

The OCSP responder (server) which validates the ‘OCSP request’ needs a special signing certificate, which can be created in Ixolate via System › Trust › Authorities, issued by the same CA which created the user and/or server certificates.

Ixolate does not implement an OCSP responder, but to test the concept, we can use the openssl-ocsp command.

In order to test the concept, we need the following ingredients:

  1. The CA certificate chain which signed the certificates (export “cert” from Authorities menu)
  2. The OCSP signer certificate (export “cert” and “key” from Authorities menu for the signer)
  3. An index file for openssl-ocsp (export index from Revocation menu) as specified in https://pki-tutorial.readthedocs.io/en/latest/cadb.html
  4. A serial number of a revoked certificate (use the info button to find the serial number)
  5. A serial number of a non expired or revoked certificate

First start the server in a console:

# openssl ocsp -index index.txt -port 8081 -rsigner ocsp_signer.crt -rkey ocsp_signer.key -CA ca.crt -ignore_err -text

Then verify a known good certificate (with serial number 1):

# openssl ocsp -url http://127.0.0.1:8081 -CAfile ca.crt -issuer ca.crt -serial 1
Response verify OK
1: good
    This Update: Jan  6 13:33:59 2024 GMT

A revoked one:

# openssl ocsp -url http://127.0.0.1:8081 -CAfile ca.crt -issuer ca.crt -serial 2
Response verify OK
2: revoked
    This Update: Jan  6 13:34:54 2024 GMT
    Revocation Time: Jan 1 21:31:08 2024 GMT

And an unknown certificate

# openssl ocsp -url http://127.0.0.1:8081 -CAfile ca.crt -issuer ca.crt -serial 9999
Response verify OK
9999: unknown
    This Update: Jan  6 13:36:51 2024 GMT

Internal organisation

In this paragraph we would like to explain the organisation of the internal trust store. The certificates and revocation lists that exist are staged into system directories and deployed for usage by a tool called certctl.py on our end.

The source for certificates and revocation lists is collected in the following directories, either shipped with the base system and/or managed from Ixolate:

Path Topic
/usr/share/certs/trusted Default system certificates, shipped with the base system
/usr/local/share/certs Application specific certificates and revocation lists
/usr/share/certs/untrusted Certificates that are not to be trusted anymore

certctl.py collects all certificates from the set defined above and creates links to them in the target directories specified below.

Path Topic
/etc/ssl/certs Directory with links (and files) to certificates named by their hash. (for example ef954a4e.0 or ef954a4e.r0 for a CRL) Primary location for the base system.
/etc/ssl/untrusted Same as above, but untrusted (ignored)
/usr/local/openssl/certs Same as /etc/ssl/certs, default location for applications build from the “ports” tree
/usr/local/etc/ssl/cert.pem Combined bundle file for applications that require a single file.

Each target link (or file) contains a single certificate or revocation list, which OpenSSL can easily locate using the certificate subject.

Default settings for OpenSSL are saved into /usr/local/openssl/openssl.cnf (ports) and /etc/ssl/openssl.cnf (base), both are managed by Ixolate.

Usage examples

In Self-signed-chain you will find examples of how to setup certificate chains yourself.

Navigation

Type to search…

↑↓ navigate↵ selectEsc close