Duplicate ClientId locating and removal

0

Hi All

IOT core is showing that i have a duplicate clientId and so disconnects form my device

the issue is i dont know how to locate the duplicate device
is there a way to find what the other device is ... as i only know one at this point and as the clinetid is the imei number of the modem... it cannot be changed

there are too many devices to delete and start again... so thats not an option

已提问 2 年前746 查看次数
2 回答
0

Hi. The Connect and Disconnect events in CloudWatch contain both the sourceIp detailing the IP address of the device and the principalId detailing the ID of the device certificate. Assuming you have a unique certificate for each Thing, you can use the two certificate IDs to find the Thing names. You can do that on the console or on the command line:

aws iot list-principal-things --principal arn:aws:iot:<region>:<accountID>:cert/<principalId>

You can use Logs Insights in CloudWatch to search for all Connect and Disconnect events using the particular <clientId>. You can use a filter statement like this:

filter clientId = '<clientId>' and (eventType = 'Connect' or eventType = 'Disconnect')
profile pictureAWS
专家
Greg_B
已回答 2 年前
  • You may also want to consider Thing policy variables to ensure that a device can only connect using a client ID that matches the Thing name.

0

To find dedicated disconnects caused by a duplicate clientId you can use the following filter in CloudWatch Insights:

filter disconnectReason = "DUPLICATE_CLIENTID"

KR,

Philipp

AWS
专家
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则