The Endpoint iot-fr-par.scw.cloud
may vary, you find your endpoint on the hub’s network page.
How to generate an error and receive an event
To demonstrate the use of hub Events, the following tutorial allows you to generate an error, and shows you how to receive this error.
For more information about hub Events, you can check out the IoT Hub Events documentation.
Before you start
To complete the actions presented below, you must have:
- A Scaleway account logged into the console
- Owner status or IAM permissions allowing you to perform actions in the intended Organization
- Created an IoT Hub
- Installed
mosquitto
on your local computer
-
Click IoT Hub in the Managed Services section of the side menu. The list of your IoT Hubs displays.
-
Click the name of the IoT Hub you want to configure. The hub’s overview page displays.
-
Click Devices to display the device configuration.
-
Click Add devices in the devices tab. The Create a device wizard displays.
-
Enter a name for the device (
logger
) and allow insecure connections. -
Click Add device to hub. The device’s details displays. Take a note of the device ID:
-
Open a terminal window on your local computer and subscribe to the
$SCW/events/error/#
topic to receive the hub event:mosquitto_sub -h iot.fr-par.scw.cloud -p 1883 -i <logger-device-id> -t '$SCW/events/error/#'NoteThe command above contains the following elements:
-h
: The endpoint or host of your IoT Hub. You require it to communicate with your hub.-i
: The device ID of your device. You can retrieve it from the Devices section of your hub.-t
: The thread to send your message to.-m
: The message containing the information you want to transmit.
-
Create a second secured device, named secured device and denying insecure connections.
NoteThis will be used to generate an mTLS error by using a device configured to
Deny Insecure
connections, and trying to connect with it. -
Open a second terminal on your computer and connect the secured device to your hub, but without using any security:
mosquitto_pub -h iot.fr-par.scw.cloud -i secured-device-id -t foo/bar -m 'This wont work' -
Go back to the first terminal. The
logger
device will then receive a message having a topic that looks like$SCW/events/error/device/<secured-device-id>
, and following payload:{"time":"2020-01-17T15:01:29Z","severity": "error","object-type": "device","object-id": "secured-device-id","msg": "mutual TLS authentication is required","packet":"CONNECT: dup: false qos: 0 retain: false rLength: 12"}