Mutual TLS authentication is only available in the Mender Enterprise plan. To gain access to the mtls proxy container before you are an Enterprise customer please contact us. In the message please mention the 'Evaluation of the mtls proxy'.
Mender supports setting up a reverse proxy at the edge of the network, which can authenticate devices using TLS client certificates. Each client presents a certificate signed by a CA certificate (Certificate Authority), and the edge proxy authenticates devices by verifying this signature. Authenticated devices are automatically authorized in the Mender backend, and do not need manual approval.
This is in particular useful in a mass production setting because you can sign client certificates during the manufacturing process, so they automatically get accepted into the Mender Server when your customer turns them on (which might happen several months after manufacturing).
See Device authentication for a general overview of how device authentication works in Mender.
If you are using hosted Mender, you can host the mTLS ambassador in your infrastructure and point it to the upstream server https://hosted.mender.io
.
In case you need assistance or use a hosted mTLS ambassador, contact us describing your use case.
Hosted Mender is available in multiple regions to connect to. Make sure you select your desired one before proceeding.
You need a physical board that has already been integrated with Mender. For example, you may use one of the reference boards BeagleBone Black, Raspberry Pi 3 or Raspberry Pi 4.
If you have not yet prepared a device visit one of the following:
Follow the steps in set up shell variables for cURL to set up some shell variables in the terminal you will be using.
Download the mender-artifact
tool from the Downloads section.
The following sections guide you to generate and sign certificates for the server and the devices.
This document aims to provide you the basics to evaluate the mTLS authentication in Mender, and you should not consider it as a basis for production-grade PKI (Public-Key infrastructure) infrastructure. If you need to create a production-grade PKI, please start reading the OpenSSL PKI tutorial.
First generate a master certificate to sign each client certificate. Start by generating a private key::
openssl ecparam -genkey -name P-256 -noout -out ca-private.key
You can switch the "P-256" with a different curve if necessary.
Next, create a configuration file which contains information about the Certificate Authority. Execute the following command to create the file:
cat > ca-cert.conf <<EOF
[req]
distinguished_name = req_distinguished_name
prompt = no
[req_distinguished_name]
commonName=My CA
organizationName=My Organization
organizationalUnitName=My Unit
emailAddress=myusername@example.com
countryName=NO
localityName=Oslo
stateOrProvinceName=Oslo
EOF
Fill the fields with information about your organization, locality and contact information.
Then generate a certificate from the newly generated private key:
openssl req -new -x509 -key ca-private.key -out ca-cert.pem -config ca-cert.conf -days $((365*10))
The -days
argument specifies how long the certificate is valid, and you can adjust it as needed. The example expression gives a certificate which is valid for approximately 10 years. Since the CA certificate will only be used on the Mender Server, it is usually not important that it expires, and it's better to have a long expiry time to avoid having to rotate certificates on the devices.
Make sure the system you generate keys on is adequately secured, as it will also generate the server private key.
Use OpenSSL to generate a private key using Elliptic Curve cryptography:
openssl ecparam -genkey -name P-256 -noout -out server-private.key
You can switch the "P-256" curve with a different curve if necessary.
Next, we create a configuration file which contains information about the server certificate. Execute the following command to create the file:
cat > server-cert.conf <<EOF
[req]
distinguished_name = req_distinguished_name
prompt = no
[req_distinguished_name]
commonName=my-server.com
organizationName=My Organization
organizationalUnitName=My Unit
emailAddress=myusername@example.com
countryName=NO
localityName=Oslo
stateOrProvinceName=Oslo
EOF
Fill the fields with information about your organization, locality and contact information. In particular, make sure commonName
matches the edge proxy's domain name, which will serve as the mTLS ambassador.
Then generate a certificate request from the newly generated private key:
openssl req -new -key server-private.key -out server-cert.req -config server-cert.conf
Now that we have both a CA certificate, and a certificate request for the server, we need to sign the latter with the former. This produces a signed certificate the edge proxy will use to terminate the TLS traffic.
openssl x509 -req -CA ca-cert.pem -CAkey ca-private.key -CAcreateserial -in server-cert.req -out server-cert.pem -days $((365*2))
The -days
argument specifies how long the certificate is valid, and you can adjust it as needed. The example expression gives a certificate which is valid for approximately 2 years.
When preparing a client certificate for a device, you generate the certificate key on a separate system (not on the device), and then provision it into the device storage. This way you can keep records of the public key of the device and ensure sufficient entropy during key generation, so the resulting keys are securely random.
Make sure the system you generate keys on is adequately secured, as it will also generate the device private keys. You should consider securely deleting (e.g. shred
) the private keys after provisioning the device if you do not truly need a record of them (you can keep the public keys).
Once again, use OpenSSL to generate a private key using Elliptic Curve cryptography:
openssl ecparam -genkey -name P-256 -noout -out device-private.key
You can switch the "P-256" curve with a different curve if necessary.
Next, we create a configuration file which contains information about the device certificate. Execute the following command to create the file:
cat > device-cert.conf <<EOF
[req]
distinguished_name = req_distinguished_name
prompt = no
[req_distinguished_name]
commonName=my-device-hostname.com
organizationName=My Organization
organizationalUnitName=My Unit
emailAddress=myusername@example.com
countryName=NO
localityName=Oslo
stateOrProvinceName=Oslo
EOF
The field commonName
is device specific, and needs to be changed for every device. Fill the rest of the fields with information about your organization, locality and contact information.
Then generate a certificate request from the newly generated private key:
openssl req -new -key device-private.key -out device-cert.req -config device-cert.conf
Now that we have both a CA certificate, and a certificate request for the device, we need to sign the latter with the former. This produces a signed certificate which the server will recognize when the client connects.
openssl x509 -req -CA ca-cert.pem -CAkey ca-private.key -CAcreateserial -in device-cert.req -out device-cert.pem -days $((365*10))
The -days
argument specifies how long the certificate is valid, and you can adjust it as needed. The example expression gives a certificate which is valid for approximately 10 years. Since the certificate will only be used by the server to authenticate devices, it is usually not desirable that it expires after a short time, since this requires certificate rotation on the devices. To manage compromised devices, it is often better to maintain a certificate blacklist on the server.
You need to repeat the generation and signing of the client certificate for each device, so these are natural steps to automate in your device provisioning workflow.
The mTLS ambassador acts as an edge proxy running in front of your Mender Server. The Mender client running on the devices connects to it, providing its client TLS certificate and establishing a mutual TLS authentication. If the client certificate's signature matches the certification authority recognized by the mTLS ambassador, the Mender Server will automatically accept the device. The edge proxy transparently forwards all the requests from the Mender client to the Mender Server. From the client's perspective, it provides the same API end-points as the upstream Mender Server.
The mTLS ambassador is distributed as a Docker image and can be run on a Docker host, using docker-compose or on Kubernetes.
You need the following certificates to start the service:
server.crt
, a regular HTTPS server certificate the ambassador can use to terminate the TLS connectionsserver.key
, the corresponding private key for the certificate aboveca.crt
, the Certification Authority's certificate used to sign the server and client certificates.You also need to specify a username and password pair. The ambassador will use it to connect to the Mender Server to authorize clients who connect using a valid certificate signed by the known CA.
MTLS_MENDER_USER=mtls@mender.io /
MTLS_MENDER_PASS=password /
MTLS_MENDER_BACKEND=https://hosted.mender.io
As the mtls-ambassador container runs as user nobody
, with UID 65534, we change the owner of the files we'll volume mount:
chown 65534 $(pwd)/server-cert.pem $(pwd)/server-private.key $(pwd)/ca-cert.pem
chmod 0600 $(pwd)/server-private.key
To start the edge proxy, run the following command:
docker run \
-p 443:8080 \
-e MTLS_MENDER_USER="$MTLS_MENDER_USER" \
-e MTLS_MENDER_PASS="$MTLS_MENDER_PASS" \
-e MTLS_MENDER_BACKEND=$MTLS_MENDER_BACKEND \
-e MTLS_DEBUG_LOG=true \
-v $(pwd)/server-cert.pem:/etc/mtls/certs/server/server.crt \
-v $(pwd)/server-private.key:/etc/mtls/certs/server/server.key \
-v $(pwd)/ca-cert.pem:/etc/mtls/certs/tenant-ca/tenant.ca.pem \
registry.mender.io/mendersoftware/mtls-ambassador:mender-3.6.5
Replace the following values with the ones that match your configuration:
You can now publish the HTTPS port of the host to the Internet to let the clients connect to it.
Now that we have generated a key and certificate for the device and signed the certificate, we need to copy them to our working disk image (it typically has the .sdimg
suffix), and enable them in the Mender configuration.
Find the location of the key and certificate we generated and copy it into place on the data partition by running the following commands:
mender-artifact install -m 600 device-private.key mender-disk-image.sdimg:/data/mender/mender-cert-private.pem
mender-artifact install -m 644 device-cert.pem mender-disk-image.sdimg:/data/mender/mender-cert.pem
The files we just added are per device, and therefore it is natural to automate this step in your device provisioning workflow.
First, copy the existing mender.conf
out of the disk image, so that we can edit it.
mender-artifact cp mender-disk-image.sdimg:/etc/mender/mender.conf mender.conf
Next, open mender.conf
in a text editor, and add the following content:
"HttpsClient": {
"Certificate": "/data/mender/mender-cert.pem",
"Key": "/data/mender/mender-cert-private.pem"
}
Make sure that the result is valid JSON, in particular that commas appear on every line except the last in a block. Add the snippet inside the first set of curly braces in the file. For example, it might look like this in a typical mender.conf
file:
{
"ServerURL": "https://hosted.mender.io/",
"TenantToken": "TENANT_TOKEN",
"HttpsClient": {
"Certificate": "/data/mender/mender-cert.pem",
"Key": "/data/mender/mender-cert-private.pem"
}
}
Then copy the modified file back into the disk image:
mender-artifact cp mender.conf mender-disk-image.sdimg:/etc/mender/mender.conf
Since this change is the same on every device, it is natural to automate this as part of the build process for the disk image. See file installation instructions for the Debian family or the Yocto Project for more information.
Now provision the storage with this new disk image, just like you have done in the past. If you are using a SD card, insert it into your workstation and use a command similar to the following:
sudo dd if=<PATH-TO-IMAGE>.sdimg of=<DEVICE> bs=1M && sudo sync
Then insert the SD card back into your device and boot it.
If everything went as intended, your device shows up as accepted
status in the Mender Server. You can log in to the Mender UI to ensure your device appears on the device list and reports inventory.
If your device is not showing up, make sure you installed the certificates correctly - both on the server and on the device. Check client logs and/or server logs for error messages that can identify what is wrong. See the troubleshooting section on connecting devices in this case.
© 2024 Northern.tech AS