Matter Commissioning Failure with Custom PAA/PAI/DAC Certificates

Hello, Nordic Team,
I am writing to request assistance with a Mater commissioning issue we are facing.

We are in the process of preparing out product for Matter certification and are currently testing the commissioning process using our own custom-generated PAA, PAI, and DAC certificates. However, the commissioning process is failing.
I suspect the issue might be related to the certificate chain validation. even though my local validation steps seem to pass. Could you please review my procedure to see if there are any protential errors?
0143.chip-error.txt
I noticed that failed with:
[1755248211.804] [22:24] [DMG] 
[1755248211.804] [22:24] [DMG]  InteractionModelRevision = 12
[1755248211.804] [22:24] [DMG] },
[1755248211.804] [22:24] [DMG] Received Command Response Data, Endpoint=0 Cluster=0x0000_003E Command=0x0000_0001
[1755248211.804] [22:24] [CTL] Received Attestation Information from the device
[1755248211.804] [22:24] [CTL] Successfully finished commissioning step 'SendAttestationRequest'
[1755248211.804] [22:24] [CTL] AutoCommissioner setting attestationElements buffer size 585/585
[1755248211.804] [22:24] [CTL] Commissioning stage next step: 'SendAttestationRequest' -> 'AttestationVerification'
[1755248211.804] [22:24] [CTL] Performing next commissioning step 'AttestationVerification'
[1755248211.804] [22:24] [CTL] Verifying attestation
[1755248211.817] [22:24] [CTL] Error on commissioning step 'AttestationVerification': 'src/controller/CHIPDeviceController.cpp:1283: CHIP Error 0x000000AC: Internal error'
[1755248211.817] [22:24] [CTL] Failed verifying attestation information. Now checking DAC chain revoked status.
[1755248211.817] [22:24] [CTL] Commissioning stage next step: 'AttestationVerification' -> 'AttestationRevocationCheck'
[1755248211.817] [22:24] [CTL] Performing next commissioning step 'AttestationRevocationCheck' with completion status = 'src/controller/CHIPDeviceController.cpp:1283: CHIP Error 0x000000AC: Internal error'
[1755248211.817] [22:24] [CTL] Verifying device's DAC chain revocation status
[1755248211.817] [22:24] [CTL] Failed in verifying 'Attestation Information' command received from the device: err 500. Look at AttestationVerificationResult enum to understand the errors
[1755248211.817] [22:24] [CTL] Error on commissioning step 'AttestationRevocationCheck': 'src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error'
[1755248211.817] [22:24] [CTL] Going from commissioning step 'AttestationRevocationCheck' with lastErr = 'src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error' -> 'Cleanup'
[1755248211.818] [22:24] [CTL] Performing next commissioning step 'Cleanup' with completion status = 'src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error'
[1755248211.818] [22:24] [CTL] Disarming failsafe on device 0xffff9c00b7d0
[1755248211.818] [22:24] [DMG] ICR moving to [AddingComm]
[1755248211.818] [22:24] [DMG] ICR moving to [AddedComma]
I generated the PAA, PAI, and DAC certificates using the following chip-cert commands:

champon@NC:~/ncs/v3.0.2/modules/lib/matter/out/host$ ./chip-cert gen-att-cert --type a --subject-cn "ChampOn PAA CN" --subject-vid 0x143D \
                         --valid-from "2021-06-28 14:23:43" --lifetime 4294967295 \
                         --out-key ~/MatterTH/paa/ChampOn-Chip-PAA-Key.pem \
                         --out ~/MatterTH/paa/ChampOn-Chip-PAA-Cert.pem
champon@NC:~/ncs/v3.0.2/modules/lib/matter/out/host$ ./chip-cert gen-att-cert --type i --subject-cn "ChampOn PAI CN" --subject-vid 0x143D --valid-from "2021-06-28 14:23:43" --lifetime 4294967295 --ca-key ~/MatterTH/paa/ChampOn-Chip-PAA-Key.pem --ca-cert ~/MatterTH/paa/ChampOn-Chip-PAA-Cert.pem --out-key ~/MatterTH/paa/ChampOn-Chip-PAI-Key.pem --out ~/MatterTH/paa/ChampOn-Chip-PAI-Cert.pem
champon@NC:~/ncs/v3.0.2/modules/lib/matter/out/host$ ./chip-cert gen-att-cert --type d --subject-cn "ChampOn DAC 01" --subject-vid 0x143D --subject-pid 0x3001 --valid-from "2021-06-28 14:23:43" --lifetime 7305 --ca-key ~/MatterTH/paa/ChampOn-Chip-PAI-Key.pem --ca-cert ~/MatterTH/paa/ChampOn-Chip-PAI-Cert.pem --out-key ~/MatterTH/paa/ChampOn-Chip-DAC-Key.pem --out ~/MatterTH/paa/ChampOn-Chip-DAC-Cert.pem
I also convert the file format from pem to der use the following commands:

champon@NC:~/MatterTH/paa$ openssl x509 -in ~/MatterTH/paa/ChampOn-Chip-PAA-Cert.pem -outform DER -out ~/MatterTH/paa/ChampOn-Chip-PAA-Cert.der
champon@NC:~/MatterTH/paa$ openssl x509 -in ~/MatterTH/paa/ChampOn-Chip-PAI-Cert.pem -outform DER -out ~/MatterTH/paa/ChampOn-Chip-PAI-Cert.der
champon@NC:~/MatterTH/paa$ openssl x509 -in ~/MatterTH/paa/ChampOn-Chip-DAC-Cert.pem -outform DER -out ~/MatterTH/paa/ChampOn-Chip-DAC-Cert.der
champon@NC:~/MatterTH/paa$ openssl ec -in ~/MatterTH/paa/ChampOn-Chip-DAC-Key.pem -outform DER -out ~/MatterTH/paa/ChampOn-Chip-DAC-Key.der
read EC key
writing EC key
champon@NC:~/MatterTH/paa$ ls
ChampOn-Chip-DAC-Cert.der  ChampOn-Chip-DAC-Key.der  ChampOn-Chip-PAA-Cert.der  ChampOn-Chip-PAA-Key.der  ChampOn-Chip-PAI-Cert.der  ChampOn-Chip-PAI-Key.pem
ChampOn-Chip-DAC-Cert.pem  ChampOn-Chip-DAC-Key.pem  ChampOn-Chip-PAA-Cert.pem  ChampOn-Chip-PAA-Key.pem  ChampOn-Chip-PAI-Cert.pem
I validated the generated certificate chain, and the command completed successfully without errors:

champon@NC:~/ncs/v3.0.2/modules/lib/matter/out/host$ ./chip-cert validate-att-cert --dac ~/MatterTH/paa/ChampOn-Chip-DAC-Cert.pem --pai ~/MatterTH/paa/ChampOn-Chip-PAI-Cert.pem --paa ~/MatterTH/paa/ChampOn-Chip-PAA-Cert.pem
champon@NC:~/ncs/v3.0.2/modules/lib/matter/out/host$ openssl verify -CAfile ~/MatterTH/paa/ChampOn-Chip-PAA-Cert.pem -untrusted ~/MatterTH/paa/ChampOn-Chip-PAI-Cert.pem ~/MatterTH/paa/ChampOn-Chip-DAC-Cert.pem
/home/champon/MatterTH/paa/ChampOn-Chip-DAC-Cert.pem: OK
 
Next, I generated the factory data and programmed it to our nRF54L15-based device. I monitored the UART output during startup and saw no apparent errors.

champon@NC:~/ncs/v3.0.2/modules/lib/matter$ python scripts/tools/nrfconnect/generate_nrfconnect_chip_factory_data.py   --sn 1145141919812   --vendor_id 0x143d   --product_id 0x3001   --vendor_name "Onvis"   --product_name "HS3"   --date 2025-08-01   --hw_ver 1   --hw_ver_str prerelease   --spake2_it 1000   --spake2_salt U1BBS0UyUCBLZXkgU2FsdA==   --discriminator 1730   --passcode 88581739   --include_passcode   --overwrite   --dac_cert ~/MatterTH/paa/ChampOn-Chip-DAC-Cert.der   --dac_key ~/MatterTH/paa/ChampOn-Chip-DAC-Key.der   --pai_cert ~/MatterTH/paa/ChampOn-Chip-PAI-Cert.der  --cd_type 1   --enable_key 00112233445566778899AABBCCDDEEFF   --offset 0x172000   --size 0x1000   -o ~/MatterTH/FactoryData/1730_88581739   --generate_onboarding   --schema "scripts/tools/nrfconnect/nrfconnect_factory_data.schema"
[INFO] Generating SPAKE2+ Verifier...
[WARNING] KEY password has not been provided. It means that DAC key is not encrypted.
[INFO] Validating JSON with schema...
[INFO] Validate OK

 
Using the python script to generate the factory data
champon@NC:~/ncs/v3.0.2/modules/lib/matter$ python scripts/tools/nrfconnect/generate_nrfconnect_chip_factory_data.py \
  --sn 1145141919813 \
  --vendor_id 0x143d \
  --product_id 0x3001 \
  --vendor_name "Onvis" \
  --product_name "HS3" \
  --date 2025-08-01 \
  --hw_ver 1 \
  --hw_ver_str prerelease \
  --spake2_it 1000 \
  --spake2_salt U1BBS0UyUCBLZXkgU2FsdA== \
  --discriminator 1731 \
  --passcode 17318858 \
  --include_passcode \
  --overwrite \
  --dac_cert ~/MatterTH/paa/ChampOn-Chip-DAC-Cert.der \
  --dac_key ~/MatterTH/paa/ChampOn-Chip-DAC-Key.der \
  --pai_cert ~/MatterTH/paa/ChampOn-Chip-PAI-Cert.der \
  --cd_type 1 \
  --offset 0x172000 \
  --size 0x1000 \
  -o ~/MatterTH/FactoryData/1731_17318858/1731_17318858 \
  --generate_onboarding \
  --schema "scripts/tools/nrfconnect/nrfconnect_factory_data.schema" \
  --enable_key 00112233445566778899AABBCCDDEEFF
Then, I download the factory data to the NRF54L15 by the following command:
champon@NC:~/MatterTH/FactoryData/1730_88581739$ nrfutil device program --firmware 1730_88581739.hex --options chip_erase_mode=ERASE_NONE
[00:00:00] ###### 100% [1/1 69403378] Programmed


Before using the chip-tool to pairing the device, I transfer the PAA file to the raspberrpi

champon@NC:~/ncs/v3.0.2/modules/lib/matter$ scp ~/MatterTH/paa/ChampOn-Chip-PAA-Cert.* [email protected]:/tmp/
[email protected]'s password: 
ChampOn-Chip-PAA-Cert.der                                                                                                                  100%  448    91.1KB/s   00:00    
ChampOn-Chip-PAA-Cert.pem                                                                                                                  100%  664   108.6KB/s   00:00    
champon@NC:~/ncs/v3.0.2/modules/lib/matter$ ssh [email protected] "sudo cp /tmp/ChampOn-Chip-PAA-Cert.* /var/paa-root-certs/"
[email protected]'s password: 
sudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper
sudo: a password is required


And I move the PAA file to the /var/paa-root-certs

ubuntu@ubuntu:~$ ls /var/paa-root-certs/ | grep "ChampOn"
ChampOn-Chip-PAA-Cert.der
ChampOn-Chip-PAA-Cert.pem
ChampOn-Chip-PAA-Key.der
ChampOn-Chip-PAA-Key.pem


According to the TH test document and other artical, I map the path to docker, and using chip-tool in the docker to pairing the device.
ubuntu@ubuntu:~/certification-tool$ ./backend/test_collections/matter/scripts/OTBR/otbr_start.sh 


################################################################################
otbr_start.sh: Starting...
################################################################################


********************************************************************************
otbr_start.sh: Removing 'otbr-chip' container
********************************************************************************
nrfconnect/otbr                                        9185bda                                    083c8472bc52   2 years ago    1.21GB
otbr image nrfconnect/otbr:9185bda already installed


********************************************************************************
otbr_start.sh: Starting 'otbr-chip' container
********************************************************************************
[sudo] password for ubuntu: 
071bc1cde4ed8bb2321e630d9f7f8eda2ff881240608d5529e5a01c9f603337c


********************************************************************************
otbr_start.sh: Waiting 10 seconds to give the the docker container enough time to start up...
********************************************************************************


********************************************************************************
otbr_start.sh: Setting up Thread Network
********************************************************************************
Param: 'dataset init new'Done
Param: 'dataset channel 25'Done
Param: 'dataset panid 0x5b35'Done
Param: 'dataset extpanid 5b35dead5b35beef'Done
Param: 'dataset networkname 5b35'Done
Param: 'dataset networkkey 00112233445566778899aabbccddeeff'Done
Param: 'dataset commit active'Done
Param: 'prefix add fd11:35::/64 pasor'Done
Param: 'ifconfig up'Done
Param: 'thread start'Done
Param: 'netdata register'Done
Param: 'dataset active -x'0e08000000000001000035060004001fffe00708fd73e2cb9793c0920410f20cc5c53745d578603d629135681d6d0c0402a0f7f8000300001901025b3502085b35dead5b35beef030435623335051000112233445566778899aabbccddeeff
Done
Simple Dataset: 000300001902085b35dead5b35beef051000112233445566778899aabbccddeeff01025b35

********************************************************************************
otbr_start.sh: Restarting the Raspi avahi to have it in a clean state
********************************************************************************


################################################################################
otbr_start.sh: Finishing...
################################################################################

ubuntu@ubuntu:~/certification-tool$ docker run -v /var/paa-root-certs:/paa_roots -v /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket -v /home/ubuntu/certification-tool/backend/test_collections/matter/sdk_tests/sdk_checkout/python_testing:/root/python_testing -v $(pwd):/launch_dir --privileged --network host -it connectedhomeip/chip-cert-bins:0c90d7299f7ab70b325e8a7febd0f210ae629ce4
Despite these steps, the pairing process fails. Could you please let me know if you see any issues with my approach or if there's anything I might have misunderstood?
Thank you for your time and support.

We are using the NCS3.0.2 and NRF54L15 custom board.

Thanks!

Xiongwei.Wang
  • Hello,

    To me it looks like you've followed the guides properly, with one difference in that you've placed the certificates to /var/paa-root-certs on the RPi. This shouldn't be an issue if you also adjust the upcoming chip-tool command that you use, i.e where you specify  /paa_roots/ as the path to the certificates.

    Could you verify if you give the correct path to --paa-trust-store-path since the log does not completely correspond with where you've placed the certificates?

    Kind regards,
    Andreas

  • Hi AHaug,

    ubuntu@ubuntu:~$ ls /var/paa-root-certs/ | grep  ChampOn
    ChampOn-Chip-PAA-Cert.der
    ChampOn-Chip-PAA-Cert.pem
    ubuntu@ubuntu:~$ fish
    Welcome to fish, the friendly interactive shell
    Type help for instructions on how to use fish
    ubuntu@ubuntu ~> sudo chip-tool pairing ble-thread 0x11820 hex:0e08000000000001000035060004001fffe00708fd583913eac813490410a9f333e7e2b8af3f4dab38d30350c01c0c0402a0f7f8000300001901025b3502085b35dead5b35beef030435623335051000112233445566778899aabbccddeeff 17318858 1731 --paa-trust-store-path /var/paa-root-certs/
    [sudo] password for ubuntu: 
    [1755592965.361] [16192:16192] [DL] ChipLinuxStorage::Init: Using KVS config file: /root/snap/chip-tool/common/chip_tool_kvs
    [1755592965.363] [16192:16192] [DL] ChipLinuxStorage::Init: Attempt to re-initialize with KVS config file: /tmp/chip_kvs, IGNORING.
    [1755592965.369] [16192:16192] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_factory.ini
    [1755592965.369] [16192:16192] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_config.ini
    [1755592965.369] [16192:16192] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_counters.ini
    [1755592965.377] [16192:16192] [DL] Wrote settings to /tmp/chip_counters.ini
    [1755592965.377] [16192:16192] [DL] NVS set: chip-counters/reboot-count = 2 (0x2)
    [1755592965.379] [16192:16192] [DL] Got Ethernet interface: br-b5265faf06c2
    [1755592965.380] [16192:16192] [DL] Found the primary Ethernet interface:br-b5265faf06c2
    [1755592965.381] [16192:16192] [DL] Got WiFi interface: wlan0
    [1755592965.384] [16192:16192] [DL] Found the primary WiFi interface:wlan0
    [1755592965.384] [16192:16192] [PAF] WiFiPAF: WiFiPAFLayer::Init()
    [1755592965.384] [16192:16192] [IN] UDP::Init bind&listen port=0
    [1755592965.384] [16192:16192] [IN] UDP::Init bound to port=58856
    [1755592965.384] [16192:16192] [IN] UDP::Init bind&listen port=0
    [1755592965.384] [16192:16192] [IN] UDP::Init bound to port=54543
    [1755592965.384] [16192:16192] [IN] BLEBase::Init - setting/overriding transport
    [1755592965.384] [16192:16192] [IN] WiFiPAFBase::Init - setting/overriding transport
    [1755592965.384] [16192:16192] [IN] TransportMgr initialized
    [1755592965.384] [16192:16192] [FP] Initializing FabricTable from persistent storage
    [1755592965.385] [16192:16192] [TS] Last Known Good Time: 2023-10-14T01:16:48
    [1755592965.387] [16192:16192] [FP] Fabric index 0x1 was retrieved from storage. Compressed FabricId 0xB3DAE46C9A64DBAF, FabricId 0x0000000000000001, NodeId 0x000000000001B669, VendorId 0xFFF1
    [1755592965.389] [16192:16192] [DMG] Ember attribute persistence requires setting up
    [1755592965.389] [16192:16192] [ZCL] Using ZAP configuration...
    [1755592965.419] [16192:16192] [CTL] System State Initialized...
    [1755592965.419] [16192:16192] [TOO] No PAAs found in path: /var/paa-root-certs/
    [1755592965.419] [16192:16192] [TOO] Please specify a valid path containing trusted PAA certificates using the argument [--paa-trust-store-path paa/file/path] or environment variable [CHIPTOOL_PAA_TRUST_STORE_PATH=paa/file/path]
    [1755592965.419] [16192:16192] [TOO] Run command failure: ../examples/chip-tool/commands/common/CHIPCommand.cpp:87: CHIP Error 0x0000002F: Invalid argument
    [1755592965.444] [16192:16192] [SPT] HeapObjectPool: 1 allocated
    [1755592965.444] [16192:16192] [SPT] VerifyOrDie failure at src/lib/support/Pool.h:405: Allocated() == 0
    fish: Job 1, 'sudo chip-tool pairing ble-thre…' terminated by signal SIGABRT (Abort)
    ubuntu@ubuntu ~ [SIGABRT]> exit
    ubuntu@ubuntu:~$ sudo chip-tool pairing ble-thread 0x11820 hex:0e08000000000001000035060004001fffe00708fd583913eac813490410a9f333e7e2b8af3f4dab38d30350c01c0c0402a0f7f8000300001901025b3502085b35dead5b35beef030435623335051000112233445566778899aabbccddeeff 17318858 1731 --paa-trust-store-path /var/paa-root-certs/
    [1755593182.133] [16250:16250] [DL] ChipLinuxStorage::Init: Using KVS config file: /root/snap/chip-tool/common/chip_tool_kvs
    [1755593182.134] [16250:16250] [DL] ChipLinuxStorage::Init: Attempt to re-initialize with KVS config file: /tmp/chip_kvs, IGNORING.
    [1755593182.140] [16250:16250] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_factory.ini
    [1755593182.140] [16250:16250] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_config.ini
    [1755593182.140] [16250:16250] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_counters.ini
    [1755593182.148] [16250:16250] [DL] Wrote settings to /tmp/chip_counters.ini
    [1755593182.148] [16250:16250] [DL] NVS set: chip-counters/reboot-count = 3 (0x3)
    [1755593182.150] [16250:16250] [DL] Got Ethernet interface: br-b5265faf06c2
    [1755593182.151] [16250:16250] [DL] Found the primary Ethernet interface:br-b5265faf06c2
    [1755593182.151] [16250:16250] [DL] Got WiFi interface: wlan0
    [1755593182.154] [16250:16250] [DL] Found the primary WiFi interface:wlan0
    [1755593182.154] [16250:16250] [PAF] WiFiPAF: WiFiPAFLayer::Init()
    [1755593182.155] [16250:16250] [IN] UDP::Init bind&listen port=0
    [1755593182.155] [16250:16250] [IN] UDP::Init bound to port=44046
    [1755593182.155] [16250:16250] [IN] UDP::Init bind&listen port=0
    [1755593182.155] [16250:16250] [IN] UDP::Init bound to port=40904
    [1755593182.155] [16250:16250] [IN] BLEBase::Init - setting/overriding transport
    [1755593182.155] [16250:16250] [IN] WiFiPAFBase::Init - setting/overriding transport
    [1755593182.155] [16250:16250] [IN] TransportMgr initialized
    [1755593182.155] [16250:16250] [FP] Initializing FabricTable from persistent storage
    [1755593182.155] [16250:16250] [TS] Last Known Good Time: 2023-10-14T01:16:48
    [1755593182.157] [16250:16250] [FP] Fabric index 0x1 was retrieved from storage. Compressed FabricId 0xB3DAE46C9A64DBAF, FabricId 0x0000000000000001, NodeId 0x000000000001B669, VendorId 0xFFF1
    [1755593182.160] [16250:16250] [DMG] Ember attribute persistence requires setting up
    [1755593182.160] [16250:16250] [ZCL] Using ZAP configuration...
    [1755593182.195] [16250:16250] [CTL] System State Initialized...
    [1755593182.195] [16250:16250] [TOO] No PAAs found in path: /var/paa-root-certs/
    [1755593182.195] [16250:16250] [TOO] Please specify a valid path containing trusted PAA certificates using the argument [--paa-trust-store-path paa/file/path] or environment variable [CHIPTOOL_PAA_TRUST_STORE_PATH=paa/file/path]
    [1755593182.195] [16250:16250] [TOO] Run command failure: ../examples/chip-tool/commands/common/CHIPCommand.cpp:87: CHIP Error 0x0000002F: Invalid argument
    [1755593182.220] [16250:16250] [SPT] HeapObjectPool: 1 allocated
    [1755593182.220] [16250:16250] [SPT] VerifyOrDie failure at src/lib/support/Pool.h:405: Allocated() == 0
    Aborted
    ubuntu@ubuntu:~$ echo $CHIPTOOL_PAA_TRUST_STORE_PATH
    
    ubuntu@ubuntu:~$ ls -la /var/paa-root-certs/
    total 948
    drwxr-xr-x  2 ubuntu ubuntu 24576 Aug 18 16:27 .
    drwxr-xr-x 16 root   root    4096 Jun  6 11:17 ..
    -rw-rw-r--  1 ubuntu ubuntu   405 Aug 18 16:25 ChampOn-Chip-PAA-Cert.der
    -rw-rw-r--  1 ubuntu ubuntu   603 Aug 18 16:27 ChampOn-Chip-PAA-Cert.pem
    -rw-rw-r--  1 ubuntu ubuntu   449 Aug 15 12:01 Chip-Test-PAA-FFF1-Cert.der
    -rw-rw-r--  1 ubuntu ubuntu   664 Aug 15 12:01 Chip-Test-PAA-FFF1-Cert.pem
    -rw-rw-r--  1 ubuntu ubuntu   405 Aug 15 12:01 Chip-Test-PAA-NoVID-Cert.der
    -rw-rw-r--  1 ubuntu ubuntu   603 Aug 15 12:01 Chip-Test-PAA-NoVID-Cert.pem
    -rw-rw-r--  1 ubuntu ubuntu   458 Aug 15 12:01 dcld_mirror_CN_70mai_Matter_PAA_vid_0x140B.der
    -rw-rw-r--  1 ubuntu ubuntu   675 Aug 15 12:01 dcld_mirror_CN_70mai_Matter_PAA_vid_0x140B.pem
    -rw-rw-r--  1 ubuntu ubuntu   447 Aug 15 12:01 dcld_mirror_CN_AB_Test_PAA_vid_0x137B.der
    -rw-rw-r--  1 ubuntu ubuntu   659 Aug 15 12:01 dcld_mirror_CN_AB_Test_PAA_vid_0x137B.pem
    -rw-rw-r--  1 ubuntu ubuntu   440 Aug 15 12:01 dcld_mirror_CN_ACK_PAA_vid_0x137A.der
    -rw-rw-r--  1 ubuntu ubuntu   651 Aug 15 12:01 dcld_mirror_CN_ACK_PAA_vid_0x137A.pem
    -rw-rw-r--  1 ubuntu ubuntu   447 Aug 15 12:01 dcld_mirror_CN_ACK_Test_PAA_vid_0x137A.der
    -rw-rw-r--  1 ubuntu ubuntu   659 Aug 15 12:01 dcld_mirror_CN_ACK_Test_PAA_vid_0x137A.pem
    -rw-rw-r--  1 ubuntu ubuntu   471 Aug 15 12:01 dcld_mirror_CN_Anker_Innovations_Matter_PAA_vid_0x1533.der
    -rw-rw-r--  1 ubuntu ubuntu   691 Aug 15 12:01 dcld_mirror_CN_Anker_Innovations_Matter_PAA_vid_0x1533.pem
    -rw-rw-r--  1 ubuntu ubuntu   505 Aug 15 12:01 dcld_mirror_CN_Aqara_Matter_PAA_01_O_Lumi_United_Technology_Co__Ltd.der
    -rw-rw-r--  1 ubuntu ubuntu   740 Aug 15 12:01 dcld_mirror_CN_Aqara_Matter_PAA_01_O_Lumi_United_Technology_Co__Ltd.pem
    -rw-rw-r--  1 ubuntu ubuntu   446 Aug 15 12:01 dcld_mirror_CN_Basics_PAA_vid_0x137B.der
    -rw-rw-r--  1 ubuntu ubuntu   659 Aug 15 12:01 dcld_mirror_CN_Basics_PAA_vid_0x137B.pem
    -rw-rw-r--  1 ubuntu ubuntu   466 Aug 15 12:01 dcld_mirror_CN_Beken_Development_PAA_01_vid_0x1342.der
    -rw-rw-r--  1 ubuntu ubuntu   687 Aug 15 12:01 dcld_mirror_CN_Beken_Development_PAA_01_vid_0x1342.pem
    -rw-rw-r--  1 ubuntu ubuntu   531 Aug 15 12:01 dcld_mirror_CN_Beken_PAA_01_O_BEKEN_CORPORATION_C_CN_vid_0x1342.der
    -rw-rw-r--  1 ubuntu ubuntu   773 Aug 15 12:01 dcld_mirror_CN_Beken_PAA_01_O_BEKEN_CORPORATION_C_CN_vid_0x1342.pem
    -rw-rw-r--  1 ubuntu ubuntu   469 Aug 15 12:01 dcld_mirror_CN_BouffaloLab_Matter_PAA_vid_0x130D.der
    -rw-rw-r--  1 ubuntu ubuntu   691 Aug 15 12:01 dcld_mirror_CN_BouffaloLab_Matter_PAA_vid_0x130D.pem
    -rw-rw-r--  1 ubuntu ubuntu   479 Aug 15 12:01 dcld_mirror_CN_BouffaloLab_Matter_Test_PAA_vid_0x130D.der
    -rw-rw-r--  1 ubuntu ubuntu   703 Aug 15 12:01 dcld_mirror_CN_BouffaloLab_Matter_Test_PAA_vid_0x130D.pem
    -rw-rw-r--  1 ubuntu ubuntu   462 Aug 15 12:01 dcld_mirror_CN_CommScope_Technologies_LLC_Matter_PAA.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_CommScope_Technologies_LLC_Matter_PAA.pem
    -rw-rw-r--  1 ubuntu ubuntu   467 Aug 15 12:01 dcld_mirror_CN_CoolKit_Matter_PAA_test_vid_0x1286.der
    -rw-rw-r--  1 ubuntu ubuntu   687 Aug 15 12:01 dcld_mirror_CN_CoolKit_Matter_PAA_test_vid_0x1286.pem
    -rw-rw-r--  1 ubuntu ubuntu   462 Aug 15 12:01 dcld_mirror_CN_Coolkit_Matter_PAA_vid_0x1286.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Coolkit_Matter_PAA_vid_0x1286.pem
    -rw-rw-r--  1 ubuntu ubuntu   512 Aug 15 12:01 dcld_mirror_CN_DSC_Matter_PAA_O_Dream_Security_Co__Ltd_C_KR.der
    -rw-rw-r--  1 ubuntu ubuntu   748 Aug 15 12:01 dcld_mirror_CN_DSC_Matter_PAA_O_Dream_Security_Co__Ltd_C_KR.pem
    -rw-rw-r--  1 ubuntu ubuntu   463 Aug 15 12:01 dcld_mirror_CN_DUC_Matter_Test_PAA_CN_vid_0x141F.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_DUC_Matter_Test_PAA_CN_vid_0x141F.pem
    -rw-rw-r--  1 ubuntu ubuntu   529 Aug 15 12:01 dcld_mirror_CN_DigiCert_Root_CA_for_MATTER_PKI_G1_O_DigiCert__Inc_C_US.der
    -rw-rw-r--  1 ubuntu ubuntu   773 Aug 15 12:01 dcld_mirror_CN_DigiCert_Root_CA_for_MATTER_PKI_G1_O_DigiCert__Inc_C_US.pem
    -rw-rw-r--  1 ubuntu ubuntu   533 Aug 15 12:01 dcld_mirror_CN_DigiCert_TEST_Root_CA_for_MATTER_PKI_O_DigiCert__Inc_C_US.der
    -rw-rw-r--  1 ubuntu ubuntu   777 Aug 15 12:01 dcld_mirror_CN_DigiCert_TEST_Root_CA_for_MATTER_PKI_O_DigiCert__Inc_C_US.pem
    -rw-rw-r--  1 ubuntu ubuntu   458 Aug 15 12:01 dcld_mirror_CN_Dooya_Matter_PAA_vid_0x1365.der
    -rw-rw-r--  1 ubuntu ubuntu   675 Aug 15 12:01 dcld_mirror_CN_Dooya_Matter_PAA_vid_0x1365.pem
    -rw-rw-r--  1 ubuntu ubuntu   482 Aug 15 12:01 dcld_mirror_CN_ELiteu_Matter_Development_PAA_01_vid_0x131F.der
    -rw-rw-r--  1 ubuntu ubuntu   708 Aug 15 12:01 dcld_mirror_CN_ELiteu_Matter_Development_PAA_01_vid_0x131F.pem
    -rw-rw-r--  1 ubuntu ubuntu   458 Aug 15 12:01 dcld_mirror_CN_ESP_Matter_PAA_test_vid_0x131B.der
    -rw-rw-r--  1 ubuntu ubuntu   675 Aug 15 12:01 dcld_mirror_CN_ESP_Matter_PAA_test_vid_0x131B.pem
    -rw-rw-r--  1 ubuntu ubuntu   465 Aug 15 12:01 dcld_mirror_CN_EZVIZ_Matter_test_PAA_01_vid_0x1434.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_EZVIZ_Matter_test_PAA_01_vid_0x1434.pem
    -rw-rw-r--  1 ubuntu ubuntu   472 Aug 15 12:01 dcld_mirror_CN_Ecovacs_Matter_PAA_O_ECOVACS_IOT_vid_0x1405.der
    -rw-rw-r--  1 ubuntu ubuntu   695 Aug 15 12:01 dcld_mirror_CN_Ecovacs_Matter_PAA_O_ECOVACS_IOT_vid_0x1405.pem
    -rw-rw-r--  1 ubuntu ubuntu   490 Aug 15 12:01 dcld_mirror_CN_Energy_Magic_Cube_Matter_PAA_001_vid_0x1462.der
    -rw-rw-r--  1 ubuntu ubuntu   720 Aug 15 12:01 dcld_mirror_CN_Energy_Magic_Cube_Matter_PAA_001_vid_0x1462.pem
    -rw-rw-r--  1 ubuntu ubuntu   492 Aug 15 12:01 dcld_mirror_CN_Espressif_Matter_Open_PAA_O_Espressif_Systems.der
    -rw-rw-r--  1 ubuntu ubuntu   720 Aug 15 12:01 dcld_mirror_CN_Espressif_Matter_Open_PAA_O_Espressif_Systems.pem
    -rw-rw-r--  1 ubuntu ubuntu   524 Aug 15 12:01 dcld_mirror_CN_Espressif_Matter_PAA_O_Espressif_Systems_vid_0x131B.der
    -rw-rw-r--  1 ubuntu ubuntu   764 Aug 15 12:01 dcld_mirror_CN_Espressif_Matter_PAA_O_Espressif_Systems_vid_0x131B.pem
    -rw-rw-r--  1 ubuntu ubuntu   463 Aug 15 12:01 dcld_mirror_CN_Feit_Electric_PAA_vid_0x1423.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_Feit_Electric_PAA_vid_0x1423.pem
    -rw-rw-r--  1 ubuntu ubuntu   463 Aug 15 12:01 dcld_mirror_CN_Freedompro_vid_0x1411_vid_0x1411.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_Freedompro_vid_0x1411_vid_0x1411.pem
    -rw-rw-r--  1 ubuntu ubuntu   448 Aug 15 12:01 dcld_mirror_CN_Govee_Test_PAA_vid_0x1387.der
    -rw-rw-r--  1 ubuntu ubuntu   663 Aug 15 12:01 dcld_mirror_CN_Govee_Test_PAA_vid_0x1387.pem
    -rw-rw-r--  1 ubuntu ubuntu   466 Aug 15 12:01 dcld_mirror_CN_HOPERF_Matter_PAA_01_vid_0x1470.der
    -rw-rw-r--  1 ubuntu ubuntu   687 Aug 15 12:01 dcld_mirror_CN_HOPERF_Matter_PAA_01_vid_0x1470.pem
    -rw-rw-r--  1 ubuntu ubuntu   458 Aug 15 12:01 dcld_mirror_CN_Haier-Matter-PAA-01_vid_0x1348.der
    -rw-rw-r--  1 ubuntu ubuntu   675 Aug 15 12:01 dcld_mirror_CN_Haier-Matter-PAA-01_vid_0x1348.pem
    -rw-rw-r--  1 ubuntu ubuntu   464 Aug 15 12:01 dcld_mirror_CN_Heiman_Matter_Test_PAA_vid_0x120B.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_Heiman_Matter_Test_PAA_vid_0x120B.pem
    -rw-rw-r--  1 ubuntu ubuntu   463 Aug 15 12:01 dcld_mirror_CN_Hisense_Matter_Test_PAA_vid_0x138C.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_Hisense_Matter_Test_PAA_vid_0x138C.pem
    -rw-rw-r--  1 ubuntu ubuntu   508 Aug 15 12:01 dcld_mirror_CN_HooRii_Matter_Development_PAA_With_VID_0x1351_vid_0x1351.der
    -rw-rw-r--  1 ubuntu ubuntu   744 Aug 15 12:01 dcld_mirror_CN_HooRii_Matter_Development_PAA_With_VID_0x1351_vid_0x1351.pem
    -rw-rw-r--  1 ubuntu ubuntu   464 Aug 15 12:01 dcld_mirror_CN_HooRii_Matter_PAA_G1_vid_0x1351.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_HooRii_Matter_PAA_G1_vid_0x1351.pem
    -rw-rw-r--  1 ubuntu ubuntu   440 Aug 15 12:01 dcld_mirror_CN_HuaCheng_vid_0x1517.der
    -rw-rw-r--  1 ubuntu ubuntu   651 Aug 15 12:01 dcld_mirror_CN_HuaCheng_vid_0x1517.pem
    -rw-rw-r--  1 ubuntu ubuntu   487 Aug 15 12:01 dcld_mirror_CN_IKEA_of_Sweden_Matter_PAA_G1_vid_0x117C.der
    -rw-rw-r--  1 ubuntu ubuntu   716 Aug 15 12:01 dcld_mirror_CN_IKEA_of_Sweden_Matter_PAA_G1_vid_0x117C.pem
    -rw-rw-r--  1 ubuntu ubuntu   480 Aug 15 12:01 dcld_mirror_CN_IKEA_of_Sweden_Matter_Test_PAA_vid_0x117C.der
    -rw-rw-r--  1 ubuntu ubuntu   703 Aug 15 12:01 dcld_mirror_CN_IKEA_of_Sweden_Matter_Test_PAA_vid_0x117C.pem
    -rw-rw-r--  1 ubuntu ubuntu   451 Aug 15 12:01 dcld_mirror_CN_Kasa_Matter_PAA_vid_0x1391.der
    -rw-rw-r--  1 ubuntu ubuntu   667 Aug 15 12:01 dcld_mirror_CN_Kasa_Matter_PAA_vid_0x1391.pem
    -rw-rw-r--  1 ubuntu ubuntu   461 Aug 15 12:01 dcld_mirror_CN_Kasa_Matter_Test_PAA_vid_0x1391.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Kasa_Matter_Test_PAA_vid_0x1391.pem
    -rw-rw-r--  1 ubuntu ubuntu   428 Aug 15 12:01 dcld_mirror_CN_Kudelski_Matter_PAA_01.der
    -rw-rw-r--  1 ubuntu ubuntu   634 Aug 15 12:01 dcld_mirror_CN_Kudelski_Matter_PAA_01.pem
    -rw-rw-r--  1 ubuntu ubuntu   438 Aug 15 12:01 dcld_mirror_CN_Kudelski_Matter_Test_PAA_01.der
    -rw-rw-r--  1 ubuntu ubuntu   647 Aug 15 12:01 dcld_mirror_CN_Kudelski_Matter_Test_PAA_01.pem
    -rw-rw-r--  1 ubuntu ubuntu   438 Aug 15 12:01 dcld_mirror_CN_Kwikset_Matter_Test_PAA_vid_0x1421.der
    -rw-rw-r--  1 ubuntu ubuntu   647 Aug 15 12:01 dcld_mirror_CN_Kwikset_Matter_Test_PAA_vid_0x1421.pem
    -rw-rw-r--  1 ubuntu ubuntu   465 Aug 15 12:01 dcld_mirror_CN_LEEDARSON-MATTER-PAA_vid_0x1168.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_LEEDARSON-MATTER-PAA_vid_0x1168.pem
    -rw-rw-r--  1 ubuntu ubuntu   481 Aug 15 12:01 dcld_mirror_CN_LGE_Matter_Test_PAA__vid_0x102E_vid_0x102E.der
    -rw-rw-r--  1 ubuntu ubuntu   708 Aug 15 12:01 dcld_mirror_CN_LGE_Matter_Test_PAA__vid_0x102E_vid_0x102E.pem
    -rw-rw-r--  1 ubuntu ubuntu   480 Aug 15 12:01 dcld_mirror_CN_Legrand_Group_Matter_PAA_vid_0x1021.der
    -rw-rw-r--  1 ubuntu ubuntu   703 Aug 15 12:01 dcld_mirror_CN_Legrand_Group_Matter_PAA_vid_0x1021.pem
    -rw-rw-r--  1 ubuntu ubuntu   442 Aug 15 12:01 dcld_mirror_CN_Leviton_PAA_vid_0x109B.der
    -rw-rw-r--  1 ubuntu ubuntu   655 Aug 15 12:01 dcld_mirror_CN_Leviton_PAA_vid_0x109B.pem
    -rw-rw-r--  1 ubuntu ubuntu   479 Aug 15 12:01 dcld_mirror_CN_Longanlink_Matter_PAA_01_vid_0x131F.der
    -rw-rw-r--  1 ubuntu ubuntu   703 Aug 15 12:01 dcld_mirror_CN_Longanlink_Matter_PAA_01_vid_0x131F.pem
    -rw-rw-r--  1 ubuntu ubuntu   444 Aug 15 12:01 dcld_mirror_CN_Lorex_PAA_CN_vid_0x1419.der
    -rw-rw-r--  1 ubuntu ubuntu   655 Aug 15 12:01 dcld_mirror_CN_Lorex_PAA_CN_vid_0x1419.pem
    -rw-rw-r--  1 ubuntu ubuntu   471 Aug 15 12:01 dcld_mirror_CN_Matter_ASR_PAA_C_CN_vid_0x133F.der
    -rw-rw-r--  1 ubuntu ubuntu   691 Aug 15 12:01 dcld_mirror_CN_Matter_ASR_PAA_C_CN_vid_0x133F.pem
    -rw-rw-r--  1 ubuntu ubuntu   517 Aug 15 12:01 dcld_mirror_CN_Matter_Certification_and_Testing_CA_O_CSA_vid_0xC5A0.der
    -rw-rw-r--  1 ubuntu ubuntu   756 Aug 15 12:01 dcld_mirror_CN_Matter_Certification_and_Testing_CA_O_CSA_vid_0xC5A0.pem
    -rw-rw-r--  1 ubuntu ubuntu   420 Aug 15 12:01 dcld_mirror_CN_Matter_Development_PAA.der
    -rw-rw-r--  1 ubuntu ubuntu   622 Aug 15 12:01 dcld_mirror_CN_Matter_Development_PAA.pem
    -rw-rw-r--  1 ubuntu ubuntu   497 Aug 15 12:01 dcld_mirror_CN_Matter_PAA_1_O_Google_C_US_vid_0x6006.der
    -rw-rw-r--  1 ubuntu ubuntu   728 Aug 15 12:01 dcld_mirror_CN_Matter_PAA_1_O_Google_C_US_vid_0x6006.pem
    -rw-rw-r--  1 ubuntu ubuntu   523 Aug 15 12:01 dcld_mirror_CN_Matter_PAA_1_O_ubisys_technologies_GmbH_vid_0x10F2.der
    -rw-rw-r--  1 ubuntu ubuntu   764 Aug 15 12:01 dcld_mirror_CN_Matter_PAA_1_O_ubisys_technologies_GmbH_vid_0x10F2.pem
    -rw-rw-r--  1 ubuntu ubuntu   498 Aug 15 12:01 dcld_mirror_CN_Matter_PAA_2_O_Google_C_US_vid_0x6006.der
    -rw-rw-r--  1 ubuntu ubuntu   728 Aug 15 12:01 dcld_mirror_CN_Matter_PAA_2_O_Google_C_US_vid_0x6006.pem
    -rw-rw-r--  1 ubuntu ubuntu   433 Aug 15 12:01 dcld_mirror_CN_Matter_Signify_PAA_1_vid_0x100B.der
    -rw-rw-r--  1 ubuntu ubuntu   643 Aug 15 12:01 dcld_mirror_CN_Matter_Signify_PAA_1_vid_0x100B.pem
    -rw-rw-r--  1 ubuntu ubuntu   494 Aug 15 12:01 dcld_mirror_CN_Matter_Test_PAA_O_Samsung_vid_0x10E1.der
    -rw-rw-r--  1 ubuntu ubuntu   724 Aug 15 12:01 dcld_mirror_CN_Matter_Test_PAA_O_Samsung_vid_0x10E1.pem
    -rw-rw-r--  1 ubuntu ubuntu   448 Aug 15 12:01 dcld_mirror_CN_Matter_Test_PAA_vid_0x125D.der
    -rw-rw-r--  1 ubuntu ubuntu   663 Aug 15 12:01 dcld_mirror_CN_Matter_Test_PAA_vid_0x125D.pem
    -rw-rw-r--  1 ubuntu ubuntu   476 Aug 15 12:01 dcld_mirror_CN_Matter_Uascent_PAA_0x1400_vid_0x1400.der
    -rw-rw-r--  1 ubuntu ubuntu   699 Aug 15 12:01 dcld_mirror_CN_Matter_Uascent_PAA_0x1400_vid_0x1400.pem
    -rw-rw-r--  1 ubuntu ubuntu   438 Aug 15 12:01 dcld_mirror_CN_Meizu_PAA_vid_0x1398.der
    -rw-rw-r--  1 ubuntu ubuntu   647 Aug 15 12:01 dcld_mirror_CN_Meizu_PAA_vid_0x1398.pem
    -rw-rw-r--  1 ubuntu ubuntu   462 Aug 15 12:01 dcld_mirror_CN_Meross_Development_PAA_vid_0x1345.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Meross_Development_PAA_vid_0x1345.pem
    -rw-rw-r--  1 ubuntu ubuntu   453 Aug 15 12:01 dcld_mirror_CN_Meross_Matter_PAA_vid_0x1345.der
    -rw-rw-r--  1 ubuntu ubuntu   667 Aug 15 12:01 dcld_mirror_CN_Meross_Matter_PAA_vid_0x1345.pem
    -rw-rw-r--  1 ubuntu ubuntu   482 Aug 15 12:01 dcld_mirror_CN_Midea_Group_Matter_PAA_G1_Prod_vid_0x118C.der
    -rw-rw-r--  1 ubuntu ubuntu   708 Aug 15 12:01 dcld_mirror_CN_Midea_Group_Matter_PAA_G1_Prod_vid_0x118C.pem
    -rw-rw-r--  1 ubuntu ubuntu   437 Aug 15 12:01 dcld_mirror_CN_Midea_PAA_vid_0x118C.der
    -rw-rw-r--  1 ubuntu ubuntu   647 Aug 15 12:01 dcld_mirror_CN_Midea_PAA_vid_0x118C.pem
    -rw-rw-r--  1 ubuntu ubuntu   517 Aug 15 12:01 dcld_mirror_CN_Nexus_Matter_PAA_G1_O_Technology_Nexus_SBS_AB_C_SE.der
    -rw-rw-r--  1 ubuntu ubuntu   756 Aug 15 12:01 dcld_mirror_CN_Nexus_Matter_PAA_G1_O_Technology_Nexus_SBS_AB_C_SE.pem
    -rw-rw-r--  1 ubuntu ubuntu   462 Aug 15 12:01 dcld_mirror_CN_Non_Production_ONLY_-_XFN_PAA_Class_3.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Non_Production_ONLY_-_XFN_PAA_Class_3.pem
    -rw-rw-r--  1 ubuntu ubuntu   445 Aug 15 12:01 dcld_mirror_CN_OPPO_Test_PAA_vid_0x1341.der
    -rw-rw-r--  1 ubuntu ubuntu   659 Aug 15 12:01 dcld_mirror_CN_OPPO_Test_PAA_vid_0x1341.pem
    -rw-rw-r--  1 ubuntu ubuntu   463 Aug 15 12:01 dcld_mirror_CN_ORVIBO_Matter_Test_PAA_vid_0x1219.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_ORVIBO_Matter_Test_PAA_vid_0x1219.pem
    -rw-rw-r--  1 ubuntu ubuntu   444 Aug 15 12:01 dcld_mirror_CN_PV_Test_PAA_vid_0x1381.der
    -rw-rw-r--  1 ubuntu ubuntu   655 Aug 15 12:01 dcld_mirror_CN_PV_Test_PAA_vid_0x1381.pem
    -rw-rw-r--  1 ubuntu ubuntu   449 Aug 15 12:01 dcld_mirror_CN_PanKorePAA_O_PanKore_vid_0x1316.der
    -rw-rw-r--  1 ubuntu ubuntu   663 Aug 15 12:01 dcld_mirror_CN_PanKorePAA_O_PanKore_vid_0x1316.pem
    -rw-rw-r--  1 ubuntu ubuntu   423 Aug 15 12:01 dcld_mirror_CN_Pankore_Matter_Test_PAA.der
    -rw-rw-r--  1 ubuntu ubuntu   626 Aug 15 12:01 dcld_mirror_CN_Pankore_Matter_Test_PAA.pem
    -rw-rw-r--  1 ubuntu ubuntu   460 Aug 15 12:01 dcld_mirror_CN_Phaten_Matter_PAA_vid_0x1404.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Phaten_Matter_PAA_vid_0x1404.pem
    -rw-rw-r--  1 ubuntu ubuntu   444 Aug 15 12:01 dcld_mirror_CN_Prime_PAA_vid_0x1381.der
    -rw-rw-r--  1 ubuntu ubuntu   655 Aug 15 12:01 dcld_mirror_CN_Prime_PAA_vid_0x1381.pem
    -rw-rw-r--  1 ubuntu ubuntu   457 Aug 15 12:01 dcld_mirror_CN_QDhisense_Test_PAA_vid_0x138C.der
    -rw-rw-r--  1 ubuntu ubuntu   675 Aug 15 12:01 dcld_mirror_CN_QDhisense_Test_PAA_vid_0x138C.pem
    -rw-rw-r--  1 ubuntu ubuntu   462 Aug 15 12:01 dcld_mirror_CN_Qianyan_Matter_PAA_vid_0x1387.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Qianyan_Matter_PAA_vid_0x1387.pem
    -rw-rw-r--  1 ubuntu ubuntu   468 Aug 15 12:01 dcld_mirror_CN_Quectel_Matter_CA_PAA_vid_0x1410.der
    -rw-rw-r--  1 ubuntu ubuntu   687 Aug 15 12:01 dcld_mirror_CN_Quectel_Matter_CA_PAA_vid_0x1410.pem
    -rw-rw-r--  1 ubuntu ubuntu   468 Aug 15 12:01 dcld_mirror_CN_Quectel_Matter_PAA_vid_0x1410.der
    -rw-rw-r--  1 ubuntu ubuntu   687 Aug 15 12:01 dcld_mirror_CN_Quectel_Matter_PAA_vid_0x1410.pem
    -rw-rw-r--  1 ubuntu ubuntu   454 Aug 15 12:01 dcld_mirror_CN_Rafael_Matter_PAA_vid_0x1346.der
    -rw-rw-r--  1 ubuntu ubuntu   671 Aug 15 12:01 dcld_mirror_CN_Rafael_Matter_PAA_vid_0x1346.pem
    -rw-rw-r--  1 ubuntu ubuntu   449 Aug 15 12:01 dcld_mirror_CN_Rafael_Test_PAA_vid_0x1346.der
    -rw-rw-r--  1 ubuntu ubuntu   663 Aug 15 12:01 dcld_mirror_CN_Rafael_Test_PAA_vid_0x1346.pem
    -rw-rw-r--  1 ubuntu ubuntu   452 Aug 15 12:01 dcld_mirror_CN_SAVANT_Matter_PAA_vid_0x1339.der
    -rw-rw-r--  1 ubuntu ubuntu   667 Aug 15 12:01 dcld_mirror_CN_SAVANT_Matter_PAA_vid_0x1339.pem
    -rw-rw-r--  1 ubuntu ubuntu   458 Aug 15 12:01 dcld_mirror_CN_SIEGENIA_Testnet_PAA_vid_0x135A.der
    -rw-rw-r--  1 ubuntu ubuntu   675 Aug 15 12:01 dcld_mirror_CN_SIEGENIA_Testnet_PAA_vid_0x135A.pem
    -rw-rw-r--  1 ubuntu ubuntu   460 Aug 15 12:01 dcld_mirror_CN_Safemo_Matter_PAA_vid_0x1506.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Safemo_Matter_PAA_vid_0x1506.pem
    -rw-rw-r--  1 ubuntu ubuntu   494 Aug 15 12:01 dcld_mirror_CN_Schneider_Electric_Matter_PAA_01_vid_0x105E.der
    -rw-rw-r--  1 ubuntu ubuntu   724 Aug 15 12:01 dcld_mirror_CN_Schneider_Electric_Matter_PAA_01_vid_0x105E.pem
    -rw-rw-r--  1 ubuntu ubuntu   470 Aug 15 12:01 dcld_mirror_CN_Schneider_Matter_Test_PAA_vid_0x105E.der
    -rw-rw-r--  1 ubuntu ubuntu   691 Aug 15 12:01 dcld_mirror_CN_Schneider_Matter_Test_PAA_vid_0x105E.pem
    -rw-rw-r--  1 ubuntu ubuntu   428 Aug 15 12:01 dcld_mirror_CN_Sengled_Matter_PAA_vid_0x1160.der
    -rw-rw-r--  1 ubuntu ubuntu   634 Aug 15 12:01 dcld_mirror_CN_Sengled_Matter_PAA_vid_0x1160.pem
    -rw-rw-r--  1 ubuntu ubuntu   432 Aug 15 12:01 dcld_mirror_CN_Siterwell_Matter_PAA_vid_0x1280.der
    -rw-rw-r--  1 ubuntu ubuntu   638 Aug 15 12:01 dcld_mirror_CN_Siterwell_Matter_PAA_vid_0x1280.pem
    -rw-rw-r--  1 ubuntu ubuntu   426 Aug 15 12:01 dcld_mirror_CN_Snowball_Matter_PAA_01.der
    -rw-rw-r--  1 ubuntu ubuntu   630 Aug 15 12:01 dcld_mirror_CN_Snowball_Matter_PAA_01.pem
    -rw-rw-r--  1 ubuntu ubuntu   484 Aug 15 12:01 dcld_mirror_CN_StrongKey_G1_Development_PAA_O_StrongKey.der
    -rw-rw-r--  1 ubuntu ubuntu   712 Aug 15 12:01 dcld_mirror_CN_StrongKey_G1_Development_PAA_O_StrongKey.pem
    -rw-rw-r--  1 ubuntu ubuntu   472 Aug 15 12:01 dcld_mirror_CN_StrongKey_Matter_G1_PAA_O_StrongKey.der
    -rw-rw-r--  1 ubuntu ubuntu   695 Aug 15 12:01 dcld_mirror_CN_StrongKey_Matter_G1_PAA_O_StrongKey.pem
    -rw-rw-r--  1 ubuntu ubuntu   451 Aug 15 12:01 dcld_mirror_CN_Sunricher_PAA_CN_vid_0x1224.der
    -rw-rw-r--  1 ubuntu ubuntu   667 Aug 15 12:01 dcld_mirror_CN_Sunricher_PAA_CN_vid_0x1224.pem
    -rw-rw-r--  1 ubuntu ubuntu   433 Aug 15 12:01 dcld_mirror_CN_SwitchBot_Matter_PAA_vid_0x1397.der
    -rw-rw-r--  1 ubuntu ubuntu   643 Aug 15 12:01 dcld_mirror_CN_SwitchBot_Matter_PAA_vid_0x1397.pem
    -rw-rw-r--  1 ubuntu ubuntu   461 Aug 15 12:01 dcld_mirror_CN_SwitchBot_Test_PAA_01_vid_0x1397.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_SwitchBot_Test_PAA_01_vid_0x1397.pem
    -rw-rw-r--  1 ubuntu ubuntu   456 Aug 15 12:01 dcld_mirror_CN_TP-Link_Matter_PAA_vid_0x1188.der
    -rw-rw-r--  1 ubuntu ubuntu   671 Aug 15 12:01 dcld_mirror_CN_TP-Link_Matter_PAA_vid_0x1188.pem
    -rw-rw-r--  1 ubuntu ubuntu   466 Aug 15 12:01 dcld_mirror_CN_TP-Link_Matter_Test_PAA_vid_0x1188.der
    -rw-rw-r--  1 ubuntu ubuntu   687 Aug 15 12:01 dcld_mirror_CN_TP-Link_Matter_Test_PAA_vid_0x1188.pem
    -rw-rw-r--  1 ubuntu ubuntu   451 Aug 15 12:01 dcld_mirror_CN_Tapo_Matter_PAA_vid_0x1392.der
    -rw-rw-r--  1 ubuntu ubuntu   667 Aug 15 12:01 dcld_mirror_CN_Tapo_Matter_PAA_vid_0x1392.pem
    -rw-rw-r--  1 ubuntu ubuntu   461 Aug 15 12:01 dcld_mirror_CN_Tapo_Matter_Test_PAA_vid_0x1392.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Tapo_Matter_Test_PAA_vid_0x1392.pem
    -rw-rw-r--  1 ubuntu ubuntu   483 Aug 15 12:01 dcld_mirror_CN_Telink_Matter_Development_PAA_01_vid_0x1141.der
    -rw-rw-r--  1 ubuntu ubuntu   708 Aug 15 12:01 dcld_mirror_CN_Telink_Matter_Development_PAA_01_vid_0x1141.pem
    -rw-rw-r--  1 ubuntu ubuntu   494 Aug 15 12:01 dcld_mirror_CN_TrustAsia_Matter_PAA_O_TrustAsia_Technologies__Inc.der
    -rw-rw-r--  1 ubuntu ubuntu   724 Aug 15 12:01 dcld_mirror_CN_TrustAsia_Matter_PAA_O_TrustAsia_Technologies__Inc.pem
    -rw-rw-r--  1 ubuntu ubuntu   503 Aug 15 12:01 dcld_mirror_CN_TrustAsia_Matter_Test_PAA_O_TrustAsia_Technologies__Inc.der
    -rw-rw-r--  1 ubuntu ubuntu   736 Aug 15 12:01 dcld_mirror_CN_TrustAsia_Matter_Test_PAA_O_TrustAsia_Technologies__Inc.pem
    -rw-rw-r--  1 ubuntu ubuntu   429 Aug 15 12:01 dcld_mirror_CN_Tuya_Global_Matter_PAA.der
    -rw-rw-r--  1 ubuntu ubuntu   634 Aug 15 12:01 dcld_mirror_CN_Tuya_Global_Matter_PAA.pem
    -rw-rw-r--  1 ubuntu ubuntu   448 Aug 15 12:01 dcld_mirror_CN_Tuya_Matter_PAA_vid_0x125D.der
    -rw-rw-r--  1 ubuntu ubuntu   663 Aug 15 12:01 dcld_mirror_CN_Tuya_Matter_PAA_vid_0x125D.pem
    -rw-rw-r--  1 ubuntu ubuntu   469 Aug 15 12:01 dcld_mirror_CN_U-tec_Group_Matter_PAA_vid_0x147F.der
    -rw-rw-r--  1 ubuntu ubuntu   691 Aug 15 12:01 dcld_mirror_CN_U-tec_Group_Matter_PAA_vid_0x147F.pem
    -rw-rw-r--  1 ubuntu ubuntu   484 Aug 15 12:01 dcld_mirror_CN_Uascent_Matter_Development_PAA_01_vid_0x1400.der
    -rw-rw-r--  1 ubuntu ubuntu   712 Aug 15 12:01 dcld_mirror_CN_Uascent_Matter_Development_PAA_01_vid_0x1400.pem
    -rw-rw-r--  1 ubuntu ubuntu   430 Aug 15 12:01 dcld_mirror_CN_WISeKey_OISTE_Matter_PAA_GA.der
    -rw-rw-r--  1 ubuntu ubuntu   638 Aug 15 12:01 dcld_mirror_CN_WISeKey_OISTE_Matter_PAA_GA.pem
    -rw-rw-r--  1 ubuntu ubuntu   468 Aug 15 12:01 dcld_mirror_CN_XFN_Matter_PAA_VID_vid_0x111D.der
    -rw-rw-r--  1 ubuntu ubuntu   687 Aug 15 12:01 dcld_mirror_CN_XFN_Matter_PAA_VID_vid_0x111D.pem
    -rw-rw-r--  1 ubuntu ubuntu   467 Aug 15 12:01 dcld_mirror_CN_Xiaomi_Mijia_Matter_PAA_vid_0x126E.der
    -rw-rw-r--  1 ubuntu ubuntu   687 Aug 15 12:01 dcld_mirror_CN_Xiaomi_Mijia_Matter_PAA_vid_0x126E.pem
    -rw-rw-r--  1 ubuntu ubuntu   462 Aug 15 12:01 dcld_mirror_CN_Yeelight_Matter_PAA_vid_0x1312.der
    -rw-rw-r--  1 ubuntu ubuntu   679 Aug 15 12:01 dcld_mirror_CN_Yeelight_Matter_PAA_vid_0x1312.pem
    -rw-rw-r--  1 ubuntu ubuntu   463 Aug 15 12:01 dcld_mirror_CN_deveritec_GmbH_Test_PAA_vid_0x1362.der
    -rw-rw-r--  1 ubuntu ubuntu   683 Aug 15 12:01 dcld_mirror_CN_deveritec_GmbH_Test_PAA_vid_0x1362.pem
    -rw-rw-r--  1 ubuntu ubuntu   479 Aug 15 12:01 dcld_mirror_CN_heiman_Matter_Protocol_PAA_vid_0x120B.der
    -rw-rw-r--  1 ubuntu ubuntu   703 Aug 15 12:01 dcld_mirror_CN_heiman_Matter_Protocol_PAA_vid_0x120B.pem
    -rw-rw-r--  1 ubuntu ubuntu   558 Aug 15 12:01 dcld_mirror_SERIALNUMBER_63709330400001_CN_NXP_Matter_PAA_O_NXP_Semiconductors_NV_C_NL.der
    -rw-rw-r--  1 ubuntu ubuntu   809 Aug 15 12:01 dcld_mirror_SERIALNUMBER_63709330400001_CN_NXP_Matter_PAA_O_NXP_Semiconductors_NV_C_NL.pem
    -rw-rw-r--  1 ubuntu ubuntu   469 Aug 15 12:01 dcld_mirror_SERIALNUMBER_63709330400004_CN_NXP_Matter_PAA_G2.der
    -rw-rw-r--  1 ubuntu ubuntu   691 Aug 15 12:01 dcld_mirror_SERIALNUMBER_63709330400004_CN_NXP_Matter_PAA_G2.pem
    -rw-rw-r--  1 ubuntu ubuntu   568 Aug 15 12:01 dcld_mirror_SERIALNUMBER_63709380400001_CN_NXP_Matter_Test_PAA_O_NXP_Semiconductors_NV_C_NL.der
    -rw-rw-r--  1 ubuntu ubuntu   825 Aug 15 12:01 dcld_mirror_SERIALNUMBER_63709380400001_CN_NXP_Matter_Test_PAA_O_NXP_Semiconductors_NV_C_NL.pem
    ubuntu@ubuntu:~$ export CHIPTOOL_PAA_TRUST_STORE_PATH=/var/paa-root-certs/
    ubuntu@ubuntu:~$ sudo -E chip-tool pairing ble-thread 0x11820 hex:0e08000000000001000035060004001fffe00708fd583913eac813490410a9f333e7e2b8af3f4dab38d30350c01c0c0402a0f7f8000300001901025b3502085b35dead5b35beef030435623335051000112233445566778899aabbccddeeff 17318858 1731
    [1755593315.971] [16290:16290] [DL] ChipLinuxStorage::Init: Using KVS config file: /root/snap/chip-tool/common/chip_tool_kvs
    [1755593315.973] [16290:16290] [DL] ChipLinuxStorage::Init: Attempt to re-initialize with KVS config file: /tmp/chip_kvs, IGNORING.
    [1755593315.979] [16290:16290] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_factory.ini
    [1755593315.979] [16290:16290] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_config.ini
    [1755593315.979] [16290:16290] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_counters.ini
    [1755593315.989] [16290:16290] [DL] Wrote settings to /tmp/chip_counters.ini
    [1755593315.989] [16290:16290] [DL] NVS set: chip-counters/reboot-count = 4 (0x4)
    [1755593315.990] [16290:16290] [DL] Got Ethernet interface: br-b5265faf06c2
    [1755593315.991] [16290:16290] [DL] Found the primary Ethernet interface:br-b5265faf06c2
    [1755593315.993] [16290:16290] [DL] Got WiFi interface: wlan0
    [1755593315.996] [16290:16290] [DL] Found the primary WiFi interface:wlan0
    [1755593315.996] [16290:16290] [PAF] WiFiPAF: WiFiPAFLayer::Init()
    [1755593315.996] [16290:16290] [IN] UDP::Init bind&listen port=0
    [1755593315.997] [16290:16290] [IN] UDP::Init bound to port=48422
    [1755593315.997] [16290:16290] [IN] UDP::Init bind&listen port=0
    [1755593315.997] [16290:16290] [IN] UDP::Init bound to port=59264
    [1755593315.997] [16290:16290] [IN] BLEBase::Init - setting/overriding transport
    [1755593315.997] [16290:16290] [IN] WiFiPAFBase::Init - setting/overriding transport
    [1755593315.997] [16290:16290] [IN] TransportMgr initialized
    [1755593315.997] [16290:16290] [FP] Initializing FabricTable from persistent storage
    [1755593315.997] [16290:16290] [TS] Last Known Good Time: 2023-10-14T01:16:48
    [1755593316.000] [16290:16290] [FP] Fabric index 0x1 was retrieved from storage. Compressed FabricId 0xB3DAE46C9A64DBAF, FabricId 0x0000000000000001, NodeId 0x000000000001B669, VendorId 0xFFF1
    [1755593316.002] [16290:16290] [DMG] Ember attribute persistence requires setting up
    [1755593316.002] [16290:16290] [ZCL] Using ZAP configuration...
    [1755593316.031] [16290:16290] [CTL] System State Initialized...
    [1755593316.031] [16290:16290] [TOO] No PAAs found in path: /var/paa-root-certs/
    [1755593316.031] [16290:16290] [TOO] Please specify a valid path containing trusted PAA certificates using the argument [--paa-trust-store-path paa/file/path] or environment variable [CHIPTOOL_PAA_TRUST_STORE_PATH=paa/file/path]
    [1755593316.031] [16290:16290] [TOO] Run command failure: ../examples/chip-tool/commands/common/CHIPCommand.cpp:87: CHIP Error 0x0000002F: Invalid argument
    [1755593316.057] [16290:16290] [SPT] HeapObjectPool: 1 allocated
    [1755593316.057] [16290:16290] [SPT] VerifyOrDie failure at src/lib/support/Pool.h:405: Allocated() == 0
    Aborted
    ubuntu@ubuntu:~$ echo $CHIPTOOL_PAA_TRUST_STORE_PATH
    /var/paa-root-certs/


    I tried to execute the command outside Docker but failed (error log is above). What's wrong with it? I asked AI but didn't get useful information. And then I execute the command in the docker, also failed.

    ubuntu@ubuntu:~$ docker run -v /var/paa-root-certs:/paa_roots -v /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket -v /home/ubuntu/certification-tool/backend/test_collections/matter/sdk_tests/sdk_checkout/python_testing:/root/python_testing -v $(pwd):/launch_dir --privileged --network host -it connectedhomeip/chip-cert-bins:0c90d7299f7ab70b325e8a7febd0f210ae629ce4
    root@ubuntu:~# ls /paa_roots/ | grep ChampOn
    ChampOn-Chip-PAA-Cert.der
    ChampOn-Chip-PAA-Cert.pem
    root@ubuntu:~# ./chip-tool pairing ble-thread 0x11820 hex:0e08000000000001000035060004001fffe00708fd583913eac813490410a9f333e7e2b8af3f4dab38d30350c01c0c0402a0f7f8000300001901025b3502085b35dead5b35beef030435623335051000112233445566778899aabbccddeeff 17318858 1731 --paa-trust-store-path /paa_roots/
    [1755594655.740] [12:12] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_tool_kvs
    [1755594655.751] [12:12] [DL] Wrote settings to /tmp/chip_tool_kvs
    [1755594655.753] [12:12] [DL] ChipLinuxStorage::Init: Attempt to re-initialize with KVS config file: /tmp/chip_kvs
    [1755594655.772] [12:12] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_factory.ini
    [1755594655.777] [12:12] [DL] Wrote settings to /tmp/chip_factory.ini
    [1755594655.778] [12:12] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_config.ini
    [1755594655.783] [12:12] [DL] Wrote settings to /tmp/chip_config.ini
    [1755594655.784] [12:12] [DL] ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_counters.ini
    [1755594655.791] [12:12] [DL] Wrote settings to /tmp/chip_counters.ini
    [1755594655.798] [12:12] [DL] Wrote settings to /tmp/chip_factory.ini
    [1755594655.799] [12:12] [DL] NVS set: chip-factory/unique-id = "547052D3C9834B08"
    [1755594655.806] [12:12] [DL] Wrote settings to /tmp/chip_factory.ini
    [1755594655.806] [12:12] [DL] NVS set: chip-factory/vendor-id = 65521 (0xFFF1)
    [1755594655.814] [12:12] [DL] Wrote settings to /tmp/chip_factory.ini
    [1755594655.814] [12:12] [DL] NVS set: chip-factory/product-id = 32769 (0x8001)
    [1755594655.821] [12:12] [DL] Wrote settings to /tmp/chip_counters.ini
    [1755594655.821] [12:12] [DL] NVS set: chip-counters/reboot-count = 1 (0x1)
    [1755594655.828] [12:12] [DL] Wrote settings to /tmp/chip_counters.ini
    [1755594655.828] [12:12] [DL] NVS set: chip-counters/total-operational-hours = 0 (0x0)
    [1755594655.836] [12:12] [DL] Wrote settings to /tmp/chip_counters.ini
    [1755594655.836] [12:12] [DL] NVS set: chip-counters/boot-reason = 0 (0x0)
    [1755594655.843] [12:12] [DL] Wrote settings to /tmp/chip_config.ini
    [1755594655.843] [12:12] [DL] NVS set: chip-config/regulatory-location = 0 (0x0)
    [1755594655.850] [12:12] [DL] Wrote settings to /tmp/chip_config.ini
    [1755594655.850] [12:12] [DL] NVS set: chip-config/location-capability = 2 (0x2)
    [1755594655.855] [12:12] [DL] Failed to get Ethernet interface
    [1755594655.860] [12:12] [DL] Failed to reset Ethernet statistic counts
    [1755594655.862] [12:12] [DL] Got WiFi interface: wlan0
    [1755594655.865] [12:12] [DL] Found the primary WiFi interface:wlan0
    [1755594655.866] [12:12] [IN] UDP::Init bind&listen port=0
    [1755594655.866] [12:12] [IN] UDP::Init bound to port=60563
    [1755594655.866] [12:12] [IN] BLEBase::Init - setting/overriding transport
    [1755594655.866] [12:12] [IN] TransportMgr initialized
    [1755594655.866] [12:12] [FP] Initializing FabricTable from persistent storage
    [1755594655.866] [12:12] [TS] Last Known Good Time: [unknown]
    [1755594655.866] [12:12] [TS] Setting Last Known Good Time to firmware build time 2023-10-14T01:16:48
    [1755594655.869] [12:12] [ZCL] Using ZAP configuration...
    [1755594655.874] [12:12] [DL] Avahi client registered
    [1755594655.874] [12:12] [IM] WARNING ┌────────────────────────────────────────────────────
    [1755594655.874] [12:12] [IM] WARNING │ Interaction Model Engine running in 'Checked' mode.
    [1755594655.874] [12:12] [IM] WARNING │ This executes BOTH ember and data-model code paths.
    [1755594655.874] [12:12] [IM] WARNING │ which is inefficient and consumes more flash space.
    [1755594655.874] [12:12] [IM] WARNING │ This should be done for testing only.
    [1755594655.874] [12:12] [IM] WARNING └────────────────────────────────────────────────────
    [1755594655.874] [12:12] [CTL] System State Initialized...
    [1755594656.308] [12:12] [CTL] Setting attestation nonce to random value
    [1755594656.308] [12:12] [CTL] Setting CSR nonce to random value
    [1755594656.308] [12:12] [IN] UDP::Init bind&listen port=5550
    [1755594656.308] [12:12] [IN] UDP::Init bound to port=5550
    [1755594656.308] [12:12] [IN] TransportMgr initialized
    [1755594656.309] [12:14] [DL] CHIP task running
    [1755594656.310] [12:14] [DL] HandlePlatformSpecificBLEEvent 32786
    [1755594656.311] [12:14] [CTL] Setting attestation nonce to random value
    [1755594656.311] [12:14] [CTL] Setting CSR nonce to random value
    [1755594656.311] [12:14] [CTL] Couldn't get ExampleOpCredsCAKey from storage: src/controller/ExamplePersistentStorage.cpp:109: CHIP Error 0x000000A0: Value not found in the persisted storage
    [1755594656.312] [12:14] [CTL] Couldn't get ExampleOpCredsICAKey from storage: src/controller/ExamplePersistentStorage.cpp:109: CHIP Error 0x000000A0: Value not found in the persisted storage
    [1755594656.314] [12:14] [CTL] Generating RCAC
    [1755594656.316] [12:14] [CTL] Generating ICAC
    [1755594656.317] [12:14] [CTL] Generating NOC
    [1755594656.318] [12:14] [FP] Validating NOC chain
    [1755594656.321] [12:14] [FP] NOC chain validation successful
    [1755594656.321] [12:14] [FP] Added new fabric at index: 0x1
    [1755594656.321] [12:14] [FP] Assigned compressed fabric ID: 0x7E78B102BF30DEB4, node ID: 0x000000000001B669
    [1755594656.321] [12:14] [TS] Last Known Good Time: 2023-10-14T01:16:48
    [1755594656.321] [12:14] [TS] New proposed Last Known Good Time: 2021-01-01T00:00:00
    [1755594656.321] [12:14] [TS] Retaining current Last Known Good Time
    [1755594656.323] [12:14] [FP] Metadata for Fabric 0x1 persisted to storage.
    [1755594656.326] [12:14] [TS] Committing Last Known Good Time to storage: 2023-10-14T01:16:48
    [1755594656.330] [12:14] [CTL] Joined the fabric at index 1. Fabric ID is 0x0000000000000001 (Compressed Fabric ID: 7E78B102BF30DEB4)
    [1755594656.330] [12:14] [IN] UDP::Init bind&listen port=5550
    [1755594656.330] [12:14] [IN] UDP::Init bound to port=5550
    [1755594656.330] [12:14] [IN] TransportMgr initialized
    [1755594656.391] [12:14] [CTL] Setting thread operational dataset from parameters
    [1755594656.391] [12:14] [CTL] Setting attestation nonce to random value
    [1755594656.391] [12:14] [CTL] Setting CSR nonce to random value
    [1755594656.391] [12:14] [CTL] Commission called for node ID 0x0000000000011820
    [1755594656.404] [12:13] [BLE] BLE removing known devices
    [1755594656.406] [12:13] [BLE] BLE initiating scan
    [1755594656.410] [12:14] [BLE] ChipDeviceScanner has started scanning!
    [1755594659.458] [12:13] [BLE] Device 4D:75:81:D6:F5:62 does not look like a CHIP device.
    [1755594659.465] [12:13] [BLE] Device 37:81:F3:ED:39:A0 does not look like a CHIP device.
    [1755594659.468] [12:13] [BLE] Device 7E:BC:67:10:5A:40 does not look like a CHIP device.
    [1755594659.470] [12:13] [BLE] Device 14:68:86:08:28:91 does not look like a CHIP device.
    [1755594659.477] [12:13] [BLE] Device 41:CB:A9:51:3C:4B does not look like a CHIP device.
    [1755594659.480] [12:13] [BLE] New device scanned: DF:95:98:03:C6:D1
    [1755594659.480] [12:13] [BLE] Device discriminator match. Attempting to connect.
    [1755594659.485] [12:13] [BLE] ChipDeviceScanner has stopped scanning!
    [1755594664.734] [12:13] [DL] ConnectDevice complete
    [1755594664.734] [12:13] [BLE] New device connected: DF:95:98:03:C6:D1
    [1755594666.187] [12:13] [DL] CHIP service found
    [1755594666.187] [12:13] [DL] Valid C1 characteristic found
    [1755594666.188] [12:13] [DL] Valid C2 characteristic found
    [1755594666.188] [12:13] [DL] New BLE connection: conn=0xffff940815d0 device=DF:95:98:03:C6:D1 path=/org/bluez/hci0/dev_DF_95_98_03_C6_D1
    [1755594666.188] [12:14] [DL] HandlePlatformSpecificBLEEvent 16387
    [1755594666.189] [12:14] [DIS] Closing all BLE connections
    [1755594666.189] [12:14] [IN] BleConnectionComplete: endPoint 0xaaaad023cb88
    [1755594666.190] [12:14] [IN] SecureSession[0xffff8c014ef0]: Allocated Type:1 LSID:9665
    [1755594666.191] [12:14] [SC] Assigned local session key ID 9665
    [1755594666.191] [12:14] [EM] <<< [E:39023i S:0 M:191860667] (U) Msg TX from 5F4AFD7B31D11BEF to 0:0000000000000000 [0000] [BLE] --- Type 0000:20 (SecureChannel:PBKDFParamRequest) (B:98)
    [1755594666.191] [12:14] [IN] Message appended to BLE send queue
    [1755594666.191] [12:14] [SC] Sent PBKDF param request [II:500ms AI:300ms AT:4000ms)
    [1755594666.509] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594666.600] [12:14] [DL] HandlePlatformSpecificBLEEvent 16390
    [1755594666.600] [12:14] [BLE] subscribe complete, ep = 0xaaaad023cb88
    [1755594666.600] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594666.601] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594666.601] [12:14] [BLE] peripheral chose BTP version 4; central expected between 4 and 4
    [1755594666.601] [12:14] [BLE] using BTP fragment sizes rx 244 / tx 244.
    [1755594666.601] [12:14] [BLE] local and remote recv window size = 5
    [1755594666.602] [12:14] [IN] BLE EndPoint 0xaaaad023cb88 Connection Complete
    [1755594666.734] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594666.825] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594666.826] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594666.826] [12:14] [EM] >>> [E:39023i S:0 M:202829242] (U) Msg RX from 0:0000000000000000 [0000] to 5F4AFD7B31D11BEF --- Type 0000:21 (SecureChannel:PBKDFParamResponse) (B:154)
    [1755594666.826] [12:14] [EM] Found matching exchange: 39023i, Delegate: 0xffff8c014708
    [1755594666.826] [12:14] [SC] Received PBKDF param response
    [1755594666.826] [12:14] [SC] Peer assigned session ID 1926
    [1755594666.827] [12:14] [SC] Found MRP parameters in the message
    [1755594666.839] [12:14] [EM] <<< [E:39023i S:0 M:191860668] (U) Msg TX from 5F4AFD7B31D11BEF to 0:0000000000000000 [0000] [BLE] --- Type 0000:22 (SecureChannel:PASE_Pake1) (B:92)
    [1755594666.839] [12:14] [SC] Sent spake2p msg1
    [1755594666.914] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594667.005] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594667.005] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594667.005] [12:14] [EM] >>> [E:39023i S:0 M:202829243] (U) Msg RX from 0:0000000000000000 [0000] to 5F4AFD7B31D11BEF --- Type 0000:23 (SecureChannel:PASE_Pake2) (B:127)
    [1755594667.005] [12:14] [EM] Found matching exchange: 39023i, Delegate: 0xffff8c014708
    [1755594667.006] [12:14] [SC] Received spake2p msg2
    [1755594667.010] [12:14] [EM] <<< [E:39023i S:0 M:191860669] (U) Msg TX from 5F4AFD7B31D11BEF to 0:0000000000000000 [0000] [BLE] --- Type 0000:24 (SecureChannel:PASE_Pake3) (B:59)
    [1755594667.011] [12:14] [SC] Sent spake2p msg3
    [1755594667.094] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594667.140] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594667.141] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594667.141] [12:14] [EM] >>> [E:39023i S:0 M:202829244] (U) Msg RX from 0:0000000000000000 [0000] to 5F4AFD7B31D11BEF --- Type 0000:40 (SecureChannel:StatusReport) (B:30)
    [1755594667.141] [12:14] [EM] Found matching exchange: 39023i, Delegate: 0xffff8c014708
    [1755594667.142] [12:14] [SC] SecureSession[0xffff8c014ef0, LSID:9665]: State change 'kEstablishing' --> 'kActive'
    [1755594667.142] [12:14] [IN] SecureSession[0xffff8c014ef0]: Activated - Type:1 LSID:9665
    [1755594667.142] [12:14] [IN] New secure session activated for device <FFFFFFFB00000000, 0>, LSID:9665 PSID:1926!
    [1755594667.142] [12:14] [CTL] Remote device completed SPAKE2+ handshake
    [1755594667.142] [12:14] [TOO] Pairing Success
    [1755594667.142] [12:14] [TOO] PASE establishment successful
    [1755594667.142] [12:14] [CTL] Commissioning stage next step: 'SecurePairing' -> 'ReadCommissioningInfo'
    [1755594667.142] [12:14] [CTL] Performing next commissioning step 'ReadCommissioningInfo'
    [1755594667.142] [12:14] [CTL] Sending read request for commissioning information
    [1755594667.142] [12:14] [DMG] SendReadRequest ReadClient[0xffff8c00ff90]: Sending Read Request
    [1755594667.143] [12:14] [DMG] 0 data version filters provided, 0 not relevant, 0 encoded, 0 skipped due to lack of space
    [1755594667.143] [12:14] [EM] <<< [E:39024i S:9665 M:91372173] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:02 (IM:ReadRequest) (B:131)
    [1755594667.145] [12:14] [DMG] MoveToState ReadClient[0xffff8c00ff90]: Moving to [AwaitingIn]
    [1755594667.145] [12:14] [DL] HandlePlatformSpecificBLEEvent 32792
    [1755594667.274] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594667.368] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594667.368] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594667.548] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594667.548] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594667.728] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594667.728] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594667.814] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594667.814] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594667.815] [12:14] [EM] >>> [E:39024i S:9665 M:242270014] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:05 (IM:ReportData) (B:732)
    [1755594667.815] [12:14] [EM] Found matching exchange: 39024i, Delegate: 0xffff8c00ffa0
    [1755594667.816] [12:14] [DMG] ReportDataMessage =
    [1755594667.816] [12:14] [DMG] {
    [1755594667.816] [12:14] [DMG] 	AttributeReportIBs =
    [1755594667.816] [12:14] [DMG] 	[
    [1755594667.816] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.816] [12:14] [DMG] 		{
    [1755594667.816] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.816] [12:14] [DMG] 			{
    [1755594667.816] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.816] [12:14] [DMG] 				AttributePathIB =
    [1755594667.816] [12:14] [DMG] 				{
    [1755594667.816] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.816] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.816] [12:14] [DMG] 					Attribute = 0x0000_0000,
    [1755594667.816] [12:14] [DMG] 				}
    [1755594667.816] [12:14] [DMG] 					
    [1755594667.817] [12:14] [DMG] 				Data = NULL
    [1755594667.817] [12:14] [DMG] 			},
    [1755594667.817] [12:14] [DMG] 			
    [1755594667.817] [12:14] [DMG] 		},
    [1755594667.817] [12:14] [DMG] 		
    [1755594667.817] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.817] [12:14] [DMG] 		{
    [1755594667.817] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.817] [12:14] [DMG] 			{
    [1755594667.817] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.817] [12:14] [DMG] 				AttributePathIB =
    [1755594667.817] [12:14] [DMG] 				{
    [1755594667.817] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.817] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.817] [12:14] [DMG] 					Attribute = 0x0000_0001,
    [1755594667.817] [12:14] [DMG] 				}
    [1755594667.817] [12:14] [DMG] 					
    [1755594667.817] [12:14] [DMG] 				Data = 0 (unsigned), 
    [1755594667.817] [12:14] [DMG] 			},
    [1755594667.818] [12:14] [DMG] 			
    [1755594667.818] [12:14] [DMG] 		},
    [1755594667.818] [12:14] [DMG] 		
    [1755594667.818] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.818] [12:14] [DMG] 		{
    [1755594667.818] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.818] [12:14] [DMG] 			{
    [1755594667.818] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.818] [12:14] [DMG] 				AttributePathIB =
    [1755594667.818] [12:14] [DMG] 				{
    [1755594667.818] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.818] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.818] [12:14] [DMG] 					Attribute = 0x0000_0002,
    [1755594667.818] [12:14] [DMG] 				}
    [1755594667.818] [12:14] [DMG] 					
    [1755594667.818] [12:14] [DMG] 				Data = 0 (unsigned), 
    [1755594667.818] [12:14] [DMG] 			},
    [1755594667.818] [12:14] [DMG] 			
    [1755594667.818] [12:14] [DMG] 		},
    [1755594667.818] [12:14] [DMG] 		
    [1755594667.818] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.818] [12:14] [DMG] 		{
    [1755594667.819] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.819] [12:14] [DMG] 			{
    [1755594667.819] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.819] [12:14] [DMG] 				AttributePathIB =
    [1755594667.819] [12:14] [DMG] 				{
    [1755594667.819] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.819] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.819] [12:14] [DMG] 					Attribute = 0x0000_0003,
    [1755594667.819] [12:14] [DMG] 				}
    [1755594667.819] [12:14] [DMG] 					
    [1755594667.819] [12:14] [DMG] 				Data = NULL
    [1755594667.819] [12:14] [DMG] 			},
    [1755594667.819] [12:14] [DMG] 			
    [1755594667.819] [12:14] [DMG] 		},
    [1755594667.819] [12:14] [DMG] 		
    [1755594667.819] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.819] [12:14] [DMG] 		{
    [1755594667.819] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.819] [12:14] [DMG] 			{
    [1755594667.819] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.820] [12:14] [DMG] 				AttributePathIB =
    [1755594667.820] [12:14] [DMG] 				{
    [1755594667.820] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.820] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.820] [12:14] [DMG] 					Attribute = 0x0000_0004,
    [1755594667.820] [12:14] [DMG] 				}
    [1755594667.820] [12:14] [DMG] 					
    [1755594667.820] [12:14] [DMG] 				Data = NULL
    [1755594667.820] [12:14] [DMG] 			},
    [1755594667.821] [12:14] [DMG] 			
    [1755594667.821] [12:14] [DMG] 		},
    [1755594667.821] [12:14] [DMG] 		
    [1755594667.821] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.821] [12:14] [DMG] 		{
    [1755594667.821] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.821] [12:14] [DMG] 			{
    [1755594667.821] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.821] [12:14] [DMG] 				AttributePathIB =
    [1755594667.821] [12:14] [DMG] 				{
    [1755594667.821] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.821] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.821] [12:14] [DMG] 					Attribute = 0x0000_0005,
    [1755594667.821] [12:14] [DMG] 				}
    [1755594667.821] [12:14] [DMG] 					
    [1755594667.822] [12:14] [DMG] 				Data = [
    [1755594667.822] [12:14] [DMG] 						
    [1755594667.822] [12:14] [DMG] 					{
    [1755594667.822] [12:14] [DMG] 						0x0 = 0 (signed), 
    [1755594667.822] [12:14] [DMG] 						0x1 = 0 (unsigned), 
    [1755594667.822] [12:14] [DMG] 					},
    [1755594667.822] [12:14] [DMG] 				],
    [1755594667.822] [12:14] [DMG] 			},
    [1755594667.822] [12:14] [DMG] 			
    [1755594667.822] [12:14] [DMG] 		},
    [1755594667.822] [12:14] [DMG] 		
    [1755594667.822] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.822] [12:14] [DMG] 		{
    [1755594667.822] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.822] [12:14] [DMG] 			{
    [1755594667.822] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.822] [12:14] [DMG] 				AttributePathIB =
    [1755594667.823] [12:14] [DMG] 				{
    [1755594667.823] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.823] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.823] [12:14] [DMG] 					Attribute = 0x0000_0006,
    [1755594667.823] [12:14] [DMG] 				}
    [1755594667.823] [12:14] [DMG] 					
    [1755594667.823] [12:14] [DMG] 				Data = [
    [1755594667.823] [12:14] [DMG] 						
    [1755594667.823] [12:14] [DMG] 				],
    [1755594667.823] [12:14] [DMG] 			},
    [1755594667.823] [12:14] [DMG] 			
    [1755594667.823] [12:14] [DMG] 		},
    [1755594667.823] [12:14] [DMG] 		
    [1755594667.823] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.823] [12:14] [DMG] 		{
    [1755594667.823] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.823] [12:14] [DMG] 			{
    [1755594667.823] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.823] [12:14] [DMG] 				AttributePathIB =
    [1755594667.824] [12:14] [DMG] 				{
    [1755594667.824] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.824] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.824] [12:14] [DMG] 					Attribute = 0x0000_0007,
    [1755594667.824] [12:14] [DMG] 				}
    [1755594667.824] [12:14] [DMG] 					
    [1755594667.824] [12:14] [DMG] 				Data = NULL
    [1755594667.824] [12:14] [DMG] 			},
    [1755594667.824] [12:14] [DMG] 			
    [1755594667.824] [12:14] [DMG] 		},
    [1755594667.824] [12:14] [DMG] 		
    [1755594667.824] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.824] [12:14] [DMG] 		{
    [1755594667.824] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.824] [12:14] [DMG] 			{
    [1755594667.824] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.824] [12:14] [DMG] 				AttributePathIB =
    [1755594667.824] [12:14] [DMG] 				{
    [1755594667.824] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.825] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.825] [12:14] [DMG] 					Attribute = 0x0000_0008,
    [1755594667.825] [12:14] [DMG] 				}
    [1755594667.825] [12:14] [DMG] 					
    [1755594667.825] [12:14] [DMG] 				Data = 2 (unsigned), 
    [1755594667.825] [12:14] [DMG] 			},
    [1755594667.825] [12:14] [DMG] 			
    [1755594667.825] [12:14] [DMG] 		},
    [1755594667.825] [12:14] [DMG] 		
    [1755594667.825] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.825] [12:14] [DMG] 		{
    [1755594667.825] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.825] [12:14] [DMG] 			{
    [1755594667.825] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.825] [12:14] [DMG] 				AttributePathIB =
    [1755594667.825] [12:14] [DMG] 				{
    [1755594667.825] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.825] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.825] [12:14] [DMG] 					Attribute = 0x0000_000A,
    [1755594667.825] [12:14] [DMG] 				}
    [1755594667.825] [12:14] [DMG] 					
    [1755594667.825] [12:14] [DMG] 				Data = 2 (unsigned), 
    [1755594667.825] [12:14] [DMG] 			},
    [1755594667.825] [12:14] [DMG] 			
    [1755594667.826] [12:14] [DMG] 		},
    [1755594667.826] [12:14] [DMG] 		
    [1755594667.826] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.826] [12:14] [DMG] 		{
    [1755594667.826] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.826] [12:14] [DMG] 			{
    [1755594667.826] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.826] [12:14] [DMG] 				AttributePathIB =
    [1755594667.826] [12:14] [DMG] 				{
    [1755594667.826] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.826] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.826] [12:14] [DMG] 					Attribute = 0x0000_000B,
    [1755594667.826] [12:14] [DMG] 				}
    [1755594667.826] [12:14] [DMG] 					
    [1755594667.826] [12:14] [DMG] 				Data = 2 (unsigned), 
    [1755594667.826] [12:14] [DMG] 			},
    [1755594667.826] [12:14] [DMG] 			
    [1755594667.826] [12:14] [DMG] 		},
    [1755594667.826] [12:14] [DMG] 		
    [1755594667.826] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.826] [12:14] [DMG] 		{
    [1755594667.826] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.826] [12:14] [DMG] 			{
    [1755594667.826] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.826] [12:14] [DMG] 				AttributePathIB =
    [1755594667.826] [12:14] [DMG] 				{
    [1755594667.826] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.826] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.826] [12:14] [DMG] 					Attribute = 0x0000_FFFC,
    [1755594667.826] [12:14] [DMG] 				}
    [1755594667.826] [12:14] [DMG] 					
    [1755594667.827] [12:14] [DMG] 				Data = 9 (unsigned), 
    [1755594667.827] [12:14] [DMG] 			},
    [1755594667.827] [12:14] [DMG] 			
    [1755594667.827] [12:14] [DMG] 		},
    [1755594667.827] [12:14] [DMG] 		
    [1755594667.827] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.827] [12:14] [DMG] 		{
    [1755594667.827] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.827] [12:14] [DMG] 			{
    [1755594667.827] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.827] [12:14] [DMG] 				AttributePathIB =
    [1755594667.827] [12:14] [DMG] 				{
    [1755594667.827] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.827] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.827] [12:14] [DMG] 					Attribute = 0x0000_FFFD,
    [1755594667.827] [12:14] [DMG] 				}
    [1755594667.827] [12:14] [DMG] 					
    [1755594667.827] [12:14] [DMG] 				Data = 2 (unsigned), 
    [1755594667.827] [12:14] [DMG] 			},
    [1755594667.827] [12:14] [DMG] 			
    [1755594667.827] [12:14] [DMG] 		},
    [1755594667.827] [12:14] [DMG] 		
    [1755594667.827] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.827] [12:14] [DMG] 		{
    [1755594667.827] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.827] [12:14] [DMG] 			{
    [1755594667.827] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.827] [12:14] [DMG] 				AttributePathIB =
    [1755594667.827] [12:14] [DMG] 				{
    [1755594667.827] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.827] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.827] [12:14] [DMG] 					Attribute = 0x0000_FFF8,
    [1755594667.827] [12:14] [DMG] 				}
    [1755594667.827] [12:14] [DMG] 					
    [1755594667.827] [12:14] [DMG] 				Data = [
    [1755594667.828] [12:14] [DMG] 						3 (unsigned), 
    [1755594667.828] [12:14] [DMG] 				],
    [1755594667.828] [12:14] [DMG] 			},
    [1755594667.828] [12:14] [DMG] 			
    [1755594667.828] [12:14] [DMG] 		},
    [1755594667.828] [12:14] [DMG] 		
    [1755594667.828] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.828] [12:14] [DMG] 		{
    [1755594667.828] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.828] [12:14] [DMG] 			{
    [1755594667.828] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.828] [12:14] [DMG] 				AttributePathIB =
    [1755594667.828] [12:14] [DMG] 				{
    [1755594667.828] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.828] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.828] [12:14] [DMG] 					Attribute = 0x0000_FFF9,
    [1755594667.828] [12:14] [DMG] 				}
    [1755594667.828] [12:14] [DMG] 					
    [1755594667.828] [12:14] [DMG] 				Data = [
    [1755594667.828] [12:14] [DMG] 						0 (unsigned), 1 (unsigned), 2 (unsigned), 4 (unsigned), 5 (unsigned), 
    [1755594667.828] [12:14] [DMG] 				],
    [1755594667.828] [12:14] [DMG] 			},
    [1755594667.828] [12:14] [DMG] 			
    [1755594667.828] [12:14] [DMG] 		},
    [1755594667.828] [12:14] [DMG] 		
    [1755594667.828] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.828] [12:14] [DMG] 		{
    [1755594667.828] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.828] [12:14] [DMG] 			{
    [1755594667.828] [12:14] [DMG] 				DataVersion = 0x5bb35f62,
    [1755594667.828] [12:14] [DMG] 				AttributePathIB =
    [1755594667.828] [12:14] [DMG] 				{
    [1755594667.828] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.828] [12:14] [DMG] 					Cluster = 0x38,
    [1755594667.828] [12:14] [DMG] 					Attribute = 0x0000_FFFB,
    [1755594667.828] [12:14] [DMG] 				}
    [1755594667.828] [12:14] [DMG] 					
    [1755594667.829] [12:14] [DMG] 				Data = [
    [1755594667.829] [12:14] [DMG] 						0 (unsigned), 1 (unsigned), 2 (unsigned), 3 (unsigned), 4 (unsigned), 5 (unsigned), 6 (unsigned), 7 (unsigned), 8 (unsigned), 10 (unsigned), 11 (unsigned), 65528 (unsigned), 65529 (unsigned), 65531 (unsigned), 65532 (unsigned), 65533 (unsigned), 
    [1755594667.829] [12:14] [DMG] 				],
    [1755594667.829] [12:14] [DMG] 			},
    [1755594667.829] [12:14] [DMG] 			
    [1755594667.829] [12:14] [DMG] 		},
    [1755594667.829] [12:14] [DMG] 		
    [1755594667.829] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.829] [12:14] [DMG] 		{
    [1755594667.829] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.829] [12:14] [DMG] 			{
    [1755594667.829] [12:14] [DMG] 				DataVersion = 0xcbe387d2,
    [1755594667.829] [12:14] [DMG] 				AttributePathIB =
    [1755594667.829] [12:14] [DMG] 				{
    [1755594667.829] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.829] [12:14] [DMG] 					Cluster = 0x31,
    [1755594667.829] [12:14] [DMG] 					Attribute = 0x0000_0003,
    [1755594667.829] [12:14] [DMG] 				}
    [1755594667.829] [12:14] [DMG] 					
    [1755594667.829] [12:14] [DMG] 				Data = 20 (unsigned), 
    [1755594667.829] [12:14] [DMG] 			},
    [1755594667.829] [12:14] [DMG] 			
    [1755594667.829] [12:14] [DMG] 		},
    [1755594667.829] [12:14] [DMG] 		
    [1755594667.829] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.829] [12:14] [DMG] 		{
    [1755594667.829] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.829] [12:14] [DMG] 			{
    [1755594667.829] [12:14] [DMG] 				DataVersion = 0x530dfb9c,
    [1755594667.829] [12:14] [DMG] 				AttributePathIB =
    [1755594667.829] [12:14] [DMG] 				{
    [1755594667.829] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.830] [12:14] [DMG] 					Cluster = 0x28,
    [1755594667.830] [12:14] [DMG] 					Attribute = 0x0000_0004,
    [1755594667.830] [12:14] [DMG] 				}
    [1755594667.830] [12:14] [DMG] 					
    [1755594667.830] [12:14] [DMG] 				Data = 12289 (unsigned), 
    [1755594667.830] [12:14] [DMG] 			},
    [1755594667.830] [12:14] [DMG] 			
    [1755594667.830] [12:14] [DMG] 		},
    [1755594667.830] [12:14] [DMG] 		
    [1755594667.830] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.830] [12:14] [DMG] 		{
    [1755594667.830] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.830] [12:14] [DMG] 			{
    [1755594667.830] [12:14] [DMG] 				DataVersion = 0x530dfb9c,
    [1755594667.830] [12:14] [DMG] 				AttributePathIB =
    [1755594667.830] [12:14] [DMG] 				{
    [1755594667.830] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.830] [12:14] [DMG] 					Cluster = 0x28,
    [1755594667.830] [12:14] [DMG] 					Attribute = 0x0000_0002,
    [1755594667.830] [12:14] [DMG] 				}
    [1755594667.830] [12:14] [DMG] 					
    [1755594667.830] [12:14] [DMG] 				Data = 5181 (unsigned), 
    [1755594667.830] [12:14] [DMG] 			},
    [1755594667.830] [12:14] [DMG] 			
    [1755594667.830] [12:14] [DMG] 		},
    [1755594667.830] [12:14] [DMG] 		
    [1755594667.830] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.830] [12:14] [DMG] 		{
    [1755594667.830] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.830] [12:14] [DMG] 			{
    [1755594667.830] [12:14] [DMG] 				DataVersion = 0x4e84e63d,
    [1755594667.830] [12:14] [DMG] 				AttributePathIB =
    [1755594667.830] [12:14] [DMG] 				{
    [1755594667.830] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.830] [12:14] [DMG] 					Cluster = 0x30,
    [1755594667.831] [12:14] [DMG] 					Attribute = 0x0000_0003,
    [1755594667.831] [12:14] [DMG] 				}
    [1755594667.831] [12:14] [DMG] 					
    [1755594667.831] [12:14] [DMG] 				Data = 0 (unsigned), 
    [1755594667.831] [12:14] [DMG] 			},
    [1755594667.831] [12:14] [DMG] 			
    [1755594667.831] [12:14] [DMG] 		},
    [1755594667.831] [12:14] [DMG] 		
    [1755594667.831] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.831] [12:14] [DMG] 		{
    [1755594667.831] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.831] [12:14] [DMG] 			{
    [1755594667.831] [12:14] [DMG] 				DataVersion = 0x4e84e63d,
    [1755594667.831] [12:14] [DMG] 				AttributePathIB =
    [1755594667.831] [12:14] [DMG] 				{
    [1755594667.831] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.831] [12:14] [DMG] 					Cluster = 0x30,
    [1755594667.831] [12:14] [DMG] 					Attribute = 0x0000_0002,
    [1755594667.831] [12:14] [DMG] 				}
    [1755594667.831] [12:14] [DMG] 					
    [1755594667.831] [12:14] [DMG] 				Data = 0 (unsigned), 
    [1755594667.831] [12:14] [DMG] 			},
    [1755594667.831] [12:14] [DMG] 			
    [1755594667.831] [12:14] [DMG] 		},
    [1755594667.831] [12:14] [DMG] 		
    [1755594667.831] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.831] [12:14] [DMG] 		{
    [1755594667.831] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.831] [12:14] [DMG] 			{
    [1755594667.831] [12:14] [DMG] 				DataVersion = 0x4e84e63d,
    [1755594667.831] [12:14] [DMG] 				AttributePathIB =
    [1755594667.831] [12:14] [DMG] 				{
    [1755594667.831] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.831] [12:14] [DMG] 					Cluster = 0x30,
    [1755594667.832] [12:14] [DMG] 					Attribute = 0x0000_0001,
    [1755594667.832] [12:14] [DMG] 				}
    [1755594667.832] [12:14] [DMG] 					
    [1755594667.832] [12:14] [DMG] 				Data = 
    [1755594667.832] [12:14] [DMG] 				{
    [1755594667.832] [12:14] [DMG] 					0x0 = 60 (unsigned), 
    [1755594667.832] [12:14] [DMG] 					0x1 = 900 (unsigned), 
    [1755594667.832] [12:14] [DMG] 				},
    [1755594667.832] [12:14] [DMG] 			},
    [1755594667.832] [12:14] [DMG] 			
    [1755594667.832] [12:14] [DMG] 		},
    [1755594667.832] [12:14] [DMG] 		
    [1755594667.832] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.832] [12:14] [DMG] 		{
    [1755594667.832] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.832] [12:14] [DMG] 			{
    [1755594667.832] [12:14] [DMG] 				DataVersion = 0x4e84e63d,
    [1755594667.832] [12:14] [DMG] 				AttributePathIB =
    [1755594667.832] [12:14] [DMG] 				{
    [1755594667.832] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.832] [12:14] [DMG] 					Cluster = 0x30,
    [1755594667.832] [12:14] [DMG] 					Attribute = 0x0000_0000,
    [1755594667.832] [12:14] [DMG] 				}
    [1755594667.832] [12:14] [DMG] 					
    [1755594667.832] [12:14] [DMG] 				Data = 0 (unsigned), 
    [1755594667.832] [12:14] [DMG] 			},
    [1755594667.832] [12:14] [DMG] 			
    [1755594667.832] [12:14] [DMG] 		},
    [1755594667.832] [12:14] [DMG] 		
    [1755594667.832] [12:14] [DMG] 		AttributeReportIB =
    [1755594667.832] [12:14] [DMG] 		{
    [1755594667.832] [12:14] [DMG] 			AttributeDataIB =
    [1755594667.832] [12:14] [DMG] 			{
    [1755594667.832] [12:14] [DMG] 				DataVersion = 0xcbe387d2,
    [1755594667.833] [12:14] [DMG] 				AttributePathIB =
    [1755594667.833] [12:14] [DMG] 				{
    [1755594667.833] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594667.833] [12:14] [DMG] 					Cluster = 0x31,
    [1755594667.833] [12:14] [DMG] 					Attribute = 0x0000_FFFC,
    [1755594667.833] [12:14] [DMG] 				}
    [1755594667.833] [12:14] [DMG] 					
    [1755594667.833] [12:14] [DMG] 				Data = 2 (unsigned), 
    [1755594667.833] [12:14] [DMG] 			},
    [1755594667.833] [12:14] [DMG] 			
    [1755594667.833] [12:14] [DMG] 		},
    [1755594667.833] [12:14] [DMG] 		
    [1755594667.833] [12:14] [DMG] 	],
    [1755594667.833] [12:14] [DMG] 	
    [1755594667.833] [12:14] [DMG] 	SuppressResponse = true, 
    [1755594667.833] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594667.833] [12:14] [DMG] }
    [1755594667.835] [12:14] [CTL] Successfully finished commissioning step 'ReadCommissioningInfo'
    [1755594667.835] [12:14] [CTL] Commissioning stage next step: 'ReadCommissioningInfo' -> 'ReadCommissioningInfo2'
    [1755594667.835] [12:14] [CTL] Performing next commissioning step 'ReadCommissioningInfo2'
    [1755594667.835] [12:14] [DMG] SendReadRequest ReadClient[0xffff8c00ff90]: Sending Read Request
    [1755594667.835] [12:14] [DMG] 0 data version filters provided, 0 not relevant, 0 encoded, 0 skipped due to lack of space
    [1755594667.836] [12:14] [EM] <<< [E:39025i S:9665 M:91372174] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:02 (IM:ReadRequest) (B:106)
    [1755594667.836] [12:14] [DMG] MoveToState ReadClient[0xffff8c00ff90]: Moving to [AwaitingIn]
    [1755594667.904] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594668.039] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594668.131] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594668.131] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594668.132] [12:14] [EM] >>> [E:39025i S:9665 M:242270015] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:05 (IM:ReportData) (B:191)
    [1755594668.132] [12:14] [EM] Found matching exchange: 39025i, Delegate: 0xffff8c00ffa0
    [1755594668.132] [12:14] [DMG] ReportDataMessage =
    [1755594668.132] [12:14] [DMG] {
    [1755594668.132] [12:14] [DMG] 	AttributeReportIBs =
    [1755594668.132] [12:14] [DMG] 	[
    [1755594668.132] [12:14] [DMG] 		AttributeReportIB =
    [1755594668.133] [12:14] [DMG] 		{
    [1755594668.133] [12:14] [DMG] 			AttributeDataIB =
    [1755594668.133] [12:14] [DMG] 			{
    [1755594668.133] [12:14] [DMG] 				DataVersion = 0x858400ea,
    [1755594668.133] [12:14] [DMG] 				AttributePathIB =
    [1755594668.133] [12:14] [DMG] 				{
    [1755594668.133] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594668.133] [12:14] [DMG] 					Cluster = 0x46,
    [1755594668.133] [12:14] [DMG] 					Attribute = 0x0000_0002,
    [1755594668.133] [12:14] [DMG] 				}
    [1755594668.133] [12:14] [DMG] 					
    [1755594668.133] [12:14] [DMG] 				Data = 300 (unsigned), 
    [1755594668.133] [12:14] [DMG] 			},
    [1755594668.133] [12:14] [DMG] 			
    [1755594668.133] [12:14] [DMG] 		},
    [1755594668.134] [12:14] [DMG] 		
    [1755594668.134] [12:14] [DMG] 		AttributeReportIB =
    [1755594668.134] [12:14] [DMG] 		{
    [1755594668.134] [12:14] [DMG] 			AttributeDataIB =
    [1755594668.134] [12:14] [DMG] 			{
    [1755594668.134] [12:14] [DMG] 				DataVersion = 0x858400ea,
    [1755594668.134] [12:14] [DMG] 				AttributePathIB =
    [1755594668.134] [12:14] [DMG] 				{
    [1755594668.134] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594668.134] [12:14] [DMG] 					Cluster = 0x46,
    [1755594668.134] [12:14] [DMG] 					Attribute = 0x0000_0001,
    [1755594668.134] [12:14] [DMG] 				}
    [1755594668.134] [12:14] [DMG] 					
    [1755594668.134] [12:14] [DMG] 				Data = 300 (unsigned), 
    [1755594668.135] [12:14] [DMG] 			},
    [1755594668.135] [12:14] [DMG] 			
    [1755594668.135] [12:14] [DMG] 		},
    [1755594668.135] [12:14] [DMG] 		
    [1755594668.135] [12:14] [DMG] 		AttributeReportIB =
    [1755594668.135] [12:14] [DMG] 		{
    [1755594668.135] [12:14] [DMG] 			AttributeDataIB =
    [1755594668.135] [12:14] [DMG] 			{
    [1755594668.135] [12:14] [DMG] 				DataVersion = 0x858400ea,
    [1755594668.135] [12:14] [DMG] 				AttributePathIB =
    [1755594668.135] [12:14] [DMG] 				{
    [1755594668.135] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594668.135] [12:14] [DMG] 					Cluster = 0x46,
    [1755594668.135] [12:14] [DMG] 					Attribute = 0x0000_0000,
    [1755594668.136] [12:14] [DMG] 				}
    [1755594668.136] [12:14] [DMG] 					
    [1755594668.136] [12:14] [DMG] 				Data = 120 (unsigned), 
    [1755594668.136] [12:14] [DMG] 			},
    [1755594668.136] [12:14] [DMG] 			
    [1755594668.136] [12:14] [DMG] 		},
    [1755594668.136] [12:14] [DMG] 		
    [1755594668.136] [12:14] [DMG] 		AttributeReportIB =
    [1755594668.137] [12:14] [DMG] 		{
    [1755594668.137] [12:14] [DMG] 			AttributeStatusIB =
    [1755594668.137] [12:14] [DMG] 			{
    [1755594668.138] [12:14] [DMG] 				AttributePathIB =
    [1755594668.138] [12:14] [DMG] 				{
    [1755594668.138] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594668.138] [12:14] [DMG] 					Cluster = 0x46,
    [1755594668.138] [12:14] [DMG] 					Attribute = 0x0000_0007,
    [1755594668.138] [12:14] [DMG] 				}
    [1755594668.138] [12:14] [DMG] 					
    [1755594668.138] [12:14] [DMG] 				StatusIB =
    [1755594668.138] [12:14] [DMG] 				{
    [1755594668.138] [12:14] [DMG] 					status = 0x86 (UNSUPPORTED_ATTRIBUTE),
    [1755594668.138] [12:14] [DMG] 				},
    [1755594668.139] [12:14] [DMG] 				
    [1755594668.139] [12:14] [DMG] 			},
    [1755594668.139] [12:14] [DMG] 			
    [1755594668.139] [12:14] [DMG] 		},
    [1755594668.139] [12:14] [DMG] 		
    [1755594668.139] [12:14] [DMG] 		AttributeReportIB =
    [1755594668.139] [12:14] [DMG] 		{
    [1755594668.139] [12:14] [DMG] 			AttributeStatusIB =
    [1755594668.139] [12:14] [DMG] 			{
    [1755594668.139] [12:14] [DMG] 				AttributePathIB =
    [1755594668.139] [12:14] [DMG] 				{
    [1755594668.139] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594668.140] [12:14] [DMG] 					Cluster = 0x46,
    [1755594668.140] [12:14] [DMG] 					Attribute = 0x0000_0006,
    [1755594668.140] [12:14] [DMG] 				}
    [1755594668.140] [12:14] [DMG] 					
    [1755594668.140] [12:14] [DMG] 				StatusIB =
    [1755594668.140] [12:14] [DMG] 				{
    [1755594668.140] [12:14] [DMG] 					status = 0x86 (UNSUPPORTED_ATTRIBUTE),
    [1755594668.140] [12:14] [DMG] 				},
    [1755594668.140] [12:14] [DMG] 				
    [1755594668.140] [12:14] [DMG] 			},
    [1755594668.140] [12:14] [DMG] 			
    [1755594668.140] [12:14] [DMG] 		},
    [1755594668.140] [12:14] [DMG] 		
    [1755594668.140] [12:14] [DMG] 		AttributeReportIB =
    [1755594668.140] [12:14] [DMG] 		{
    [1755594668.140] [12:14] [DMG] 			AttributeDataIB =
    [1755594668.140] [12:14] [DMG] 			{
    [1755594668.140] [12:14] [DMG] 				DataVersion = 0x4e84e63d,
    [1755594668.140] [12:14] [DMG] 				AttributePathIB =
    [1755594668.140] [12:14] [DMG] 				{
    [1755594668.140] [12:14] [DMG] 					Endpoint = 0x0,
    [1755594668.140] [12:14] [DMG] 					Cluster = 0x30,
    [1755594668.141] [12:14] [DMG] 					Attribute = 0x0000_0004,
    [1755594668.141] [12:14] [DMG] 				}
    [1755594668.141] [12:14] [DMG] 					
    [1755594668.141] [12:14] [DMG] 				Data = true, 
    [1755594668.141] [12:14] [DMG] 			},
    [1755594668.141] [12:14] [DMG] 			
    [1755594668.141] [12:14] [DMG] 		},
    [1755594668.141] [12:14] [DMG] 		
    [1755594668.141] [12:14] [DMG] 	],
    [1755594668.141] [12:14] [DMG] 	
    [1755594668.141] [12:14] [DMG] 	SuppressResponse = true, 
    [1755594668.141] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594668.141] [12:14] [DMG] }
    [1755594668.142] [12:14] [CTL] ----- NetworkCommissioning Features: has Thread. endpointid = 0
    [1755594668.142] [12:14] [SVR] OnReadCommissioningInfo - vendorId=0x143D productId=0x3001
    [1755594668.142] [12:14] [SVR] OnReadCommissioningInfo ICD - IdleModeDuration=0 activeModeDuration=0 activeModeThreshold=0
    [1755594668.142] [12:14] [CTL] Successfully finished commissioning step 'ReadCommissioningInfo2'
    [1755594668.142] [12:14] [CTL] Commissioning stage next step: 'ReadCommissioningInfo2' -> 'ArmFailSafe'
    [1755594668.142] [12:14] [CTL] Performing next commissioning step 'ArmFailSafe'
    [1755594668.142] [12:14] [CTL] Arming failsafe (60 seconds)
    [1755594668.142] [12:14] [DMG] ICR moving to [AddingComm]
    [1755594668.142] [12:14] [DMG] ICR moving to [AddedComma]
    [1755594668.142] [12:14] [EM] <<< [E:39026i S:9665 M:91372175] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:08 (IM:InvokeCommandRequest) (B:65)
    [1755594668.143] [12:14] [DMG] ICR moving to [AwaitingRe]
    [1755594668.219] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594668.267] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594668.267] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594668.267] [12:14] [EM] >>> [E:39026i S:9665 M:242270016] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:09 (IM:InvokeCommandResponse) (B:66)
    [1755594668.267] [12:14] [EM] Found matching exchange: 39026i, Delegate: 0xffff8c007398
    [1755594668.268] [12:14] [DMG] ICR moving to [ResponseRe]
    [1755594668.268] [12:14] [DMG] InvokeResponseMessage =
    [1755594668.268] [12:14] [DMG] {
    [1755594668.268] [12:14] [DMG] 	suppressResponse = false, 
    [1755594668.268] [12:14] [DMG] 	InvokeResponseIBs =
    [1755594668.268] [12:14] [DMG] 	[
    [1755594668.268] [12:14] [DMG] 		InvokeResponseIB =
    [1755594668.268] [12:14] [DMG] 		{
    [1755594668.268] [12:14] [DMG] 			CommandDataIB =
    [1755594668.268] [12:14] [DMG] 			{
    [1755594668.268] [12:14] [DMG] 				CommandPathIB =
    [1755594668.268] [12:14] [DMG] 				{
    [1755594668.269] [12:14] [DMG] 					EndpointId = 0x0,
    [1755594668.269] [12:14] [DMG] 					ClusterId = 0x30,
    [1755594668.269] [12:14] [DMG] 					CommandId = 0x1,
    [1755594668.269] [12:14] [DMG] 				},
    [1755594668.269] [12:14] [DMG] 				
    [1755594668.269] [12:14] [DMG] 				CommandFields = 
    [1755594668.269] [12:14] [DMG] 				{
    [1755594668.269] [12:14] [DMG] 					0x0 = 0 (unsigned), 
    [1755594668.269] [12:14] [DMG] 					0x1 = "" (0 chars), 
    [1755594668.269] [12:14] [DMG] 				},
    [1755594668.270] [12:14] [DMG] 			},
    [1755594668.270] [12:14] [DMG] 			
    [1755594668.270] [12:14] [DMG] 		},
    [1755594668.270] [12:14] [DMG] 		
    [1755594668.270] [12:14] [DMG] 	],
    [1755594668.270] [12:14] [DMG] 	
    [1755594668.270] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594668.270] [12:14] [DMG] },
    [1755594668.271] [12:14] [DMG] Received Command Response Data, Endpoint=0 Cluster=0x0000_0030 Command=0x0000_0001
    [1755594668.271] [12:14] [CTL] Received ArmFailSafe response errorCode=0
    [1755594668.271] [12:14] [CTL] Successfully finished commissioning step 'ArmFailSafe'
    [1755594668.271] [12:14] [CTL] Commissioning stage next step: 'ArmFailSafe' -> 'ConfigRegulatory'
    [1755594668.271] [12:14] [CTL] Performing next commissioning step 'ConfigRegulatory'
    [1755594668.271] [12:14] [CTL] Setting Regulatory Config
    [1755594668.271] [12:14] [CTL] Device does not support configurable regulatory location
    [1755594668.271] [12:14] [DMG] ICR moving to [AddingComm]
    [1755594668.272] [12:14] [DMG] ICR moving to [AddedComma]
    [1755594668.272] [12:14] [EM] <<< [E:39027i S:9665 M:91372176] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:08 (IM:InvokeCommandRequest) (B:70)
    [1755594668.273] [12:14] [DMG] ICR moving to [AwaitingRe]
    [1755594668.273] [12:14] [DMG] ICR moving to [AwaitingDe]
    [1755594668.356] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594668.401] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594668.402] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594668.402] [12:14] [EM] >>> [E:39027i S:9665 M:242270017] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:09 (IM:InvokeCommandResponse) (B:66)
    [1755594668.402] [12:14] [EM] Found matching exchange: 39027i, Delegate: 0xffff8c01a178
    [1755594668.402] [12:14] [DMG] ICR moving to [ResponseRe]
    [1755594668.402] [12:14] [DMG] InvokeResponseMessage =
    [1755594668.402] [12:14] [DMG] {
    [1755594668.402] [12:14] [DMG] 	suppressResponse = false, 
    [1755594668.402] [12:14] [DMG] 	InvokeResponseIBs =
    [1755594668.403] [12:14] [DMG] 	[
    [1755594668.403] [12:14] [DMG] 		InvokeResponseIB =
    [1755594668.403] [12:14] [DMG] 		{
    [1755594668.403] [12:14] [DMG] 			CommandDataIB =
    [1755594668.403] [12:14] [DMG] 			{
    [1755594668.403] [12:14] [DMG] 				CommandPathIB =
    [1755594668.403] [12:14] [DMG] 				{
    [1755594668.403] [12:14] [DMG] 					EndpointId = 0x0,
    [1755594668.403] [12:14] [DMG] 					ClusterId = 0x30,
    [1755594668.403] [12:14] [DMG] 					CommandId = 0x3,
    [1755594668.403] [12:14] [DMG] 				},
    [1755594668.403] [12:14] [DMG] 				
    [1755594668.404] [12:14] [DMG] 				CommandFields = 
    [1755594668.404] [12:14] [DMG] 				{
    [1755594668.404] [12:14] [DMG] 					0x0 = 0 (unsigned), 
    [1755594668.404] [12:14] [DMG] 					0x1 = "" (0 chars), 
    [1755594668.404] [12:14] [DMG] 				},
    [1755594668.404] [12:14] [DMG] 			},
    [1755594668.404] [12:14] [DMG] 			
    [1755594668.405] [12:14] [DMG] 		},
    [1755594668.405] [12:14] [DMG] 		
    [1755594668.405] [12:14] [DMG] 	],
    [1755594668.405] [12:14] [DMG] 	
    [1755594668.405] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594668.405] [12:14] [DMG] },
    [1755594668.405] [12:14] [DMG] Received Command Response Data, Endpoint=0 Cluster=0x0000_0030 Command=0x0000_0003
    [1755594668.405] [12:14] [CTL] Received SetRegulatoryConfig response errorCode=0
    [1755594668.405] [12:14] [CTL] Successfully finished commissioning step 'ConfigRegulatory'
    [1755594668.406] [12:14] [CTL] Commissioning stage next step: 'ConfigRegulatory' -> 'ConfigureTCAcknowledgments'
    [1755594668.406] [12:14] [CTL] Performing next commissioning step 'ConfigureTCAcknowledgments'
    [1755594668.406] [12:14] [CTL] Setting Terms and Conditions
    [1755594668.406] [12:14] [CTL] Setting Terms and Conditions: Skipped
    [1755594668.406] [12:14] [CTL] Successfully finished commissioning step 'ConfigureTCAcknowledgments'
    [1755594668.406] [12:14] [CTL] Commissioning stage next step: 'ConfigureTCAcknowledgments' -> 'ConfigureUTCTime'
    [1755594668.406] [12:14] [CTL] Performing next commissioning step 'ConfigureUTCTime'
    [1755594668.406] [12:14] [DMG] ICR moving to [AddingComm]
    [1755594668.406] [12:14] [DMG] ICR moving to [AddedComma]
    [1755594668.406] [12:14] [EM] <<< [E:39028i S:9665 M:91372177] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:08 (IM:InvokeCommandRequest) (B:72)
    [1755594668.408] [12:14] [DMG] ICR moving to [AwaitingRe]
    [1755594668.408] [12:14] [DMG] ICR moving to [AwaitingDe]
    [1755594668.489] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594668.580] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594668.580] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594668.581] [12:14] [EM] >>> [E:39028i S:9665 M:242270018] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:09 (IM:InvokeCommandResponse) (B:63)
    [1755594668.581] [12:14] [EM] Found matching exchange: 39028i, Delegate: 0xffff8c007398
    [1755594668.581] [12:14] [DMG] ICR moving to [ResponseRe]
    [1755594668.581] [12:14] [DMG] InvokeResponseMessage =
    [1755594668.581] [12:14] [DMG] {
    [1755594668.581] [12:14] [DMG] 	suppressResponse = false, 
    [1755594668.581] [12:14] [DMG] 	InvokeResponseIBs =
    [1755594668.581] [12:14] [DMG] 	[
    [1755594668.581] [12:14] [DMG] 		InvokeResponseIB =
    [1755594668.581] [12:14] [DMG] 		{
    [1755594668.581] [12:14] [DMG] 			CommandStatusIB =
    [1755594668.581] [12:14] [DMG] 			{
    [1755594668.581] [12:14] [DMG] 				CommandPathIB =
    [1755594668.581] [12:14] [DMG] 				{
    [1755594668.581] [12:14] [DMG] 					EndpointId = 0x0,
    [1755594668.581] [12:14] [DMG] 					ClusterId = 0x38,
    [1755594668.581] [12:14] [DMG] 					CommandId = 0x0,
    [1755594668.581] [12:14] [DMG] 				},
    [1755594668.581] [12:14] [DMG] 				
    [1755594668.581] [12:14] [DMG] 				StatusIB =
    [1755594668.581] [12:14] [DMG] 				{
    [1755594668.581] [12:14] [DMG] 					status = 0x00 (SUCCESS),
    [1755594668.581] [12:14] [DMG] 				},
    [1755594668.581] [12:14] [DMG] 				
    [1755594668.581] [12:14] [DMG] 			},
    [1755594668.581] [12:14] [DMG] 			
    [1755594668.581] [12:14] [DMG] 		},
    [1755594668.581] [12:14] [DMG] 		
    [1755594668.581] [12:14] [DMG] 	],
    [1755594668.581] [12:14] [DMG] 	
    [1755594668.582] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594668.582] [12:14] [DMG] },
    [1755594668.582] [12:14] [DMG] Received Command Response Status for Endpoint=0 Cluster=0x0000_0038 Command=0x0000_0000 Status=0x0
    [1755594668.582] [12:14] [CTL] Successfully finished commissioning step 'ConfigureUTCTime'
    [1755594668.582] [12:14] [CTL] Commissioning stage next step: 'ConfigureUTCTime' -> 'SendPAICertificateRequest'
    [1755594668.582] [12:14] [CTL] Performing next commissioning step 'SendPAICertificateRequest'
    [1755594668.582] [12:14] [CTL] Sending request for PAI certificate
    [1755594668.582] [12:14] [CTL] Sending Certificate Chain request to 0xffff8c0146b0 device
    [1755594668.582] [12:14] [DMG] ICR moving to [AddingComm]
    [1755594668.582] [12:14] [DMG] ICR moving to [AddedComma]
    [1755594668.582] [12:14] [EM] <<< [E:39029i S:9665 M:91372178] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:08 (IM:InvokeCommandRequest) (B:62)
    [1755594668.583] [12:14] [DMG] ICR moving to [AwaitingRe]
    [1755594668.583] [12:14] [DMG] ICR moving to [AwaitingDe]
    [1755594668.670] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594668.851] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594668.851] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594668.987] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594668.987] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594669.075] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594669.075] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594669.075] [12:14] [EM] >>> [E:39029i S:9665 M:242270019] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:09 (IM:InvokeCommandResponse) (B:489)
    [1755594669.075] [12:14] [EM] Found matching exchange: 39029i, Delegate: 0xffff8c01a178
    [1755594669.076] [12:14] [DMG] ICR moving to [ResponseRe]
    [1755594669.076] [12:14] [DMG] InvokeResponseMessage =
    [1755594669.076] [12:14] [DMG] {
    [1755594669.076] [12:14] [DMG] 	suppressResponse = false, 
    [1755594669.076] [12:14] [DMG] 	InvokeResponseIBs =
    [1755594669.076] [12:14] [DMG] 	[
    [1755594669.076] [12:14] [DMG] 		InvokeResponseIB =
    [1755594669.076] [12:14] [DMG] 		{
    [1755594669.076] [12:14] [DMG] 			CommandDataIB =
    [1755594669.076] [12:14] [DMG] 			{
    [1755594669.076] [12:14] [DMG] 				CommandPathIB =
    [1755594669.076] [12:14] [DMG] 				{
    [1755594669.076] [12:14] [DMG] 					EndpointId = 0x0,
    [1755594669.076] [12:14] [DMG] 					ClusterId = 0x3e,
    [1755594669.076] [12:14] [DMG] 					CommandId = 0x3,
    [1755594669.076] [12:14] [DMG] 				},
    [1755594669.076] [12:14] [DMG] 				
    [1755594669.076] [12:14] [DMG] 				CommandFields = 
    [1755594669.076] [12:14] [DMG] 				{
    [1755594669.076] [12:14] [DMG] 					0x0 = [
    [1755594669.077] [12:14] [DMG] 							0x30, 0x82, 0x01, 0xa5, 0x30, 0x82, 0x01, 0x4c, 0xa0, 0x03, 0x02, 0x01, 0x02, 0x02, 0x08, 0x6b, 0xa7, 0x1f, 0x3e, 0xda, 0x3f, 0xb0, 0xc8, 0x30, 0x0a, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x04, 0x03, 0x02, 0x30, 0x19, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0e, 0x43, 0x68, 0x61, 0x6d, 0x70, 0x4f, 0x6e, 0x20, 0x50, 0x41, 0x41, 0x20, 0x43, 0x4e, 0x30, 0x20, 0x17, 0x0d, 0x32, 0x31, 0x30, 0x36, 0x32, 0x38, 0x31, 0x34, 0x32, 0x33, 0x34, 0x33, 0x5a, 0x18, 0x0f, 0x39, 0x39, 0x39, 0x39, 0x31, 0x32, 0x33, 0x31, 0x32, 0x33, 0x35, 0x39, 0x35, 0x39, 0x5a, 0x30, 0x2f, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0e, 0x43, 0x68, 0x61, 0x6d, 0x70, 0x4f, 0x6e, 0x20, 0x50, 0x41, 0x49, 0x20, 0x43, 0x4e, 0x31, 0x14, 0x30, 0x12, 0x06, 0x0a, 0x2b, 0x06, 0x01, 0x04, 0x01, 0x82, 0xa2, 0x7c, 0x02, 0x01, 0x0c, 0x04, 0x31, 0x34, 0x33, 0x44, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x1e, 0x9e, 0xad, 0xd2, 0x3b, 0x8a, 0xfc, 0x10, 0x37, 0x5b, 0x1a, 0x82, 0x7c, 0x3f, 0x52, 0x8d, 0x7e, 0x0d, 0xcc, 0x72, 0xff, 0x59, 0x87, 0xda, 0x99, 0x83, 0x65, 0x59, 0x52, 0x0d, 0x75, 0x27, 0xa6, 0xb9, 0xa5, 0x06, 0xa0, 0x21, 0x96, 0x1e, 0xb7, 0xfe, 0x58, 0x21, 0x2a, 0x9a, 0x17, 0xf0, 0xe7, 0xe8, 0xb5, 0xc9, 0xad, 0xa2, 0x20, 0xef, 0x98, 0x81, 0x92, 0x0e, 0x48, 0xa3, 0x58, 0xfc, 0xa3, 0x66, 0x30, 0x64, 0x30, 0x12, 0x06, 0x03, 0x55, 0x1d, 0x13, 0x01, 0x01, 0xff, 0x04, 0x08, 0x30, 0x06, 0x01, 0x01, 0xff, 0x02, 0x01, 0x00, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x1d, 0x0f, 0x01, 0x01, 0xff, 0x04, 0x04, 0x03, 0x02, 0x01, 0x06, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x1d, 0x0e, 0x
    [1755594669.077] [12:14] [DMG] 					] (425 bytes)
    [1755594669.077] [12:14] [DMG] 				},
    [1755594669.077] [12:14] [DMG] 			},
    [1755594669.077] [12:14] [DMG] 			
    [1755594669.077] [12:14] [DMG] 		},
    [1755594669.077] [12:14] [DMG] 		
    [1755594669.077] [12:14] [DMG] 	],
    [1755594669.077] [12:14] [DMG] 	
    [1755594669.077] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594669.077] [12:14] [DMG] },
    [1755594669.077] [12:14] [DMG] Received Command Response Data, Endpoint=0 Cluster=0x0000_003E Command=0x0000_0003
    [1755594669.077] [12:14] [CTL] Received certificate chain from the device
    [1755594669.077] [12:14] [CTL] Successfully finished commissioning step 'SendPAICertificateRequest'
    [1755594669.077] [12:14] [CTL] Commissioning stage next step: 'SendPAICertificateRequest' -> 'SendDACCertificateRequest'
    [1755594669.077] [12:14] [CTL] Performing next commissioning step 'SendDACCertificateRequest'
    [1755594669.077] [12:14] [CTL] Sending request for DAC certificate
    [1755594669.077] [12:14] [CTL] Sending Certificate Chain request to 0xffff8c0146b0 device
    [1755594669.077] [12:14] [DMG] ICR moving to [AddingComm]
    [1755594669.077] [12:14] [DMG] ICR moving to [AddedComma]
    [1755594669.078] [12:14] [EM] <<< [E:39030i S:9665 M:91372179] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:08 (IM:InvokeCommandRequest) (B:62)
    [1755594669.079] [12:14] [DMG] ICR moving to [AwaitingRe]
    [1755594669.079] [12:14] [DMG] ICR moving to [AwaitingDe]
    [1755594669.164] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594669.258] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594669.258] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594669.393] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594669.393] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594669.482] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594669.483] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594669.483] [12:14] [EM] >>> [E:39030i S:9665 M:242270020] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:09 (IM:InvokeCommandResponse) (B:526)
    [1755594669.486] [12:14] [EM] Found matching exchange: 39030i, Delegate: 0xffff8c007398
    [1755594669.486] [12:14] [DMG] ICR moving to [ResponseRe]
    [1755594669.486] [12:14] [DMG] InvokeResponseMessage =
    [1755594669.486] [12:14] [DMG] {
    [1755594669.486] [12:14] [DMG] 	suppressResponse = false, 
    [1755594669.486] [12:14] [DMG] 	InvokeResponseIBs =
    [1755594669.486] [12:14] [DMG] 	[
    [1755594669.486] [12:14] [DMG] 		InvokeResponseIB =
    [1755594669.486] [12:14] [DMG] 		{
    [1755594669.487] [12:14] [DMG] 			CommandDataIB =
    [1755594669.487] [12:14] [DMG] 			{
    [1755594669.487] [12:14] [DMG] 				CommandPathIB =
    [1755594669.487] [12:14] [DMG] 				{
    [1755594669.487] [12:14] [DMG] 					EndpointId = 0x0,
    [1755594669.487] [12:14] [DMG] 					ClusterId = 0x3e,
    [1755594669.487] [12:14] [DMG] 					CommandId = 0x3,
    [1755594669.487] [12:14] [DMG] 				},
    [1755594669.487] [12:14] [DMG] 				
    [1755594669.487] [12:14] [DMG] 				CommandFields = 
    [1755594669.487] [12:14] [DMG] 				{
    [1755594669.487] [12:14] [DMG] 					0x0 = [
    [1755594669.487] [12:14] [DMG] 							0x30, 0x82, 0x01, 0xca, 0x30, 0x82, 0x01, 0x70, 0xa0, 0x03, 0x02, 0x01, 0x02, 0x02, 0x08, 0x5e, 0x99, 0xd4, 0xcd, 0x98, 0xc3, 0x41, 0x39, 0x30, 0x0a, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x04, 0x03, 0x02, 0x30, 0x2f, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0e, 0x43, 0x68, 0x61, 0x6d, 0x70, 0x4f, 0x6e, 0x20, 0x50, 0x41, 0x49, 0x20, 0x43, 0x4e, 0x31, 0x14, 0x30, 0x12, 0x06, 0x0a, 0x2b, 0x06, 0x01, 0x04, 0x01, 0x82, 0xa2, 0x7c, 0x02, 0x01, 0x0c, 0x04, 0x31, 0x34, 0x33, 0x44, 0x30, 0x1e, 0x17, 0x0d, 0x32, 0x31, 0x30, 0x36, 0x32, 0x38, 0x31, 0x34, 0x32, 0x33, 0x34, 0x33, 0x5a, 0x17, 0x0d, 0x34, 0x31, 0x30, 0x36, 0x32, 0x38, 0x31, 0x34, 0x32, 0x33, 0x34, 0x32, 0x5a, 0x30, 0x45, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0e, 0x43, 0x68, 0x61, 0x6d, 0x70, 0x4f, 0x6e, 0x20, 0x44, 0x41, 0x43, 0x20, 0x30, 0x31, 0x31, 0x14, 0x30, 0x12, 0x06, 0x0a, 0x2b, 0x06, 0x01, 0x04, 0x01, 0x82, 0xa2, 0x7c, 0x02, 0x01, 0x0c, 0x04, 0x31, 0x34, 0x33, 0x44, 0x31, 0x14, 0x30, 0x12, 0x06, 0x0a, 0x2b, 0x06, 0x01, 0x04, 0x01, 0x82, 0xa2, 0x7c, 0x02, 0x02, 0x0c, 0x04, 0x33, 0x30, 0x30, 0x31, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x7a, 0x86, 0xc2, 0x0b, 0xff, 0xbb, 0xef, 0x2a, 0xa7, 0x09, 0x56, 0x3e, 0xf4, 0x55, 0x09, 0xce, 0x89, 0xbb, 0xe5, 0xfa, 0x00, 0xed, 0x05, 0xa0, 0x6b, 0xd6, 0x9d, 0xbf, 0xcc, 0xe0, 0x04, 0xeb, 0x04, 0x45, 0x20, 0x14, 0xce, 0x93, 0xe8, 0x24, 0x0a, 0xfa, 0x07, 0x31, 0x1e, 0x8c, 0x32, 0x31, 0x51, 0xcb, 0x79, 0x0b, 0xbb, 0xbf, 0xb8, 0x38, 0x5c, 0x29, 0x47, 0xfa, 0x4f, 0xad, 0xfd, 0x1c, 0xa3, 0x60, 0x30, 0x5e, 0x30, 0x
    [1755594669.487] [12:14] [DMG] 					] (462 bytes)
    [1755594669.487] [12:14] [DMG] 				},
    [1755594669.487] [12:14] [DMG] 			},
    [1755594669.487] [12:14] [DMG] 			
    [1755594669.487] [12:14] [DMG] 		},
    [1755594669.487] [12:14] [DMG] 		
    [1755594669.487] [12:14] [DMG] 	],
    [1755594669.487] [12:14] [DMG] 	
    [1755594669.487] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594669.487] [12:14] [DMG] },
    [1755594669.488] [12:14] [DMG] Received Command Response Data, Endpoint=0 Cluster=0x0000_003E Command=0x0000_0003
    [1755594669.488] [12:14] [CTL] Received certificate chain from the device
    [1755594669.488] [12:14] [CTL] Successfully finished commissioning step 'SendDACCertificateRequest'
    [1755594669.488] [12:14] [CTL] Commissioning stage next step: 'SendDACCertificateRequest' -> 'SendAttestationRequest'
    [1755594669.488] [12:14] [CTL] Performing next commissioning step 'SendAttestationRequest'
    [1755594669.488] [12:14] [CTL] Sending Attestation Request to the device.
    [1755594669.488] [12:14] [CTL] Sending Attestation request to 0xffff8c0146b0 device
    [1755594669.488] [12:14] [DMG] ICR moving to [AddingComm]
    [1755594669.488] [12:14] [DMG] ICR moving to [AddedComma]
    [1755594669.488] [12:14] [EM] <<< [E:39031i S:9665 M:91372180] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:08 (IM:InvokeCommandRequest) (B:94)
    [1755594669.489] [12:14] [DMG] ICR moving to [AwaitingRe]
    [1755594669.489] [12:14] [CTL] Sent Attestation request, waiting for the Attestation Information
    [1755594669.489] [12:14] [DMG] ICR moving to [AwaitingDe]
    [1755594669.569] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594669.663] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594669.663] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594669.885] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594669.885] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594670.023] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594670.023] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594670.023] [12:14] [EM] >>> [E:39031i S:9665 M:242270021] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:09 (IM:InvokeCommandResponse) (B:716)
    [1755594670.023] [12:14] [EM] Found matching exchange: 39031i, Delegate: 0xffff8c01a178
    [1755594670.023] [12:14] [DMG] ICR moving to [ResponseRe]
    [1755594670.024] [12:14] [DMG] InvokeResponseMessage =
    [1755594670.024] [12:14] [DMG] {
    [1755594670.024] [12:14] [DMG] 	suppressResponse = false, 
    [1755594670.024] [12:14] [DMG] 	InvokeResponseIBs =
    [1755594670.024] [12:14] [DMG] 	[
    [1755594670.024] [12:14] [DMG] 		InvokeResponseIB =
    [1755594670.024] [12:14] [DMG] 		{
    [1755594670.024] [12:14] [DMG] 			CommandDataIB =
    [1755594670.024] [12:14] [DMG] 			{
    [1755594670.024] [12:14] [DMG] 				CommandPathIB =
    [1755594670.024] [12:14] [DMG] 				{
    [1755594670.024] [12:14] [DMG] 					EndpointId = 0x0,
    [1755594670.024] [12:14] [DMG] 					ClusterId = 0x3e,
    [1755594670.024] [12:14] [DMG] 					CommandId = 0x1,
    [1755594670.024] [12:14] [DMG] 				},
    [1755594670.025] [12:14] [DMG] 				
    [1755594670.025] [12:14] [DMG] 				CommandFields = 
    [1755594670.025] [12:14] [DMG] 				{
    [1755594670.025] [12:14] [DMG] 					0x0 = [
    [1755594670.025] [12:14] [DMG] 							0x15, 0x31, 0x01, 0x1d, 0x02, 0x30, 0x82, 0x02, 0x19, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x07, 0x02, 0xa0, 0x82, 0x02, 0x0a, 0x30, 0x82, 0x02, 0x06, 0x02, 0x01, 0x03, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x30, 0x82, 0x01, 0x71, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x07, 0x01, 0xa0, 0x82, 0x01, 0x62, 0x04, 0x82, 0x01, 0x5e, 0x15, 0x24, 0x00, 0x01, 0x25, 0x01, 0xf1, 0xff, 0x36, 0x02, 0x05, 0x00, 0x80, 0x05, 0x01, 0x80, 0x05, 0x02, 0x80, 0x05, 0x03, 0x80, 0x05, 0x04, 0x80, 0x05, 0x05, 0x80, 0x05, 0x06, 0x80, 0x05, 0x07, 0x80, 0x05, 0x08, 0x80, 0x05, 0x09, 0x80, 0x05, 0x0a, 0x80, 0x05, 0x0b, 0x80, 0x05, 0x0c, 0x80, 0x05, 0x0d, 0x80, 0x05, 0x0e, 0x80, 0x05, 0x0f, 0x80, 0x05, 0x10, 0x80, 0x05, 0x11, 0x80, 0x05, 0x12, 0x80, 0x05, 0x13, 0x80, 0x05, 0x14, 0x80, 0x05, 0x15, 0x80, 0x05, 0x16, 0x80, 0x05, 0x17, 0x80, 0x05, 0x18, 0x80, 0x05, 0x19, 0x80, 0x05, 0x1a, 0x80, 0x05, 0x1b, 0x80, 0x05, 0x1c, 0x80, 0x05, 0x1d, 0x80, 0x05, 0x1e, 0x80, 0x05, 0x1f, 0x80, 0x05, 0x20, 0x80, 0x05, 0x21, 0x80, 0x05, 0x22, 0x80, 0x05, 0x23, 0x80, 0x05, 0x24, 0x80, 0x05, 0x25, 0x80, 0x05, 0x26, 0x80, 0x05, 0x27, 0x80, 0x05, 0x28, 0x80, 0x05, 0x29, 0x80, 0x05, 0x2a, 0x80, 0x05, 0x2b, 0x80, 0x05, 0x2c, 0x80, 0x05, 0x2d, 0x80, 0x05, 0x2e, 0x80, 0x05, 0x2f, 0x80, 0x05, 0x30, 0x80, 0x05, 0x31, 0x80, 0x05, 0x32, 0x80, 0x05, 0x33, 0x80, 0x05, 0x34, 0x80, 0x05, 0x35, 0x80, 0x05, 0x36, 0x80, 0x05, 0x37, 0x80, 0x05, 0x38, 0x80, 0x05, 0x39, 0x80, 0x05, 0x3a, 0x80, 0x05, 0x3b, 0x80, 0x05, 0x3c, 0x80, 0x05, 0x3d, 0x80, 0x05, 0x3e, 0x80, 0x05, 0x3f, 0x80, 0x05, 0x40, 0x80, 0x05, 0x41, 0x80, 0x05, 0x42, 0x80, 0x05, 0x43, 0x80, 0x
    [1755594670.025] [12:14] [DMG] 					] (585 bytes)
    [1755594670.025] [12:14] [DMG] 					0x1 = [
    [1755594670.025] [12:14] [DMG] 							0x34, 0x68, 0xc9, 0x01, 0x15, 0xc7, 0xd9, 0x06, 0x31, 0x72, 0xfe, 0xff, 0x5a, 0x3d, 0x39, 0x47, 0x88, 0x40, 0xee, 0x4f, 0x1a, 0xa8, 0x8b, 0x08, 0xc6, 0x09, 0x9d, 0x53, 0x86, 0x28, 0x66, 0xf8, 0x6b, 0x29, 0xd5, 0x59, 0x50, 0xfd, 0x8a, 0xdf, 0x40, 0xde, 0xf5, 0x05, 0x82, 0xd8, 0x54, 0xbe, 0x9b, 0x89, 0x0e, 0xde, 0xf0, 0x53, 0xcb, 0x37, 0x41, 0xb9, 0x18, 0x15, 0xac, 0xc5, 0xa1, 0xe3, 
    [1755594670.025] [12:14] [DMG] 					] (64 bytes)
    [1755594670.025] [12:14] [DMG] 				},
    [1755594670.025] [12:14] [DMG] 			},
    [1755594670.026] [12:14] [DMG] 			
    [1755594670.026] [12:14] [DMG] 		},
    [1755594670.026] [12:14] [DMG] 		
    [1755594670.026] [12:14] [DMG] 	],
    [1755594670.026] [12:14] [DMG] 	
    [1755594670.026] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594670.026] [12:14] [DMG] },
    [1755594670.026] [12:14] [DMG] Received Command Response Data, Endpoint=0 Cluster=0x0000_003E Command=0x0000_0001
    [1755594670.026] [12:14] [CTL] Received Attestation Information from the device
    [1755594670.026] [12:14] [CTL] Successfully finished commissioning step 'SendAttestationRequest'
    [1755594670.026] [12:14] [CTL] AutoCommissioner setting attestationElements buffer size 585/585
    [1755594670.026] [12:14] [CTL] Commissioning stage next step: 'SendAttestationRequest' -> 'AttestationVerification'
    [1755594670.026] [12:14] [CTL] Performing next commissioning step 'AttestationVerification'
    [1755594670.027] [12:14] [CTL] Verifying attestation
    [1755594670.082] [12:14] [CTL] Error on commissioning step 'AttestationVerification': 'src/controller/CHIPDeviceController.cpp:1283: CHIP Error 0x000000AC: Internal error'
    [1755594670.082] [12:14] [CTL] Failed verifying attestation information. Now checking DAC chain revoked status.
    [1755594670.082] [12:14] [CTL] Commissioning stage next step: 'AttestationVerification' -> 'AttestationRevocationCheck'
    [1755594670.082] [12:14] [CTL] Performing next commissioning step 'AttestationRevocationCheck' with completion status = 'src/controller/CHIPDeviceController.cpp:1283: CHIP Error 0x000000AC: Internal error'
    [1755594670.082] [12:14] [CTL] Verifying device's DAC chain revocation status
    [1755594670.082] [12:14] [CTL] Failed in verifying 'Attestation Information' command received from the device: err 604. Look at AttestationVerificationResult enum to understand the errors
    [1755594670.082] [12:14] [CTL] Error on commissioning step 'AttestationRevocationCheck': 'src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error'
    [1755594670.082] [12:14] [CTL] Going from commissioning step 'AttestationRevocationCheck' with lastErr = 'src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error' -> 'Cleanup'
    [1755594670.082] [12:14] [CTL] Performing next commissioning step 'Cleanup' with completion status = 'src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error'
    [1755594670.082] [12:14] [CTL] Disarming failsafe on device 0xffff8c0146b0
    [1755594670.083] [12:14] [DMG] ICR moving to [AddingComm]
    [1755594670.083] [12:14] [DMG] ICR moving to [AddedComma]
    [1755594670.083] [12:14] [EM] <<< [E:39032i S:9665 M:91372181] (S) Msg TX from 0000000000000000 to 0:FFFFFFFB00000000 [0000] [BLE] --- Type 0001:08 (IM:InvokeCommandRequest) (B:65)
    [1755594670.083] [12:14] [DMG] ICR moving to [AwaitingRe]
    [1755594670.083] [12:14] [DMG] ICR moving to [AwaitingDe]
    [1755594670.154] [12:14] [DL] HandlePlatformSpecificBLEEvent 16389
    [1755594670.202] [12:13] [DL] Indication received, conn = 0xffff940815d0
    [1755594670.202] [12:14] [DL] HandlePlatformSpecificBLEEvent 16391
    [1755594670.202] [12:14] [EM] >>> [E:39032i S:9665 M:242270022] (S) Msg RX from 0:FFFFFFFB00000000 [0000] to 0000000000000000 --- Type 0001:09 (IM:InvokeCommandResponse) (B:66)
    [1755594670.202] [12:14] [EM] Found matching exchange: 39032i, Delegate: 0xffff8c007398
    [1755594670.202] [12:14] [DMG] ICR moving to [ResponseRe]
    [1755594670.202] [12:14] [DMG] InvokeResponseMessage =
    [1755594670.203] [12:14] [DMG] {
    [1755594670.203] [12:14] [DMG] 	suppressResponse = false, 
    [1755594670.203] [12:14] [DMG] 	InvokeResponseIBs =
    [1755594670.203] [12:14] [DMG] 	[
    [1755594670.203] [12:14] [DMG] 		InvokeResponseIB =
    [1755594670.203] [12:14] [DMG] 		{
    [1755594670.203] [12:14] [DMG] 			CommandDataIB =
    [1755594670.203] [12:14] [DMG] 			{
    [1755594670.203] [12:14] [DMG] 				CommandPathIB =
    [1755594670.203] [12:14] [DMG] 				{
    [1755594670.203] [12:14] [DMG] 					EndpointId = 0x0,
    [1755594670.203] [12:14] [DMG] 					ClusterId = 0x30,
    [1755594670.203] [12:14] [DMG] 					CommandId = 0x1,
    [1755594670.203] [12:14] [DMG] 				},
    [1755594670.203] [12:14] [DMG] 				
    [1755594670.203] [12:14] [DMG] 				CommandFields = 
    [1755594670.203] [12:14] [DMG] 				{
    [1755594670.203] [12:14] [DMG] 					0x0 = 0 (unsigned), 
    [1755594670.203] [12:14] [DMG] 					0x1 = "" (0 chars), 
    [1755594670.204] [12:14] [DMG] 				},
    [1755594670.204] [12:14] [DMG] 			},
    [1755594670.204] [12:14] [DMG] 			
    [1755594670.204] [12:14] [DMG] 		},
    [1755594670.204] [12:14] [DMG] 		
    [1755594670.204] [12:14] [DMG] 	],
    [1755594670.204] [12:14] [DMG] 	
    [1755594670.204] [12:14] [DMG] 	InteractionModelRevision = 12
    [1755594670.204] [12:14] [DMG] },
    [1755594670.204] [12:14] [DMG] Received Command Response Data, Endpoint=0 Cluster=0x0000_0030 Command=0x0000_0001
    [1755594670.205] [12:14] [CTL] Failsafe disarmed
    [1755594670.205] [12:14] [CTL] Successfully finished commissioning step 'Cleanup'
    [1755594670.205] [12:14] [DIS] Closing all BLE connections
    [1755594670.205] [12:14] [IN] Clearing BLE pending packets.
    [1755594670.206] [12:14] [BLE] Auto-closing end point's BLE connection.
    [1755594670.206] [12:14] [DL] Closing BLE GATT connection (con 0xffff940815d0)
    [1755594670.206] [12:13] [DL] Close BLE connection: peer=DF:95:98:03:C6:D1
    [1755594670.516] [12:14] [IN] SecureSession[0xffff8c014ef0]: MarkForEviction Type:1 LSID:9665
    [1755594670.516] [12:14] [SC] SecureSession[0xffff8c014ef0, LSID:9665]: State change 'kActive' --> 'kPendingEviction'
    [1755594670.517] [12:14] [CTL] Commissioning complete for node ID 0x0000000000011820: src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error
    [1755594670.517] [12:14] [TOO] Device commissioning Failure: src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error
    [1755594670.517] [12:13] [DL] BLE connection closed: conn=0xffff940815d0
    [1755594670.517] [12:14] [DMG] ICR moving to [AwaitingDe]
    [1755594670.517] [12:14] [IN] SecureSession[0xffff8c014ef0]: Released - Type:1 LSID:9665
    [1755594670.517] [12:14] [DL] Long dispatch time: 316 ms, for event type 16391
    [1755594670.517] [12:14] [DL] HandlePlatformSpecificBLEEvent 16390
    [1755594670.517] [12:14] [BLE] No endpoint for unsubscribe complete
    [1755594670.518] [12:14] [BLE] No endpoint for connection error
    [1755594670.518] [12:12] [CTL] Shutting down the commissioner
    [1755594670.518] [12:12] [CTL] Shutting down the controller
    [1755594670.518] [12:12] [IN] Expiring all sessions for fabric 0x1!!
    [1755594670.518] [12:12] [FP] Forgetting fabric 0x1
    [1755594670.518] [12:12] [TS] Pending Last Known Good Time: 2023-10-14T01:16:48
    [1755594670.519] [12:12] [TS] Previous Last Known Good Time: 2023-10-14T01:16:48
    [1755594670.519] [12:12] [TS] Reverted Last Known Good Time to previous value
    [1755594670.519] [12:12] [CTL] Shutting down the commissioner
    [1755594670.519] [12:12] [CTL] Shutting down the controller
    [1755594670.519] [12:12] [CTL] Shutting down the System State, this will teardown the CHIP Stack
    [1755594670.519] [12:12] [DMG] All ReadHandler-s are clean, clear GlobalDirtySet
    [1755594670.520] [12:12] [FP] Shutting down FabricTable
    [1755594670.520] [12:12] [TS] Pending Last Known Good Time: 2023-10-14T01:16:48
    [1755594670.520] [12:12] [TS] Previous Last Known Good Time: 2023-10-14T01:16:48
    [1755594670.520] [12:12] [TS] Reverted Last Known Good Time to previous value
    [1755594670.528] [12:12] [DL] Wrote settings to /tmp/chip_counters.ini
    [1755594670.529] [12:12] [DL] NVS set: chip-counters/total-operational-hours = 0 (0x0)
    [1755594670.529] [12:12] [DL] Inet Layer shutdown
    [1755594670.529] [12:12] [DL] BLE Layer shutdown
    [1755594670.532] [12:12] [DL] System Layer shutdown
    [1755594670.533] [12:12] [TOO] Run command failure: src/controller/CHIPDeviceController.cpp:1332: CHIP Error 0x000000AC: Internal error
    


    Thanks!
    XiongWei.Wang

  • Hi,

    Anderas is out of office, so the ticket has been assigned to me until he is back.

    It seems like chip-tool is not able to find the files if you run outside of docker, but I am not sure why.

    As for the second log, you get the following error:

    [CTL] Failed in verifying 'Attestation Information' command received from the device: err 604. Look at AttestationVerificationResult enum to understand the errors

    You can find AttestationVerificationResult here: https://github.com/nrfconnect/sdk-connectedhomeip/blob/v3.1.0/src/credentials/attestation_verifier/DeviceAttestationVerifier.h#L73
    You get error 604, which is kCertificationDeclarationInvalidVendorId. In other words, the vendor ID in the certification declaration does not match the VendorID attribute in the Basic Information cluster. The first thing to check is that the Vendor ID provided when generating the factory data and certificates matches that of the VendorID attribute. Another thing that might be causing issues is that if you have multiple certificates in --paa-trust-store-path, chip-tool might not know which to use. So the --paa-trust-store-path location should only include the PAA certificate. You can try removing the other certificates or moving ChampOn-Chip-DAC-Cert.der and ChampOn-Chip-DAC-Cert.pem to another location.

    Best regards,
    Marte

  • Hi,   and  

    Thank you very much to Marte and AHuag! I finally found time to work on the certification matters, and I've gained a completely new understading. I'm sharing this here to help others who might be facing the same issues.

    Before sending the samples to the certification body for certification, we need to include factory data in the samples. This data is generated by us using the DAC public-private key and the PAI public key, and the chip-cert tool is also required to generate the CD certificate. The generated files then need to be converted into C arrays using the xxd tool and embedded into the chip_project_config.h file. Additionally, it's important to note that if the certificate is supplied by a third party, the chip-cert tool needs to specify the DAC is supplied by a third party, the chip-cert tool needs to specify the certificate source using dac-origin-xx-id and declare out own information using xx-id. Here, "xx" refers to two categories: one is "products" and the other is "vendor".

    Only in this way can we avoid using the --bypass-attestation-verifier parameter when pairing with chip-tool

    Thanks.
    Xiongwei.Wang

Related