title | description | author | manager | ms.author | ms.date | ms.topic | ms.service | services | ms.custom | ||
---|---|---|---|---|---|---|---|---|---|---|---|
Create transparent gateway device - Azure IoT Edge | Microsoft Docs |
Use an Azure IoT Edge device as a transparent gateway that can process information from downstream devices |
kgremban |
philmea |
kgremban |
06/02/2020 |
conceptual |
iot-edge |
iot-edge |
|
This article provides detailed instructions for configuring an IoT Edge device to function as a transparent gateway for other devices to communicate with IoT Hub. This article uses the term IoT Edge gateway to refer to an IoT Edge device configured as a transparent gateway. For more information, see How an IoT Edge device can be used as a gateway.
Note
Currently:
- Edge-enabled devices can't connect to IoT Edge gateways.
- Downstream devices can't use file upload.
There are three general steps to set up a successful transparent gateway connection. This article covers the first step:
- Configure the gateway device as a server so that downstream devices can connect to it securely. Set up the gateway to receive messages from downstream devices and route them to the proper destination.
- Create a device identity for the downstream device so that it can authenticate with IoT Hub. Configure the downstream device to send messages through the gateway device. For more information, see Authenticate a downstream device to Azure IoT Hub.
- Connect the downstream device to the gateway device and start sending messages. For more information, see Connect a downstream device to an Azure IoT Edge gateway.
For a device to act as a gateway, it needs to securely connect to its downstream devices. Azure IoT Edge allows you to use a public key infrastructure (PKI) to set up secure connections between devices. In this case, we're allowing a downstream device to connect to an IoT Edge device acting as a transparent gateway. To maintain reasonable security, the downstream device should confirm the identity of the gateway device. This identity check prevents your devices from connecting to potentially malicious gateways.
A downstream device can be any application or platform that has an identity created with the Azure IoT Hub cloud service. These applications often use the Azure IoT device SDK. A downstream device could even be an application running on the IoT Edge gateway device itself. However, an IoT Edge device cannot be downstream of an IoT Edge gateway.
You can create any certificate infrastructure that enables the trust required for your device-gateway topology. In this article, we assume the same certificate setup that you would use to enable X.509 CA security in IoT Hub, which involves an X.509 CA certificate associated to a specific IoT hub (the IoT hub root CA), a series of certificates signed with this CA, and a CA for the IoT Edge device.
Note
The term root CA certificate used throughout these articles refers to the topmost authority public certificate of the PKI certificate chain, and not necessarily the certificate root of a syndicated certificate authority. In many cases, it is actually an intermediate CA public certificate.
The following steps walk you through the process of creating the certificates and installing them in the right places on the gateway. You can use any machine to generate the certificates, and then copy them over to your IoT Edge device.
A Linux or Windows device with IoT Edge installed.
All IoT Edge gateways need a device CA certificate installed on them. The IoT Edge security daemon uses the IoT Edge device CA certificate to sign a workload CA certificate, which in turn signs a server certificate for IoT Edge hub. The gateway presents its server certificate to the downstream device during the initiation of the connection. The downstream device checks to make sure that the server certificate is part of a certificate chain that rolls up to the root CA certificate. This process allows the downstream device to confirm that the gateway comes from a trusted source. For more information, see Understand how Azure IoT Edge uses certificates.
The root CA certificate and the device CA certificate (with its private key) need to be present on the IoT Edge gateway device and configured in the IoT Edge config.yaml file. Remember that in this case root CA certificate means the topmost certificate authority for this IoT Edge scenario. The gateway device CA certificate and the downstream device certificates need to roll up to the same root CA certificate.
Tip
The process of installing the root CA certificate and device CA certificate on an IoT Edge device is also explained in more detail in Manage certificates on an IoT Edge device.
Have the following files ready:
- Root CA certificate
- Device CA certificate
- Device CA private key
For production scenarios, you should generate these files with your own certificate authority. For development and test scenarios, you can use demo certificates.
-
If you're using demo certificates, use the following set of steps to create your files:
-
Create root CA certificate. At the end of these instructions, you'll have a root CA certificate file:
<path>/certs/azure-iot-test-only.root.ca.cert.pem
.
-
Create IoT Edge device CA certificate. At the end of these instructions, you'll have two files, a device CA certificate and its private key:
<path>/certs/iot-edge-device-<cert name>-full-chain.cert.pem
and<path>/private/iot-edge-device-<cert name>.key.pem
-
-
If you created these files on a different machine, copy them over to your IoT Edge device.
-
On your IoT Edge device, open the security daemon config file.
- Windows:
C:\ProgramData\iotedge\config.yaml
- Linux:
/etc/iotedge/config.yaml
- Windows:
-
Find the certificates section of the file and provide the file URIs to your three files as values for the following properties:
- device_ca_cert: device CA certificate
- device_ca_pk: device CA private key
- trusted_ca_certs: root CA certificate
-
Save and close the file.
-
Restart IoT Edge.
- Windows:
Restart-Service iotedge
- Linux:
sudo systemctl restart iotedge
- Windows:
When you first install IoT Edge on a device, only one system module starts automatically: the IoT Edge agent. Once you create the first deployment for a device, the second system module, the IoT Edge hub, is started as well.
The IoT Edge hub is responsible for receiving incoming messages from downstream devices and routing them to the next destination. If the edgeHub module isn't running on your device, create an initial deployment for your device. The deployment will look empty because you don't add any modules, but it will make sure that both system modules are running.
You can check which modules are running on a device by checking its device details in the Azure portal, viewing the device status in Visual Studio or Visual Studio Code, or by running the command iotedge list
on the device itself.
If the edgeAgent module is running without the edgeHub module, use the following steps:
-
In the Azure portal, navigate to your IoT hub.
-
Go to IoT Edge and select your IoT Edge device that you want to use as a gateway.
-
Select Set Modules.
-
Select Next: Routes.
-
On the Routes page, you should have a default route that sends all messages, whether from a module or from a downstream device, to IoT Hub. If not, add a new route with the following values then select Review + create:
- Name:
route
- Value:
FROM /messages/* INTO $upstream
- Name:
-
On the Review + create page, select Create.
Standard IoT Edge devices don't need any inbound connectivity to function, because all communication with IoT Hub is done through outbound connections. Gateway devices are different because they need to receive messages from their downstream devices. If a firewall is between the downstream devices and the gateway device, then communication needs to be possible through the firewall as well.
For a gateway scenario to work, at least one of the IoT Edge hub's supported protocols must be open for inbound traffic from downstream devices. The supported protocols are MQTT, AMQP, HTTPS, MQTT over WebSockets, and AMQP over WebSockets.
Port | Protocol |
---|---|
8883 | MQTT |
5671 | AMQP |
443 | HTTPS MQTT+WS AMQP+WS |
The IoT Edge runtime can route messages sent from downstream devices just like messages sent by modules. This feature allows you to perform analytics in a module running on the gateway before sending any data to the cloud.
Currently, the way that you route messages sent by downstream devices is by differentiating them from messages sent by modules. Messages sent by modules all contain a system property called connectionModuleId but messages sent by downstream devices do not. You can use the WHERE clause of the route to exclude any messages that contain that system property.
The below route is an example that would send messages from any downstream device to a module named ai_insights
, and then from ai_insights
to IoT Hub.
{
"routes":{
"sensorToAIInsightsInput1":"FROM /messages/* WHERE NOT IS_DEFINED($connectionModuleId) INTO BrokeredEndpoint(\"/modules/ai_insights/inputs/input1\")",
"AIInsightsToIoTHub":"FROM /messages/modules/ai_insights/outputs/output1 INTO $upstream"
}
}
For more information about message routing, see Deploy modules and establish routes.
Starting with the 1.0.4 release of the IoT Edge runtime, the gateway device and downstream devices connecting to it can be configured for extended offline operation.
With this capability, local modules or downstream devices can reauthenticate with the IoT Edge device as needed and communicate with each other using messages and methods even when disconnected from the IoT hub. For more information, see Understand extended offline capabilities for IoT Edge devices, modules, and child devices.
To enable extended offline capabilities, you establish a parent-child relationship between an IoT Edge gateway device and downstream devices that will connect to it. Those steps are explained in more detail in the next article of this series, Authenticate a downstream device to Azure IoT Hub.
Now that you have an IoT Edge device set up as a transparent gateway, you need to configure your downstream devices to trust the gateway and send messages to it. Continue on to Authenticate a downstream device to Azure IoT Hub for the next steps in setting up your transparent gateway scenario.