-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Group Communication - Unable to verify if the multicast command is working correctly #19801
Comments
This is trying to write the attribute on group 0x0001. Earlier that group was set up as:
so group 0x0001 contains endpoint 0. The node-label read is also being done on endpoint 0. But the ACLs set up here:
grant access to endpoint 0 for unicast actions from node id 112233 and access to endpoint 1 for groupcast actions from any group. So the ACLs don't allow changing the node-label on endpoint 0. |
Duplicate of #19608 |
The correct ACL command to allow a groud write attribute command is :
Also, you do not need to send a second acl write before actually sending the group command. |
Problem - We are sending the multicast command to DUT for writing the node-label attribute value to "newnode" in Basic Information Cluster. We are trying to read the same attribute value in unicast mode to check if the multicast command actually worked but we are not able to see the value changed in the attribute.
Before sending the multicast command we are setting the appropriate ACL entry and Group settings command to initialize the test condition.
Sequence of the Commands sent:
1.Initial Commands
2.Sending Multicast commands
3.Reading on-off attribute
./chip-tool accesscontrol write acl '[{"fabricIndex": 1, "privilege": 5, "authMode": 2, "subjects": [112233], "targets": [{"cluster": null, "endpoint": 0, "deviceType": null}]}, {"fabricIndex": 1, "privilege": 3, "authMode": 2, "subjects": null, "targets": [{"cluster": null, "endpoint": 0, "deviceType": null}]}]' 1 0
./chip-tool basic read node-label 1 0
4. Test Environment
App used - allclusters app
Platform - Chip-tool - RPI-4, 8GB RAM
DUT - RPI-4, 8GB RAM
Network - Ble-wifi
Commit - 2ac3ee7
5. Logs
DUT_Logs_21.06.2022.txt
TH_Logs_21.06.2022.txt
The text was updated successfully, but these errors were encountered: