跳至內容

How we can connect Multiple devices with same certificate and same things with AWS MQTT

0

I have more than 10 ESP32 devices and I have no idea about how to connect Multiple device with same MQTT Certificate and need to use same things for multiple device.Please share any suggestion .Thanks

已提問 2 年前檢視次數 551 次
2 個答案
0

Hi. It's a best practice for every device to have a unique certificate: https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html

We recommend that each device or client be given a unique certificate to enable fine-grained client management actions, including certificate revocation.

AWS IoT offers several provisioning mechanisms that can help you provision unique certficiates: https://docs.aws.amazon.com/whitepapers/latest/device-manufacturing-provisioning/device-manufacturing-provisioning.html

need to use same things for multiple device

Why? Every device will need to connect using a unique MQTT client ID. If a second device connects with the same client ID as the first, the first device will be disconnected. Typically, the MQTT client ID will match the Thing name, as this helps in writing IoT policies that can scale using Thing policy variables: https://docs.aws.amazon.com/iot/latest/developerguide/thing-policy-variables.html

Do your devices have a unique ID, like a serial number, MAC address, or an MCU ID that your firmware can read? Client IDs and thing names are often automically formed at scale using this kind of information.

AWS
專家
已回答 2 年前
0

You are learning that your policies need to adapt to scale, ie. 1 device vs. 10 devices vs. 1000 devices, etc. If you want to experiment with policies, check out our hands-on AWS IoT lab https://mqttlab.iotsim.io/aws/

已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。