Hi Deepanraj,
I am sorry for my late response, please accept my apologies. We have some delays for all of this situation, the COVID novel.
I am facing some issues trying to open your sniffer log, I am seeing UDP packets, however, I will run by my side and provide a sniffer log.
In the meantime, could you please print the APS keys table?
PRIVATE void vPrintAPSTable(void)
{
uint8 i;
uint8 j;
ZPS_tsAplAib * psAplAib;
uint64 u64Addr;
psAplAib = ZPS_psAplAibGetAib();
for ( i = 0 ; i < (psAplAib->psAplDeviceKeyPairTable->u16SizeOfKeyDescriptorTable + 3) ; i++ )
{
u64Addr = ZPS_u64NwkNibGetMappedIeeeAddr(ZPS_pvAplZdoGetNwkHandle(), psAplAib->psAplDeviceKeyPairTable->psAplApsKeyDescriptorEntry[i].u16ExtAddrLkup);
DBG_vPrintf(TRUE, "%d MAC: 0x%x %x Key: ", i, (uint32)(u64Addr>>32), (uint32)(u64Addr&0xffffffff) );
for(j=0; j<16;j++)
{
DBG_vPrintf(TRUE, "%02x ", psAplAib->psAplDeviceKeyPairTable->psAplApsKeyDescriptorEntry[i].au8LinkKey[j]);
}
DBG_vPrintf(TRUE, "\r\n");
}
}
Please let me know your findings.
Regards,
Mario