ivmarkov / esp-idf-matter

Run rs-matter on Espressif chips with ESP IDF
https://github.com/ivmarkov/esp-idf-matter
Apache License 2.0
26 stars 1 forks source link

Missing BT related fields when trying to compile against riscv32imac-esp-espidf (esp32c6) #5

Open oddlama opened 4 months ago

oddlama commented 4 months ago

Transfer of esp-rs/esp-idf-svc#442; Summary:

When I'm trying to compile this for the esp32c6 using riscv32imc-esp-espidf, I run into the following issue:

   Compiling esp-idf-svc v0.49.0
error[E0425]: cannot find value `ESP_BT_CTRL_CONFIG_MAGIC_VAL` in module `crate::sys`
   --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:497:32
    |
497 |             magic: crate::sys::ESP_BT_CTRL_CONFIG_MAGIC_VAL,
    |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys`

It happens on esp-idf v5.2 and v5.2.2. EDIT: As we found out later it seems to be related to the architecture.

Full cargo build error ``` Compiling esp-idf-svc v0.49.0 error[E0425]: cannot find value `ESP_BT_CTRL_CONFIG_MAGIC_VAL` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:497:32 | 497 | magic: crate::sys::ESP_BT_CTRL_CONFIG_MAGIC_VAL, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `ESP_BT_CTRL_CONFIG_VERSION` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:498:34 | 498 | version: crate::sys::ESP_BT_CTRL_CONFIG_VERSION, | ^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_PINNED_TO_CORE` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:501:50 | 501 | controller_task_run_cpu: crate::sys::CONFIG_BT_CTRL_PINNED_TO_CORE as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `CONFIG_BLUEDROID_PINNED_TO_CORE` | ::: /home/nixuser/projects/embedded/esp-idf-matter/target/riscv32imac-esp-espidf/debug/build/esp-idf-sys-c8d14348dff4d490/out/bindings.rs:1167:1 | 1167 | pub const CONFIG_BLUEDROID_PINNED_TO_CORE: u32 = 0; | ---------------------------------------------- similarly named constant `CONFIG_BLUEDROID_PINNED_TO_CORE` defined here error[E0425]: cannot find value `CONFIG_BT_CTRL_MODE_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:502:41 | 502 | bluetooth_mode: crate::sys::CONFIG_BT_CTRL_MODE_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_BLE_MAX_ACT_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:503:38 | 503 | ble_max_act: crate::sys::CONFIG_BT_CTRL_BLE_MAX_ACT_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_SLEEP_MODE_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:504:37 | 504 | sleep_mode: crate::sys::CONFIG_BT_CTRL_SLEEP_MODE_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_SLEEP_CLOCK_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:505:38 | 505 | sleep_clock: crate::sys::CONFIG_BT_CTRL_SLEEP_CLOCK_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:506:47 | 506 | ble_st_acl_tx_buf_nb: crate::sys::CONFIG_BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_HW_CCA_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:507:43 | 507 | ble_hw_cca_check: crate::sys::CONFIG_BT_CTRL_HW_CCA_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_ADV_DUP_FILT_MAX` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:508:47 | 508 | ble_adv_dup_filt_max: crate::sys::CONFIG_BT_CTRL_ADV_DUP_FILT_MAX as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_CE_LENGTH_TYPE_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:509:38 | 509 | ce_len_type: crate::sys::CONFIG_BT_CTRL_CE_LENGTH_TYPE_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_HCI_TL_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:510:38 | 510 | hci_tl_type: crate::sys::CONFIG_BT_CTRL_HCI_TL_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_TX_ANTENNA_INDEX_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:512:36 | 512 | txant_dft: crate::sys::CONFIG_BT_CTRL_TX_ANTENNA_INDEX_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_RX_ANTENNA_INDEX_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:513:36 | 513 | rxant_dft: crate::sys::CONFIG_BT_CTRL_RX_ANTENNA_INDEX_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:514:36 | 514 | txpwr_dft: crate::sys::CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CFG_MASK` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:515:35 | 515 | cfg_mask: crate::sys::CFG_MASK, | ^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `SCAN_DUPLICATE_MODE` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:516:46 | 516 | scan_duplicate_mode: crate::sys::SCAN_DUPLICATE_MODE as _, | ^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `SCAN_DUPLICATE_TYPE_VALUE` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:517:46 | 517 | scan_duplicate_type: crate::sys::SCAN_DUPLICATE_TYPE_VALUE as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `NORMAL_SCAN_DUPLICATE_CACHE_SIZE` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:518:42 | 518 | normal_adv_size: crate::sys::NORMAL_SCAN_DUPLICATE_CACHE_SIZE as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `MESH_DUPLICATE_SCAN_CACHE_SIZE` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:519:40 | 519 | mesh_adv_size: crate::sys::MESH_DUPLICATE_SCAN_CACHE_SIZE as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:521:29 | 521 | crate::sys::CONFIG_BT_CTRL_COEX_PHY_CODED_TX_RX_TLIM_EFF as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `CONFIG_BT_LE_COEX_PHY_CODED_TX_RX_TLIM_EFF` | ::: /home/nixuser/projects/embedded/esp-idf-matter/target/riscv32imac-esp-espidf/debug/build/esp-idf-sys-c8d14348dff4d490/out/bindings.rs:754:1 | 754 | pub const CONFIG_BT_LE_COEX_PHY_CODED_TX_RX_TLIM_EFF: u32 = 0; | --------------------------------------------------------- similarly named constant `CONFIG_BT_LE_COEX_PHY_CODED_TX_RX_TLIM_EFF` defined here error[E0425]: cannot find value `BLE_HW_TARGET_CODE_CHIP_ECO0` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:522:41 | 522 | hw_target_code: crate::sys::BLE_HW_TARGET_CODE_CHIP_ECO0 as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `SLAVE_CE_LEN_MIN_DEFAULT` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:523:43 | 523 | slave_ce_len_min: crate::sys::SLAVE_CE_LEN_MIN_DEFAULT as _, | ^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `AGC_RECORRECT_EN` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:524:42 | 524 | hw_recorrect_en: crate::sys::AGC_RECORRECT_EN as _, | ^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `CONFIG_BT_CTRL_HW_CCA_VAL` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:525:37 | 525 | cca_thresh: crate::sys::CONFIG_BT_CTRL_HW_CCA_VAL as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `BT_CTRL_50_FEATURE_SUPPORT` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:528:43 | 528 | ble_50_feat_supp: crate::sys::BT_CTRL_50_FEATURE_SUPPORT != 0, | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `EXT_CSD_SEC_FEATURE_SUPPORT` | ::: /home/nixuser/projects/embedded/esp-idf-matter/target/riscv32imac-esp-espidf/debug/build/esp-idf-sys-c8d14348dff4d490/out/bindings.rs:4935:1 | 4935 | pub const EXT_CSD_SEC_FEATURE_SUPPORT: u32 = 231; | ------------------------------------------ similarly named constant `EXT_CSD_SEC_FEATURE_SUPPORT` defined here error[E0425]: cannot find value `DUPL_SCAN_CACHE_REFRESH_PERIOD` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:529:50 | 529 | dup_list_refresh_period: crate::sys::DUPL_SCAN_CACHE_REFRESH_PERIOD as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0425]: cannot find value `BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX` in module `crate::sys` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:530:53 | 530 | scan_backoff_upperlimitmax: crate::sys::BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `crate::sys` error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `magic` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:497:13 | 497 | magic: crate::sys::ESP_BT_CTRL_CONFIG_MAGIC_VAL, | ^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `version` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:498:13 | 498 | version: crate::sys::ESP_BT_CTRL_CONFIG_VERSION, | ^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `controller_task_run_cpu` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:501:13 | 501 | controller_task_run_cpu: crate::sys::CONFIG_BT_CTRL_PINNED_TO_CORE as _, | ^^^^^^^^^^^^^^^^^^^^^^^ unknown field | help: a field with a similar name exists | 501 | controller_run_cpu: crate::sys::CONFIG_BT_CTRL_PINNED_TO_CORE as _, | ~~~~~~~~~~~~~~~~~~ error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `bluetooth_mode` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:502:13 | 502 | bluetooth_mode: crate::sys::CONFIG_BT_CTRL_MODE_EFF as _, | ^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `ble_max_act` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:503:13 | 503 | ble_max_act: crate::sys::CONFIG_BT_CTRL_BLE_MAX_ACT_EFF as _, | ^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `sleep_mode` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:504:13 | 504 | sleep_mode: crate::sys::CONFIG_BT_CTRL_SLEEP_MODE_EFF as _, | ^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `sleep_clock` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:505:13 | 505 | sleep_clock: crate::sys::CONFIG_BT_CTRL_SLEEP_CLOCK_EFF as _, | ^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `ble_st_acl_tx_buf_nb` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:506:13 | 506 | ble_st_acl_tx_buf_nb: crate::sys::CONFIG_BT_CTRL_BLE_STATIC_ACL_TX_BUF_NB as _, | ^^^^^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `ble_hw_cca_check` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:507:13 | 507 | ble_hw_cca_check: crate::sys::CONFIG_BT_CTRL_HW_CCA_EFF as _, | ^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `ble_adv_dup_filt_max` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:508:13 | 508 | ble_adv_dup_filt_max: crate::sys::CONFIG_BT_CTRL_ADV_DUP_FILT_MAX as _, | ^^^^^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `ce_len_type` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:509:13 | 509 | ce_len_type: crate::sys::CONFIG_BT_CTRL_CE_LENGTH_TYPE_EFF as _, | ^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `hci_tl_type` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:510:13 | 510 | hci_tl_type: crate::sys::CONFIG_BT_CTRL_HCI_TL_EFF as _, | ^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `hci_tl_funcs` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:511:13 | 511 | hci_tl_funcs: core::ptr::null_mut(), | ^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `txant_dft` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:512:13 | 512 | txant_dft: crate::sys::CONFIG_BT_CTRL_TX_ANTENNA_INDEX_EFF as _, | ^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `rxant_dft` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:513:13 | 513 | rxant_dft: crate::sys::CONFIG_BT_CTRL_RX_ANTENNA_INDEX_EFF as _, | ^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `txpwr_dft` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:514:13 | 514 | txpwr_dft: crate::sys::CONFIG_BT_CTRL_DFT_TX_POWER_LEVEL_EFF as _, | ^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `cfg_mask` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:515:13 | 515 | cfg_mask: crate::sys::CFG_MASK, | ^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `scan_duplicate_mode` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:516:13 | 516 | scan_duplicate_mode: crate::sys::SCAN_DUPLICATE_MODE as _, | ^^^^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `scan_duplicate_type` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:517:13 | 517 | scan_duplicate_type: crate::sys::SCAN_DUPLICATE_TYPE_VALUE as _, | ^^^^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `normal_adv_size` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:518:13 | 518 | normal_adv_size: crate::sys::NORMAL_SCAN_DUPLICATE_CACHE_SIZE as _, | ^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `mesh_adv_size` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:519:13 | 519 | mesh_adv_size: crate::sys::MESH_DUPLICATE_SCAN_CACHE_SIZE as _, | ^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `hw_target_code` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:522:13 | 522 | hw_target_code: crate::sys::BLE_HW_TARGET_CODE_CHIP_ECO0 as _, | ^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `slave_ce_len_min` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:523:13 | 523 | slave_ce_len_min: crate::sys::SLAVE_CE_LEN_MIN_DEFAULT as _, | ^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `hw_recorrect_en` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:524:13 | 524 | hw_recorrect_en: crate::sys::AGC_RECORRECT_EN as _, | ^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `cca_thresh` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:525:13 | 525 | cca_thresh: crate::sys::CONFIG_BT_CTRL_HW_CCA_VAL as _, | ^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `coex_param_en` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:526:13 | 526 | coex_param_en: false, | ^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `coex_use_hooks` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:527:13 | 527 | coex_use_hooks: false, | ^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `ble_50_feat_supp` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:528:13 | 528 | ble_50_feat_supp: crate::sys::BT_CTRL_50_FEATURE_SUPPORT != 0, | ^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `dup_list_refresh_period` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:529:13 | 529 | dup_list_refresh_period: crate::sys::DUPL_SCAN_CACHE_REFRESH_PERIOD as _, | ^^^^^^^^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others error[E0560]: struct `esp_idf_hal::sys::esp_bt_controller_config_t` has no field named `scan_backoff_upperlimitmax` --> /home/nixuser/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-idf-svc-0.49.0/src/bt.rs:530:13 | 530 | scan_backoff_upperlimitmax: crate::sys::BT_CTRL_SCAN_BACKOFF_UPPERLIMITMAX as _, | ^^^^^^^^^^^^^^^^^^^^^^^^^^ `esp_idf_hal::sys::esp_bt_controller_config_t` does not have this field | = note: available fields are: `config_version`, `ble_ll_resolv_list_size`, `ble_hci_evt_hi_buf_count`, `ble_hci_evt_lo_buf_count`, `ble_ll_sync_list_cnt` ... and 46 others Some errors have detailed explanations: E0425, E0560. For more information about an error, try `rustc --explain E0425`. error: could not compile `esp-idf-svc` (lib) due to 58 previous errors ```
oddlama commented 4 months ago

I can offer a reproducible environment leading to this error in my fork, in case you are willing to install Nix. You can then enter a shell with the full environment by running nix --extra-experimental-features 'nix-command flakes' develop when you are in the main directory of my fork.

ivmarkov commented 4 months ago

One more question: when compiling for one of the targets which are part of the CI - like riscv32imc-esp-espidf - does it compile OK?

oddlama commented 4 months ago

Yes, riscv32imc-esp-espidf works

ivmarkov commented 4 months ago

Ok. Then it is not *nix specific and I'll look into it. Might take a day or two though.

ivmarkov commented 4 months ago

You'll need this PR to be merged in esp-idf-svc. As it turns out, we currently don't actually support proper Bluedroid initialization on anything but esp32/esp32s3/esp32c3.

In the meantime, I've added the branch supporting this PR to esp-idf-matter.

I can't test the project with the esp32c6 right now, as I'm not at home and don't have a c6 chip with me. If you can try it out on the c6, I would appreciate it!

oddlama commented 4 months ago

Thanks a ton for the quick fix! Works flawlessly on my C6 now!

ivmarkov commented 4 months ago

Thanks a ton for the quick fix! Works flawlessly on my C6 now!

The question is if esp-idf-matter examples work for you.

oddlama commented 4 months ago

Sorry I only had time to test it thoroughly today. I tested the "light" example now.

There are no obvious errors reported by the device from what I can tell, everything looks like it is working. I just cannot get the device to actually finish commissioning in Home Assistant. But I can see that the Wifi credentials are correctly sent to the device, and it acquires an IP address. The phone just fails to find it afterwards, but this may very well be due to the HA matter addon being experimental.

I think you can probably directly tell whether this is device related or HA related issue from the logs:

ESP output log ``` I (23) boot: ESP-IDF 0572f11 2nd stage bootloader I (24) boot: compile time Jul 7 2024 18:01:57 I (24) boot: chip revision: v0.0 I (26) boot.esp32c6: SPI Speed : 80MHz I (31) boot.esp32c6: SPI Mode : DIO I (36) boot.esp32c6: SPI Flash Size : 4MB I (41) boot: Enabling RNG early entropy source... I (46) boot: Partition Table: I (50) boot: ## Label Usage Type ST Offset Length I (57) boot: 0 nvs WiFi data 01 02 00009000 00006000 I (64) boot: 1 phy_init RF data 01 01 0000f000 00001000 I (72) boot: 2 factory factory app 00 00 00010000 00300000 I (79) boot: End of partition table I (84) esp_image: segment 0: paddr=00010020 vaddr=42000020 size=1c1240h (1839680) map I (471) esp_image: segment 1: paddr=001d1268 vaddr=40800000 size=06db0h ( 28080) load I (479) esp_image: segment 2: paddr=001d8020 vaddr=421c8020 size=7af28h (503592) map I (583) esp_image: segment 3: paddr=00252f50 vaddr=40806db0 size=12818h ( 75800) load I (602) esp_image: segment 4: paddr=00265770 vaddr=408195d0 size=1072ch ( 67372) load I (627) boot: Loaded app from partition at offset 0x10000 I (627) boot: Disabling RNG early entropy source... I (638) cpu_start: Unicore app W (647) clk: esp_perip_clk_init() has not been implemented yet I (654) cpu_start: Pro cpu start user code I (654) cpu_start: cpu freq: 160000000 Hz I (654) cpu_start: Application information: I (657) cpu_start: Project name: libespidf I (662) cpu_start: App version: c9297bc I (667) cpu_start: Compile time: Jul 7 2024 18:01:54 I (673) cpu_start: ELF file SHA256: 000000000... I (678) cpu_start: ESP-IDF: 0572f11 I (683) cpu_start: Min chip rev: v0.0 I (688) cpu_start: Max chip rev: v0.99 I (693) cpu_start: Chip rev: v0.0 I (698) heap_init: Initializing. RAM available for dynamic allocation: I (705) heap_init: At 4082F520 len 0004D0F0 (308 KiB): RAM I (711) heap_init: At 4087C610 len 00002F54 (11 KiB): RAM I (717) heap_init: At 50000000 len 00003FE8 (15 KiB): RTCRAM I (724) spi_flash: detected chip: generic I (728) spi_flash: flash io: dio W (732) spi_flash: Detected size(8192k) larger than the size in the binary image header(4096k). Using the size in the binary image header. W (745) pcnt(legacy): legacy driver is deprecated, please migrate to `driver/pulse_cnt.h` W (754) timer_group: legacy driver is deprecated, please migrate to `driver/gptimer.h` I (763) sleep: Configure to isolate all GPIO pins in sleep state I (769) sleep: Enable automatic switching of GPIO sleep configuration I (776) coexist: coex firmware version: d96c1e51f I (782) coexist: coexist rom version 5b8dcfa I (787) main_task: Started on CPU0 I (787) main_task: Calling app_main() I (787) light: Starting... I (797) esp_idf_matter::stack: Async IO initialized; using `async-io-mini` I (817) rs_matter_stack::wifible: Matter Stack memory: 52328B I (817) esp_idf_svc::bt: Init bluetooth controller I (817) BLE_INIT: Using main XTAL as clock source I (827) BLE_INIT: ble controller commit:[39c6e05] I (827) esp_idf_svc::bt: Enable bluetooth controller I (837) phy_init: phy_version 290,81efd96,May 8 2024,10:42:13 I (897) phy: libbtbb version: f97b181, May 8 2024, 10:42:29 I (897) esp_idf_svc::bt: Init bluedroid I (897) esp_idf_svc::bt: Enable bluedroid I (907) rs_matter_stack::wifible: BLE driver initialized I (907) rs_matter_stack::wifible: Running Matter in commissioning mode (BLE) I (917) esp_idf_matter::ble: BLE Gap and Gatts initialized I (917) esp_idf_matter::ble: BLE Gap and Gatts subscriptions initialized I (937) esp_idf_matter::ble: Gatts BTP app registered I (937) rs_matter_stack: Responder memory: Responder=176B, Runner=10664B I (937) rs_matter::respond: Responder: Creating 4 handlers I (947) rs_matter::respond: Responder: Handlers size: 8040B I (947) rs_matter::respond: Busy Responder: Creating 2 handlers I (957) rs_matter::respond: Busy Responder: Handlers size: 712B I (967) rs_matter::pairing::code: Pairing Code: 0087-6800-071 I (967) rs_matter::pairing::qr: QR Code Text: MT:Y.K90KQS02Z6Q66D33P084L90Z.I332SQ43I15T0 I (1027) rs_matter::pairing::qr: █████████████████████████████████████ I (1027) rs_matter::pairing::qr: █████████████████████████████████████ I (1037) rs_matter::pairing::qr: ████ ▄▄▄▄▄ █ ▄▄▄ ██▄ █ ▄ █ ▄▄▄▄▄ ████ I (1057) rs_matter::pairing::qr: ████ █ █ █▄▄▀▀▀██▄ ▄ █▄█ █ █ ████ I (1067) rs_matter::pairing::qr: ████ █▄▄▄█ █▄▀▀▀▄█▄ █▀▀ █ █▄▄▄█ ████ I (1077) rs_matter::pairing::qr: ████▄▄▄▄▄▄▄█▄█ █ ▀▄▀ █ ▀▄█▄▄▄▄▄▄▄████ I (1087) rs_matter::pairing::qr: ████ ██ ▄ ▄▄ ▀██▄ ██▀▀ ▄█▄▀▀ ▀▄ ████ I (1107) rs_matter::pairing::qr: ████▀ ▀ █▄▄█▄▀▄▄ █▄ ▀███▀▀ ▄ ▀ ████ I (1117) rs_matter::pairing::qr: ████ ▀▀▀▄▄▄█▀▀ ▄ ▀▄ ▀ █▀ ██ ▄▄▀▀████ I (1127) rs_matter::pairing::qr: ████ ▀█ ▄▄ ▀ ██▀▄█▀▄▀█▀▀▄▀▀ ▄█ █████ I (1137) rs_matter::pairing::qr: ████ ▀█▄▀▄▀▀▀▀█▄▀ █ ▄█▀█▄█▀▄█▀▀▄████ I (1157) rs_matter::pairing::qr: ████ █▀ ▄ ▀▀ █▄█▀▄█▄▄ ▀▄█ ▀█ ▀████ I (1167) rs_matter::pairing::qr: ████▄▄▄███▄█▀▀▀ █▄ ▄▄▀██ ▄▄▄ ▀█▀█████ I (1177) rs_matter::pairing::qr: ████ ▄▄▄▄▄ █ ▄ ▄ █ ▀█▄ ▀ █▄█ █▀ ████ I (1197) rs_matter::pairing::qr: ████ █ █ █ █ █▄▄▄█▄▀█▀ ▄▄ ▄█▄▀▄████ I (1207) rs_matter::pairing::qr: ████ █▄▄▄█ ██▀▀▄▀▄█▄ ▄▀▄▀▄ ▀██▄▄████ I (1217) rs_matter::pairing::qr: ████▄▄▄▄▄▄▄█▄██▄█▄█▄█▄▄▄▄▄█▄▄█▄▄█████ I (1227) rs_matter::pairing::qr: █████████████████████████████████████ I (1247) rs_matter::pairing::qr: █████████████████████████████████████ I (1257) rs_matter::transport::core: Running Matter transport I (1267) rs_matter::transport::core: Waiting for orphaned RX packets I (6277) light: Light toggled I (11277) light: Light toggled I (16277) light: Light toggled I (21277) light: Light toggled I (26277) light: Light toggled I (31277) light: Light toggled I (31517) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [H|M|B|E,OP:6c] HANDSHAKE REQ HandshakeReq { versions: 4, mtu: 131, window_size: 5 } Selected version: 4, MTU: 128, window size: 5 I (31547) rs_matter::transport::network::btp::context: Subscribe request from 4B:05:75:42:C4:FD I (31547) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [H|M|B|E,OP:6c] HANDSHAKE RESP HandshakeResp { version: 4, mtu: 128, window_size: 5 } I (31607) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:0,CTR:0,LEN:62] READ 98B I (31617) rs_matter::transport::session: New exchange: 0::0 [SID:0,RSID:0,EID:e233] :: Responder(AcceptPending) I (31617) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [S,SID:0,CTR:fe41cf1,SRC:9a804cb7833d63c2][I,EID:e233,PROTO:0,OP:20] SC::PBKDFParamRequest => Processing (new exchange) I (31637) rs_matter::transport::core: Exchange 0::0 [SID:0,RSID:0,EID:e233]: Accepted I (31647) rs_matter::respond: Responder: Handler 0 / exchange 0::0: Starting I (31657) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [U,SID:0,CTR:1583f86,DST:9a804cb7833d63c2][EID:e233,PROTO:0,OP:21] SC::PBKDFParamResponse => Sending I (31667) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:0,CTR:1,LEN:8b] WRITE 123B I (31687) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C|E,CTR:2] WRITE 16B I (31787) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:2,CTR:1,LEN:5c] READ 92B I (31797) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [S,SID:0,CTR:fe41cf2,SRC:9a804cb7833d63c2][I,EID:e233,PROTO:0,OP:22] SC::PASEPake1 => Processing I (33677) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [U,SID:0,CTR:1583f87,DST:9a804cb7833d63c2][EID:e233,PROTO:0,OP:23] SC::PASEPake2 => Sending I (33687) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:1,CTR:3,LEN:7f] WRITE 123B I (33697) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C|E,CTR:4] WRITE 4B I (33847) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:4,CTR:2,LEN:3b] READ 59B I (33857) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [S,SID:0,CTR:fe41cf3,SRC:9a804cb7833d63c2][I,EID:e233,PROTO:0,OP:24] SC::PASEPake3 => Processing I (33867) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [U,SID:0,CTR:1583f88,DST:9a804cb7833d63c2][EID:e233,PROTO:0,OP:40] SC::StatusReport => Sending I (33877) rs_matter::respond: Responder: Handler 0 / exchange 0::0: Completed I (33887) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:2,CTR:5,LEN:1e] WRITE 30B I (33967) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:5,CTR:3,LEN:33] READ 51B I (33977) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e234] :: Responder(AcceptPending) I (33977) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13acb][I,EID:e234,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (33997) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e234]: Accepted I (34007) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (34017) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab5a][EID:e234,PROTO:1,OP:5] IM::ReportData => Sending I (34027) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (34037) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:3,CTR:6,LEN:53] WRITE 83B I (34107) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:6,CTR:4,LEN:34] READ 52B I (34117) rs_matter::transport::session: New exchange: 1::1 [SID:1,RSID:2bf2,EID:e235] :: Responder(AcceptPending) I (34117) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13acc][I,EID:e235,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (34137) rs_matter::transport::core: Exchange 1::1 [SID:1,RSID:2bf2,EID:e235]: Accepted I (34147) rs_matter::respond: Responder: Handler 0 / exchange 1::1: Starting I (34157) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab5b][EID:e235,PROTO:1,OP:5] IM::ReportData => Sending I (34167) rs_matter::respond: Responder: Handler 0 / exchange 1::1: Completed I (34177) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:4,CTR:7,LEN:40] WRITE 64B I (34247) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:7,CTR:5,LEN:33] READ 51B I (34257) rs_matter::transport::session: New exchange: 1::2 [SID:1,RSID:2bf2,EID:e236] :: Responder(AcceptPending) I (34257) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13acd][I,EID:e236,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (34277) rs_matter::transport::core: Exchange 1::2 [SID:1,RSID:2bf2,EID:e236]: Accepted I (34287) rs_matter::respond: Responder: Handler 0 / exchange 1::2: Starting I (34297) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab5c][EID:e236,PROTO:1,OP:5] IM::ReportData => Sending I (34307) rs_matter::respond: Responder: Handler 0 / exchange 1::2: Completed I (34317) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:5,CTR:8,LEN:40] WRITE 64B I (34367) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:8,CTR:6,LEN:33] READ 51B I (34377) rs_matter::transport::session: New exchange: 1::3 [SID:1,RSID:2bf2,EID:e237] :: Responder(AcceptPending) I (34377) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ace][I,EID:e237,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (34397) rs_matter::transport::core: Exchange 1::3 [SID:1,RSID:2bf2,EID:e237]: Accepted I (34407) rs_matter::respond: Responder: Handler 0 / exchange 1::3: Starting I (34417) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab5d][EID:e237,PROTO:1,OP:5] IM::ReportData => Sending I (34427) rs_matter::respond: Responder: Handler 0 / exchange 1::3: Completed I (34437) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:6,CTR:9,LEN:40] WRITE 64B I (34487) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:9,CTR:7,LEN:33] READ 51B I (34497) rs_matter::transport::session: New exchange: 1::4 [SID:1,RSID:2bf2,EID:e238] :: Responder(AcceptPending) I (34497) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13acf][I,EID:e238,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (34517) rs_matter::transport::core: Exchange 1::4 [SID:1,RSID:2bf2,EID:e238]: Accepted I (34527) rs_matter::respond: Responder: Handler 0 / exchange 1::4: Starting I (34537) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab5e][EID:e238,PROTO:1,OP:5] IM::ReportData => Sending I (34547) rs_matter::respond: Responder: Handler 0 / exchange 1::4: Completed I (34557) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:7,CTR:a,LEN:3f] WRITE 63B I (34627) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:a,CTR:8,LEN:33] READ 51B I (34637) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e239] :: Responder(AcceptPending) I (34637) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad0][I,EID:e239,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (34657) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e239]: Accepted I (34667) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (34677) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab5f][EID:e239,PROTO:1,OP:5] IM::ReportData => Sending I (34687) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (34697) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:8,CTR:b,LEN:3f] WRITE 63B I (34747) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:b,CTR:9,LEN:33] READ 51B I (34757) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e23a] :: Responder(AcceptPending) I (34757) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad1][I,EID:e23a,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (34777) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e23a]: Accepted I (34787) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (34797) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab60][EID:e23a,PROTO:1,OP:5] IM::ReportData => Sending I (34807) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (34817) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:9,CTR:c,LEN:3f] WRITE 63B I (35207) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:c,CTR:a,LEN:3e] READ 62B I (35217) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e23b] :: Responder(AcceptPending) I (35217) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad2][I,EID:e23b,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (35237) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e23b]: Accepted I (35247) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (35257) rs_matter::data_model::sdm::noc: Handling command CertChainRequest I (35257) rs_matter::data_model::sdm::noc: Received data: 1: { I (35267) rs_matter::data_model::sdm::noc: Received Cert Type:1 I (35277) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab61][EID:e23b,PROTO:1,OP:9] IM::InvokeResponse => Sending I (35297) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (35297) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:a,CTR:d,LEN:229] WRITE 123B I (35307) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:e] WRITE 126B I (35327) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:f] WRITE 126B I (35347) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:10] WRITE 126B I (35467) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A,ACTR:10,CTR:b] READ 0B I (35467) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|C|E,ACTR:b,CTR:11] WRITE 52B I (35527) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:11,CTR:c,LEN:33] READ 51B I (35537) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e23c] :: Responder(AcceptPending) I (35537) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad3][I,EID:e23c,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (35557) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e23c]: Accepted I (35567) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (35577) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab62][EID:e23c,PROTO:1,OP:5] IM::ReportData => Sending I (35587) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (35597) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:c,CTR:12,LEN:53] WRITE 83B I (35647) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:12,CTR:d,LEN:34] READ 52B I (35657) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e23d] :: Responder(AcceptPending) I (35657) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad4][I,EID:e23d,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (35677) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e23d]: Accepted I (35687) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (35697) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab63][EID:e23d,PROTO:1,OP:5] IM::ReportData => Sending I (35707) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (35717) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:d,CTR:13,LEN:40] WRITE 64B I (35847) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:13,CTR:e,LEN:27] READ 39B I (35857) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e23e] :: Responder(AcceptPending) I (35857) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad5][I,EID:e23e,PROTO:1,OP:a] IM::TimedRequest => Processing (new exchange) I (35877) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e23e]: Accepted I (35887) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (35897) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab64][EID:e23e,PROTO:1,OP:1] IM::StatusResponse => Sending I (35907) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:e,CTR:14,LEN:23] WRITE 35B I (35947) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:14,CTR:f,LEN:41] READ 65B I (35957) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad6][I,EID:e23e,PROTO:1,OP:8] IM::InvokeRequest => Processing I (35967) rs_matter::data_model::sdm::general_commissioning: Handling command ARM Fail Safe I (35977) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab65][EID:e23e,PROTO:1,OP:9] IM::InvokeResponse => Sending I (35987) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (35997) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:f,CTR:15,LEN:3f] WRITE 63B I (36067) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:15,CTR:10,LEN:33] READ 51B I (36077) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e23f] :: Responder(AcceptPending) I (36077) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad7][I,EID:e23f,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (36097) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e23f]: Accepted I (36107) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (36117) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab66][EID:e23f,PROTO:1,OP:5] IM::ReportData => Sending I (36127) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (36137) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:10,CTR:16,LEN:3f] WRITE 63B I (36187) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:16,CTR:11,LEN:27] READ 39B I (36197) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e240] :: Responder(AcceptPending) I (36197) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad8][I,EID:e240,PROTO:1,OP:a] IM::TimedRequest => Processing (new exchange) I (36217) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e240]: Accepted I (36227) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (36237) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab67][EID:e240,PROTO:1,OP:1] IM::StatusResponse => Sending I (36247) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:11,CTR:17,LEN:23] WRITE 35B I (36287) light: Light toggled I (36287) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:17,CTR:12,LEN:46] READ 70B I (36297) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ad9][I,EID:e240,PROTO:1,OP:8] IM::InvokeRequest => Processing I (36307) rs_matter::data_model::sdm::general_commissioning: Handling command Set Regulatory Config I (36317) rs_matter::data_model::sdm::general_commissioning: Received country code: [68, 69] I (36327) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab68][EID:e240,PROTO:1,OP:9] IM::InvokeResponse => Sending I (36337) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (36347) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:12,CTR:18,LEN:3f] WRITE 63B I (36387) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:18,CTR:13,LEN:3e] READ 62B I (36397) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e241] :: Responder(AcceptPending) I (36397) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ada][I,EID:e241,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (36417) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e241]: Accepted I (36427) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (36437) rs_matter::data_model::sdm::noc: Handling command CertChainRequest I (36437) rs_matter::data_model::sdm::noc: Received data: 1: { I (36447) rs_matter::data_model::sdm::noc: Received Cert Type:2 I (36457) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab69][EID:e241,PROTO:1,OP:9] IM::InvokeResponse => Sending I (36477) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (36477) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:13,CTR:19,LEN:20c] WRITE 123B I (36487) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:1a] WRITE 126B I (36507) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:1b] WRITE 126B I (36547) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:1c] WRITE 126B I (36667) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A,ACTR:1c,CTR:14] READ 0B I (36667) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|C|E,ACTR:14,CTR:1d] WRITE 23B I (36727) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:1d,CTR:15,LEN:5e] READ 94B I (36737) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e242] :: Responder(AcceptPending) I (36737) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13adb][I,EID:e242,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (36757) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e242]: Accepted I (36767) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (36777) rs_matter::data_model::sdm::noc: Handling command AttestationRequest I (36777) rs_matter::data_model::sdm::noc: Received Attestation Nonce:OctetStr([187, 84, 175, 87, 119, 197, 111, 183, 0, 0, 1, 144, 147, 176, 128, 14, 1, 158, 171, 14, 3, 180, 216, 190, 87, 229, 85, 69, 191, 86, 118, 73]) I (37127) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab6a][EID:e242,PROTO:1,OP:9] IM::InvokeResponse => Sending I (37147) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (37147) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:15,CTR:1e,LEN:2c9] WRITE 123B I (37157) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:1f] WRITE 126B I (37167) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:20] WRITE 126B I (37247) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:21] WRITE 126B I (37367) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A,ACTR:21,CTR:16] READ 0B I (37367) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|C,ACTR:16,CTR:22] WRITE 125B I (37377) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C|E,CTR:23] WRITE 87B I (37467) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:23,CTR:17,LEN:60] READ 96B I (37477) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e243] :: Responder(AcceptPending) I (37477) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13adc][I,EID:e243,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (37497) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e243]: Accepted I (37507) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (37517) rs_matter::data_model::sdm::noc: Handling command CSRRequest I (37517) rs_matter::data_model::sdm::noc: Received CSR Nonce:OctetStr([178, 28, 40, 231, 91, 96, 125, 104, 0, 0, 1, 144, 147, 176, 128, 14, 1, 158, 171, 14, 3, 94, 59, 104, 176, 125, 5, 236, 109, 76, 38, 217]) I (38197) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab6b][EID:e243,PROTO:1,OP:9] IM::InvokeResponse => Sending I (38207) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (38207) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:17,CTR:24,LEN:172] WRITE 123B I (38217) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C,CTR:25] WRITE 126B I (38237) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [C|E,CTR:26] WRITE 121B I (38827) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:26,CTR:18,LEN:133] READ 123B I (38867) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [C,CTR:19] READ 126B I (38907) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [C|E,CTR:1a] READ 58B I (38917) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e244] :: Responder(AcceptPending) I (38917) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13add][I,EID:e244,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (38937) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e244]: Accepted I (38947) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (38957) rs_matter::data_model::sdm::noc: Handling command AddTrustedRootCert I (38957) rs_matter::data_model::sdm::noc: Received Trusted Cert:OctetStr([15, 30, 1, 1, 1, 24, 2, 1, 37, 3, 27, 14, 4e, 7e, 2c, a5, 6, 96, d6, 89, 18, 26, 4, 0, ae, 14, 2e, 26, 5, 0, b4, ac, 53, 37, 6, 27, 14, 4e, 7e, 2c, a5, 6, 96, d6, 89, 18, 24, 7, 1, 24, 8, 1, 30, 9, 41, 4, f, 96, a5, 61, ee, 4f, f9, 12, f7, 62, 38, 85, b0, de, 44, e7, 5b, 2b, ba, 54, 6b, b2, 63, 1e, b9, ac, b3, 33, 94, a3, 80, 85, 82, c9, d0, d4, 45, e9, d3, 6c, 82, e3, d7, a4, 54, 3d, 8e, 92, d8, e0, 50, c2, d0, 5f, 35, 79, 57, ac, f6, 9c, 37, 80, 87, 3e, 37, a, 35, 1, 29, 1, 18, 24, 2, 60, 30, 4, 14, 6b, 12, 9d, fe, f3, fe, ae, 95, 5f, 73, c8, 5d, 13, 0, 99, 5, fa, 47, 3d, 2f, 30, 5, 14, 6b, 12, 9d, fe, f3, fe, ae, 95, 5f, 73, c8, 5d, 13, 0, 99, 5, fa, 47, 3d, 2f, 18, 30, b, 40, c1, 75, 14, 38, ba, 25, b1, d4, 30, 9d, 27, de, 6a, 53, e4, e4, 19, da, 7f, f1, 41, c2, 17, 74, 70, af, 79, d2, 31, 5c, af, 77, 3d, 87, ba, 9b, af, 4f, 30, bf, de, e0, 52, c2, 26, a3, d3, 4a, e7, 51, 95, 1a, 9b, 37, b8, 5b, c8, b2, 41, 90, 86, dc, 55, 8f, 18]) I (39047) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab6c][EID:e244,PROTO:1,OP:9] IM::InvokeResponse => Sending I (39067) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (39077) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:1a,CTR:27,LEN:3f] WRITE 63B I (39167) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:27,CTR:1b,LEN:18a] READ 123B I (39207) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [C,CTR:1c] READ 126B I (39247) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [C,CTR:1d] READ 126B I (39287) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [C|E,CTR:1e] READ 19B I (39297) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e245] :: Responder(AcceptPending) I (39297) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ade][I,EID:e245,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (39317) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e245]: Accepted I (39317) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (39327) rs_matter::data_model::sdm::noc: Handling command AddNOC I (39337) rs_matter::data_model::sdm::noc: Received NOC as: Version: [0] [2] Serial Num: [77, f6, a0, a3, df, b7, 2a, a5] Signature Algorithm: ECDSA with SHA256 Issuer: Chip Root CA Id: "89D69606A52C7E4E" Validity: Not Before: 2024-07-01 0:00:00.0 +00:00:00 Not After: 2044-06-26 0:00:00.0 +00:00:00 Subject: Chip Fabric Id: "01EA7FD730E6B3B8" Chip Node Id: "3150C5EDF49CB8BC" Chip NOC CAT Id: "00010001" Common Name: "Android Local Fabric" Public Key Algorithm ECPubKey Prime256v1 Public-Key: [4, 12, 1f, 13, 1b, 71, 4e, f4, 89, de, 15, f6, 81, bd, 6a, 63, a5, a6, d2, 6f, 40, 4e, bb, fe, b6, 9b, 4, a0, 71, 1b, 3, 9f, b0, d5, 75, 13, 17, fe, 12, 7e, 49, a2, f2, 72, b7, 19, d8, 93, 23, 1b, 6b, f6, 46, 5, b0, ca, 70, 56, 67, 98, b4, e7, 5c, 3d, 2e] X509v3 extensions: [3] X509v3 Basic Constraints critical: true value: X509v3 Key Usage critical: true value: digitalSignature [80, 0] X509v3 Extended Key Usage critical: true value: ClientAuth ServerAuth Subject Key ID value: [92, f6, 87, b9, bb, ba, 90, 8e, 5e, 12, 43, ae, 55, 54, d0, d2, 54, 49, c6, a0] Auth Key ID value: [0][6b, 12, 9d, fe, f3, fe, ae, 95, 5f, 73, c8, 5d, 13, 0, 99, 5, fa, 47, 3d, 2f] Signature: [bd, 7, ea, 61, a2, f7, 5a, d6, e3, d, df, fc, 7d, c2, ec, 38, 57, 44, 4d, 55, 76, 51, b2, 25, 38, fc, c, cd, 29, e5, 9d, 9, b6, 57, d0, 8f, d1, b1, 52, 4a, f4, 6b, d8, 44, c5, ae, 9b, 1d, 95, cc, f4, 62, 53, 19, 1a, 5f, 77, b1, 83, b4, ea, 8f, d, 7c] I (39507) rs_matter::fabric: MDNS Service Name: 62588B9380516AB4-3150C5EDF49CB8BC I (39517) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab6d][EID:e245,PROTO:1,OP:9] IM::InvokeResponse => Sending I (39527) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (39537) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:1e,CTR:28,LEN:42] WRITE 66B I (39667) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B,ACTR:28,CTR:1f,LEN:87] READ 123B I (39707) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [C|E,CTR:20] READ 12B I (39717) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e246] :: Responder(AcceptPending) I (39717) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13adf][I,EID:e246,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (39737) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e246]: Accepted I (39747) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (39757) rs_matter_stack::wifi::comm: AddOrUpdateWifiNetwork I (39757) rs_matter_stack::wifi::comm: Added network with SSID IOT_Test_Wifi_2 I (39767) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab6e][EID:e246,PROTO:1,OP:9] IM::InvokeResponse => Sending I (39777) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (39787) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:20,CTR:29,LEN:3f] WRITE 63B I (39847) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:29,CTR:21,LEN:33] READ 51B I (39857) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e247] :: Responder(AcceptPending) I (39857) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ae0][I,EID:e247,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (39877) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e247]: Accepted I (39887) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (39897) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab6f][EID:e247,PROTO:1,OP:5] IM::ReportData => Sending I (39907) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (39917) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:21,CTR:2a,LEN:3f] WRITE 63B I (39967) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:2a,CTR:22,LEN:45] READ 69B I (39977) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:2bf2,EID:e248] :: Responder(AcceptPending) I (39977) rs_matter::transport::core: >>>>> BTP 4B:05:75:42:C4:FD [SID:1,CTR:fe13ae1][I,EID:e248,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (39997) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:2bf2,EID:e248]: Accepted I (40007) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (40017) rs_matter_stack::wifi::comm: ConnectNetwork I (40017) rs_matter_stack::wifi::comm: Request to connect to network with SSID IOT_Test_Wifi_2 received I (40027) rs_matter::transport::exchange: <<<<< BTP 4B:05:75:42:C4:FD [SID:2bf2,CTR:fbdab70][EID:e248,PROTO:1,OP:9] IM::InvokeResponse => Sending I (40047) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (40047) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 4B:05:75:42:C4:FD [A|B|E,ACTR:22,CTR:2b,LEN:3f] WRITE 63B W (40067) rs_matter_stack::wifi: Giving BLE/BTP extra 4 seconds for any outstanding messages before switching to Wifi W (41147) BT_HCI: hcif disc complete: hdl 0x1, rsn 0x13 I (41147) rs_matter::transport::network::btp::context: Unsubscribe request from 4B:05:75:42:C4:FD I (41147) rs_matter::transport::network::btp::context: Session 4B:05:75:42:C4:FD removed I (41287) light: Light toggled W (44077) BT_APPL: bta_dm_disable BTA_DISABLE_DELAY set to 200 ms I (44277) pp: pp rom version: 5b8dcfa I (44277) net80211: net80211 rom version: 5b8dcfa I (44287) wifi:wifi driver task: 4085b180, prio:23, stack:6656, core=0 I (44287) wifi:wifi firmware version: 3e0076f I (44287) wifi:wifi certification version: v7.0 I (44297) wifi:config NVS flash: enabled I (44297) wifi:config nano formating: disabled I (44297) wifi:mac_version:HAL_MAC_ESP32AX_761,ut_version:N I (44307) wifi:Init data frame dynamic rx buffer num: 32 I (44307) wifi:Init static rx mgmt buffer num: 10 I (44317) wifi:Init management short buffer num: 32 I (44317) wifi:Init dynamic tx buffer num: 32 I (44327) wifi:Init static tx FG buffer num: 2 I (44327) wifi:Init static rx buffer size: 1700 I (44337) wifi:Init static rx buffer num: 10 I (44337) wifi:Init dynamic rx buffer num: 32 I (44337) wifi_init: rx ba win: 6 I (44347) wifi_init: tcpip mbox: 32 I (44347) wifi_init: udp mbox: 6 I (44357) wifi_init: tcp mbox: 6 I (44357) wifi_init: tcp tx win: 5760 I (44357) wifi_init: tcp rx win: 5760 I (44367) wifi_init: tcp mss: 1440 I (44367) wifi_init: WiFi IRAM OP enabled I (44377) wifi_init: WiFi RX IRAM OP enabled I (44387) rs_matter_stack::wifible: Wifi driver initialized I (44387) rs_matter_stack::wifible: Running Matter in operating mode (Wifi) I (44397) rs_matter_stack::wifi: Trying with requested network first - SSID: IOT_Test_Wifi_2 I (44407) rs_matter_stack::wifi::mgmt: Connecting to SSID IOT_Test_Wifi_2 I (44407) rs_matter_stack::wifi::mgmt: Connecting with Client(ClientConfiguration { ssid: "IOT_Test_Wifi_2", bssid: None, auth_method: WPAWPA2Personal, channel: None, scan_method: CompleteScan(Signal), pmf_cfg: NotCapable }) W (44447) wifi:ACK_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (44447) wifi:CTS_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (44457) wifi:(agc)0x600a7128:0xd200aa0e, min.avgNF:0xce->0xd2(dB), RCalCount:0xa, min.RRssi:0xa0e(-95.12) W (44467) wifi:(TB)WDEV_PWR_TB_MCS0:19 W (44467) wifi:(TB)WDEV_PWR_TB_MCS1:19 W (44467) wifi:(TB)WDEV_PWR_TB_MCS2:19 W (44477) wifi:(TB)WDEV_PWR_TB_MCS3:19 W (44477) wifi:(TB)WDEV_PWR_TB_MCS4:19 W (44477) wifi:(TB)WDEV_PWR_TB_MCS5:19 W (44487) wifi:(TB)WDEV_PWR_TB_MCS6:18 W (44487) wifi:(TB)WDEV_PWR_TB_MCS7:18 W (44487) wifi:(TB)WDEV_PWR_TB_MCS8:17 W (44497) wifi:(TB)WDEV_PWR_TB_MCS9:15 W (44497) wifi:(TB)WDEV_PWR_TB_MCS10:15 W (44497) wifi:(TB)WDEV_PWR_TB_MCS11:15 I (44507) wifi:11ax coex: WDEVAX_PTI0(0x55777555), WDEVAX_PTI1(0x00003377). I (44507) wifi:mode : sta (40:4c:ca:11:22:33) I (44517) wifi:enable tsf I (44517) rs_matter_stack: Waiting for the network to come up... I (46287) light: Light toggled I (47257) wifi:new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1 I (47257) wifi:(connect)dot11_authmode:0x3, pairwise_cipher:0x3, group_cipher:0x3 I (47257) wifi:state: init -> auth (b0) I (47267) wifi:state: auth -> assoc (0) I (47267) wifi:Association refused temporarily, comeback time 1200 (TUs) I (48497) wifi:state: assoc -> assoc (0) I (48507) wifi:state: assoc -> init (9c0) I (48507) wifi:new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1 I (51287) light: Light toggled I (56287) light: Light toggled I (59517) rs_matter_stack::wifi::mgmt: Connecting with Client(ClientConfiguration { ssid: "IOT_Test_Wifi_2", bssid: None, auth_method: WPA2WPA3Personal, channel: None, scan_method: CompleteScan(Signal), pmf_cfg: NotCapable }) W (59527) wifi:(itwt)itwt_stop_process! I (59537) wifi:flush txq I (59537) wifi:stop sw txq I (59537) wifi:lmac stop hw txq W (59567) wifi:ACK_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (59567) wifi:CTS_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (59567) wifi:(agc)0x600a7128:0xd20f4a14, min.avgNF:0xce->0xd2(dB), RCalCount:0xf4, min.RRssi:0xa14(-94.75) W (59577) wifi:(TB)WDEV_PWR_TB_MCS0:19 W (59577) wifi:(TB)WDEV_PWR_TB_MCS1:19 W (59587) wifi:(TB)WDEV_PWR_TB_MCS2:19 W (59587) wifi:(TB)WDEV_PWR_TB_MCS3:19 W (59597) wifi:(TB)WDEV_PWR_TB_MCS4:19 W (59597) wifi:(TB)WDEV_PWR_TB_MCS5:19 W (59597) wifi:(TB)WDEV_PWR_TB_MCS6:18 W (59607) wifi:(TB)WDEV_PWR_TB_MCS7:18 W (59607) wifi:(TB)WDEV_PWR_TB_MCS8:17 W (59607) wifi:(TB)WDEV_PWR_TB_MCS9:15 W (59617) wifi:(TB)WDEV_PWR_TB_MCS10:15 W (59617) wifi:(TB)WDEV_PWR_TB_MCS11:15 I (59617) wifi:11ax coex: WDEVAX_PTI0(0x55777555), WDEVAX_PTI1(0x00003377). I (59627) wifi:mode : sta (40:4c:ca:11:22:33) I (59627) wifi:enable tsf I (61287) light: Light toggled I (66287) light: Light toggled I (71287) light: Light toggled I (74637) rs_matter_stack::wifi::mgmt: Connecting with Client(ClientConfiguration { ssid: "IOT_Test_Wifi_2", bssid: None, auth_method: WEP, channel: None, scan_method: CompleteScan(Signal), pmf_cfg: NotCapable }) W (74647) wifi:(itwt)itwt_stop_process! I (74647) wifi:flush txq I (74647) wifi:stop sw txq I (74657) wifi:lmac stop hw txq W (74677) wifi:ACK_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (74677) wifi:CTS_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (74677) wifi:(agc)0x600a7128:0xd21cea18, min.avgNF:0xce->0xd2(dB), RCalCount:0x1ce, min.RRssi:0xa18(-94.50) W (74687) wifi:(TB)WDEV_PWR_TB_MCS0:19 W (74697) wifi:(TB)WDEV_PWR_TB_MCS1:19 W (74697) wifi:(TB)WDEV_PWR_TB_MCS2:19 W (74697) wifi:(TB)WDEV_PWR_TB_MCS3:19 W (74707) wifi:(TB)WDEV_PWR_TB_MCS4:19 W (74707) wifi:(TB)WDEV_PWR_TB_MCS5:19 W (74707) wifi:(TB)WDEV_PWR_TB_MCS6:18 W (74717) wifi:(TB)WDEV_PWR_TB_MCS7:18 W (74717) wifi:(TB)WDEV_PWR_TB_MCS8:17 W (74717) wifi:(TB)WDEV_PWR_TB_MCS9:15 W (74727) wifi:(TB)WDEV_PWR_TB_MCS10:15 W (74727) wifi:(TB)WDEV_PWR_TB_MCS11:15 I (74727) wifi:11ax coex: WDEVAX_PTI0(0x55777555), WDEVAX_PTI1(0x00003377). I (74737) wifi:mode : sta (40:4c:ca:11:22:33) I (74737) wifi:enable tsf I (76287) light: Light toggled I (77487) wifi:new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1 I (77487) wifi:(connect)dot11_authmode:0x3, pairwise_cipher:0x3, group_cipher:0x3 I (77487) wifi:state: init -> auth (b0) I (77497) wifi:state: auth -> assoc (0) I (77497) wifi:state: assoc -> run (10) I (77497) wifi:(trc)phytype:CBW20-SGI, snr:29, maxRate:144, highestRateIdx:0 I (77507) wifi:(trc)rate(L-MCS5, schedIdx:3), ampdu(rate:L-MCS5, schedIdx(3, stop:8)), snr:29, ampduState:wait operational I (77517) wifi:ifidx:0, rssi:-67, nf:-96, phytype(0x3, CBW20-SGI), phymode(0x3, 11bgn), max_rate:1440, he:0 I (77527) wifi:max ampdu length exponent:3(65535 bytes), mmss:6(8 us) I (77537) wifi:connected with IOT_Test_Wifi_2, aid = 5, channel 1, BW20, bssid = f8:a1:1a:16:43:a3 I (77537) wifi:cipher(pairwise:0x3, group:0x3), pmf:1, security:WPA2-PSK, phy:11bgn, rssi:-67 I (77557) wifi:pm start, type: 1, twt_start:0 I (77557) wifi:pm start, type:1, aid:0x5, trans-BSSID:f8:a1:1a:16:43:a3, BSSID[5]:0x38, mbssid(max-indicator:0, index:0), he:0 I (77567) wifi:dp: 1, bi: 102400, li: 3, scale listen interval from 307200 us to 307200 us I (77577) wifi:set rx beacon pti, rx_bcn_pti: 10, bcn_timeout: 25000, mt_pti: 10, mt_time: 10000 I (77577) wifi:[ADDBA]TX addba request, tid:0, dialogtoken:1, bufsize:64, A-MSDU:0(not supported), policy:1(IMR), ssn:0(0x0) I (77587) wifi:[ADDBA]TX addba request, tid:7, dialogtoken:2, bufsize:64, A-MSDU:0(not supported), policy:1(IMR), ssn:0(0x20) I (77607) wifi:[ADDBA]TX addba request, tid:5, dialogtoken:3, bufsize:64, A-MSDU:0(not supported), policy:1(IMR), ssn:0(0x0) I (77617) wifi:[ADDBA]RX addba response, status:0, tid:0/tb:1(0xa1), bufsize:64, batimeout:0, txa_wnd:64 I (77627) wifi:[ADDBA]RX addba response, status:0, tid:7/tb:1(0xa1), bufsize:64, batimeout:0, txa_wnd:64 I (77637) wifi:[ADDBA]RX addba response, status:0, tid:5/tb:1(0xa1), bufsize:64, batimeout:0, txa_wnd:64 I (77637) wifi:AP's beacon interval = 102400 us, DTIM period = 1 I (77647) rs_matter_stack::wifi::mgmt: Successfully connected with Client(ClientConfiguration { ssid: "IOT_Test_Wifi_2", bssid: None, auth_method: WEP, channel: None, scan_method: CompleteScan(Signal), pmf_cfg: NotCapable }) W (77657) wifi:idx:0, ifx:0, tid:0, TAHI:0x1003834, TALO:0x291ee7f8, (ssn:0, win:64, cur_ssn:0), CONF:0xc0000005 I (77677) rs_matter_stack::wifi::mgmt: Connected to SSID IOT_Test_Wifi_2 I (78647) esp_netif_handlers: sta ip: 192.168.1.86, mask: 255.255.255.0, gw: 192.168.1.1 I (79377) rs_matter_stack: Got IP network: IPv4: 192.168.1.86, IPv6: fe80::424c:caff:fe50:912c, Interface: 4, MAC: 40:4c:ca:11:22:33 I (79377) rs_matter_stack: Responder memory: Responder=176B, Runner=10664B I (79387) rs_matter::respond: Responder: Creating 4 handlers I (79387) rs_matter::respond: Responder: Handlers size: 8040B I (79397) rs_matter::respond: Busy Responder: Creating 2 handlers I (79407) rs_matter::respond: Busy Responder: Handlers size: 712B I (79407) rs_matter::transport::core: Running Matter transport I (79417) rs_matter::transport::core: Waiting for orphaned RX packets I (79427) rs_matter::transport::core: Running Matter built-in mDNS service I (79437) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (79447) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (81287) light: Light toggled I (86297) light: Light toggled I (87247) rs_matter::mdns::builtin: Replying to mDNS query from UDP [::ffff:192.168.1.100]:5353 on [ff02::fb%4]:5353 I (91297) light: Light toggled I (96297) light: Light toggled I (101297) light: Light toggled I (106297) light: Light toggled I (108247) rs_matter::mdns::builtin: Replying to mDNS query from UDP [::ffff:192.168.1.100]:5353 on [ff02::fb%4]:5353 I (108257) rs_matter::mdns::builtin: Replying to mDNS query from UDP [fe80::1ae7:efa9:632f:2cf6%4]:5353 on [ff02::fb%4]:5353 I (109447) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (109457) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (111307) light: Light toggled I (116307) light: Light toggled I (121307) light: Light toggled I (126307) light: Light toggled I (131307) light: Light toggled I (136317) light: Light toggled I (139467) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (139467) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (141317) light: Light toggled I (146317) light: Light toggled I (151317) light: Light toggled I (155347) rs_matter::mdns::builtin: Replying to mDNS query from UDP [::ffff:192.168.1.100]:5353 on [ff02::fb%4]:5353 I (156317) light: Light toggled I (161327) light: Light toggled I (166327) light: Light toggled I (169477) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (169477) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (171327) light: Light toggled I (176327) light: Light toggled I (178387) rs_matter::mdns::builtin: Replying to mDNS query from UDP [::ffff:192.168.1.100]:5353 on [ff02::fb%4]:5353 I (181327) light: Light toggled I (186327) light: Light toggled I (191337) light: Light toggled I (196337) light: Light toggled I (199487) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (199487) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (201337) light: Light toggled I (206337) light: Light toggled I (211337) light: Light toggled I (216347) light: Light toggled I (221347) light: Light toggled I (226347) light: Light toggled I (229497) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (229497) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (231347) light: Light toggled I (236347) light: Light toggled I (241357) light: Light toggled I (246357) light: Light toggled I (251357) light: Light toggled I (256357) light: Light toggled ```
ivmarkov commented 4 months ago

There are no obvious errors reported by the device from what I can tell, everything looks like it is working. I just cannot get the device to actually finish commissioning in Home Assistant. But I can see that the Wifi credentials are correctly sent to the device, and it acquires an IP address.

What happens is that the first part of the commissioning process, which is running over BLE completes successfully. The second part of the commissioning, which is running over IPv6 however fails, as we are never contacted on the Matter UDP port.

99% this is due to some sort of mDNS issue, because:

I would check the following:

The reason for the above is that Matter runs over Ipv6. Moreover, more often than not it runs over link-local ipv6 addresses (again, google it, but these are - roughly speaking - something like the 169.254.0.0/16 range that Macs sometimes use when they can't find a DHCP server, except ipv6 link-local addresses are (a) much more popular - basically there is no DHCP in the ipv6 world (b) should almost always be present on your ipv6 NIC even if there are no other ipv6 addresses because - say - your internet provider does not offer ipv6 connectivity). But as I said, link-local only works on a single (or L2/bridged) LAN, as there is no routing involved.

The phone just fails to find it afterwards, but this may very well be due to the HA matter addon being experimental.

I would not sit on this. HA likely uses the C++ Matter SDK which is the most stable one and is used by basically all the big players (Apple/Samsung/Google/AWS) in production, as they basically created it. With other companies like Espressif participating too.

Would it be possible to paste the HA Matter logs here? Also your phone logs? This would:

Another option: Can you try the light_eth example too? It only goes via mDNS + ipv6 so if there is an mDNS discoverability issue, we'll know right away...

oddlama commented 4 months ago

Are ALL of the esp/your phone/HA connected to the same LAN? (Wirelessly or wired), but it is key that it is the same 192.168.0.X network you are using, which is under the same L2 bridge in your router (i.e. all of esp/your phone/HA can "pingv6" each other without the need to route packets across separate ipv6 networks?

Yes. All devices in my home network have a working link local address and also ULAs that I commission via IPv6 Router Advertisements from my main gateway server. Pinging either of them works fine from any device. While testing this I just noticed that the phone I used yesterday apparently doesn't resolve mDNS addresses (some 6 year old huawei phone). So I repeated the commissioning with a Google Pixel where I tested mDNS resolution beforehand. Still after a while it shows "Unknown Error" while commissioning, pretty much the same as yesterday.

Is your HA having a link-local Ipv6 address? (You can google what this is); I'm pretty sure your phone has one, in theory HA should as well, but...

Yes. All devices can reach the HA instance via its IPv6 LLA.

> ping -6 fe80::a84d:ebff:fe58:9059%lan1 # HA-instance
PING fe80::a84d:ebff:fe58:9059%lan1 (fe80::a84d:ebff:fe58:9059%lan1) 56 data bytes
64 bytes from fe80::a84d:ebff:fe58:9059%lan1: icmp_seq=1 ttl=64 time=0.393 ms
64 bytes from fe80::a84d:ebff:fe58:9059%lan1: icmp_seq=2 ttl=64 time=0.372 ms
[...]

While testing I noticed something odd though, I cannot reach the ESPC6 via it's LLA until I ping it once via IPv4:

> I (164577) rs_matter_stack: Got IP network: IPv4: 192.168.1.86, IPv6: fe80::424c:caff:fe50:912c, Interface: 2, MAC: 40:4C:CA:50:91:2C
> ping -6 fe80::424c:caff:fe50:912c%lan1 # ESP
PING fe80::424c:caff:fe50:912c%lan1 (fe80::424c:caff:fe50:912c%lan1) 56 data bytes
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=1 Destination unreachable: Address unreachable
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=2 Destination unreachable: Address unreachable
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=3 Destination unreachable: Address unreachable
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=4 Destination unreachable: Address unreachable
ping: sendmsg: No route to host
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=5 Destination unreachable: Address unreachable
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=6 Destination unreachable: Address unreachable
[...]
> ping -4 192.168.1.86
PING 192.168.1.86 (192.168.1.86) 56(84) bytes of data.
64 bytes from 192.168.1.86: icmp_seq=1 ttl=64 time=665 ms
64 bytes from 192.168.1.86: icmp_seq=2 ttl=64 time=187 ms
[...]
> ping -6 fe80::424c:caff:fe50:912c%lan1 # ESP
PING fe80::424c:caff:fe50:912c%lan1 (fe80::424c:caff:fe50:912c%lan1) 56 data bytes
64 bytes from fe80::424c:caff:fe50:912c%lan1: icmp_seq=1 ttl=255 time=155 ms
64 bytes from fe80::424c:caff:fe50:912c%lan1: icmp_seq=2 ttl=255 time=485 ms
[...]

But as I said, link-local only works on a single (or L2/bridged) LAN, as there is no routing involved.

All devices are physically connected to the same switch, and I would hope that the wifi AP isn't doing any shenanigans. I can at least ping other wifi devices via their LLA without pre-pinging ipv4.

I would not sit on this. HA likely uses the C++ Matter SDK which is the most stable one and is used by basically all the big players (Apple/Samsung/Google/AWS) in production, as they basically created it. With other companies like Espressif participating too.

Would it be possible to paste the HA Matter logs here? Also your phone logs?

I just repeated the commissioning today, so ignore anything in the logs after yesterday. The attempt from yesterday was at 20:47.

HA Logs ``` s6-rc: info: service banner successfully started s6-rc: info: service matter-server: starting s6-rc: info: service matter-server successfully started s6-rc: info: service legacy-services: starting [20:42:26] INFO: Starting Matter Server... s6-rc: info: service legacy-services successfully started [20:42:27] INFO: Using 'end0' as primary network interface. [20:42:28] INFO: Successfully send discovery information to Home Assistant. 2024-07-08 20:42:32.288 (MainThread) INFO [matter_server.server.stack] Initializing CHIP/Matter Logging... 2024-07-08 20:42:32.289 (MainThread) INFO [matter_server.server.stack] Initializing CHIP/Matter Controller Stack... [1720464152.363629][126:126] CHIP:CTL: Setting attestation nonce to random value [1720464152.364033][126:126] CHIP:CTL: Setting CSR nonce to random value [1720464152.366065][126:126] CHIP:DL: ChipLinuxStorage::Init: Using KVS config file: /tmp/chip_kvs [1720464152.366367][126:126] CHIP:DL: writing settings to file (/tmp/chip_kvs-J96fZK) [1720464152.366506][126:126] CHIP:DL: renamed tmp file to file (/tmp/chip_kvs) [1720464152.366856][126:126] CHIP:DL: ChipLinuxStorage::Init: Using KVS config file: /data/chip_factory.ini [1720464152.367022][126:126] CHIP:DL: writing settings to file (/data/chip_factory.ini-jSyhZK) [1720464152.367122][126:126] CHIP:DL: renamed tmp file to file (/data/chip_factory.ini) [1720464152.367170][126:126] CHIP:DL: ChipLinuxStorage::Init: Using KVS config file: /data/chip_config.ini [1720464152.367250][126:126] CHIP:DL: writing settings to file (/data/chip_config.ini-PkxYiH) [1720464152.367306][126:126] CHIP:DL: renamed tmp file to file (/data/chip_config.ini) [1720464152.367338][126:126] CHIP:DL: ChipLinuxStorage::Init: Using KVS config file: /data/chip_counters.ini [1720464152.367397][126:126] CHIP:DL: writing settings to file (/data/chip_counters.ini-PN5kQI) [1720464152.367450][126:126] CHIP:DL: renamed tmp file to file (/data/chip_counters.ini) [1720464152.367913][126:126] CHIP:DL: writing settings to file (/data/chip_factory.ini-Gu6HqJ) [1720464152.368203][126:126] CHIP:DL: renamed tmp file to file (/data/chip_factory.ini) [1720464152.368234][126:126] CHIP:DL: NVS set: chip-factory/unique-id = "4C866A6857B21130" [1720464152.368413][126:126] CHIP:DL: writing settings to file (/data/chip_factory.ini-1VjKvJ) [1720464152.371634][126:126] CHIP:DL: renamed tmp file to file (/data/chip_factory.ini) [1720464152.371686][126:126] CHIP:DL: NVS set: chip-factory/vendor-id = 65521 (0xFFF1) [1720464152.371909][126:126] CHIP:DL: writing settings to file (/data/chip_factory.ini-vG2kzK) [1720464152.374394][126:126] CHIP:DL: renamed tmp file to file (/data/chip_factory.ini) [1720464152.374446][126:126] CHIP:DL: NVS set: chip-factory/product-id = 32769 (0x8001) [1720464152.374644][126:126] CHIP:DL: writing settings to file (/data/chip_counters.ini-uWHgdI) [1720464152.377123][126:126] CHIP:DL: renamed tmp file to file (/data/chip_counters.ini) [1720464152.377176][126:126] CHIP:DL: NVS set: chip-counters/reboot-count = 1 (0x1) [1720464152.377397][126:126] CHIP:DL: writing settings to file (/data/chip_counters.ini-GqB8zK) [1720464152.379943][126:126] CHIP:DL: renamed tmp file to file (/data/chip_counters.ini) [1720464152.379993][126:126] CHIP:DL: NVS set: chip-counters/total-operational-hours = 0 (0x0) [1720464152.380231][126:126] CHIP:DL: writing settings to file (/data/chip_counters.ini-OWhq4H) [1720464152.382719][126:126] CHIP:DL: renamed tmp file to file (/data/chip_counters.ini) [1720464152.382770][126:126] CHIP:DL: NVS set: chip-counters/boot-reason = 0 (0x0) [1720464152.382983][126:126] CHIP:DL: writing settings to file (/data/chip_config.ini-YTNYUI) [1720464152.385511][126:126] CHIP:DL: renamed tmp file to file (/data/chip_config.ini) [1720464152.385568][126:126] CHIP:DL: NVS set: chip-config/regulatory-location = 0 (0x0) [1720464152.385791][126:126] CHIP:DL: writing settings to file (/data/chip_config.ini-XC3FyI) [1720464152.388366][126:126] CHIP:DL: renamed tmp file to file (/data/chip_config.ini) [1720464152.388416][126:126] CHIP:DL: NVS set: chip-config/location-capability = 2 (0x2) [1720464152.388924][126:126] CHIP:DL: Got Ethernet interface: end0 [1720464152.389256][126:126] CHIP:DL: Found the primary Ethernet interface:end0 [1720464152.389744][126:126] CHIP:DL: Failed to get WiFi interface [1720464152.389766][126:126] CHIP:DL: Failed to reset WiFi statistic counts 2024-07-08 20:42:32.390 (MainThread) WARNING [PersistentStorage] Initializing persistent storage from file: /data/chip.json 2024-07-08 20:42:32.390 (MainThread) ERROR [root] [Errno 2] No such file or directory: '/data/chip.json' 2024-07-08 20:42:32.391 (MainThread) CRITICAL [root] Could not load configuration from /data/chip.json - resetting configuration... 2024-07-08 20:42:32.391 (MainThread) WARNING [root] No valid SDK configuration present - clearing out configuration 2024-07-08 20:42:32.391 (MainThread) WARNING [root] No valid REPL configuration present - clearing out configuration 2024-07-08 20:42:32.585 (MainThread) WARNING [CertificateAuthorityManager] Loading certificate authorities from storage... 2024-07-08 20:42:32.585 (MainThread) WARNING [CertificateAuthority] New CertificateAuthority at index 1 2024-07-08 20:42:32.598 (MainThread) WARNING [FabricAdmin] New FabricAdmin: FabricId: 0x0000000000000002, VendorId = 0x134B 2024-07-08 20:42:32.599 (MainThread) INFO [matter_server.server.stack] CHIP Controller Stack initialized. 2024-07-08 20:42:32.600 (MainThread) INFO [matter_server.server.server] Starting the Matter Server... 2024-07-08 20:42:32.607 (MainThread) INFO [matter_server.server.helpers.paa_certificates] Fetching the latest PAA root certificates from DCL. 2024-07-08 20:42:35.410 (MainThread) INFO [matter_server.server.helpers.paa_certificates] Fetched 60 PAA root certificates from DCL. 2024-07-08 20:42:35.411 (MainThread) INFO [matter_server.server.helpers.paa_certificates] Fetching the latest PAA root certificates from Git. 2024-07-08 20:42:35.934 (MainThread) INFO [matter_server.server.helpers.paa_certificates] Fetched 2 PAA root certificates from Git. 2024-07-08 20:42:35.936 (MainThread) WARNING [FabricAdmin] Allocating new controller with CaIndex: 1, FabricId: 0x0000000000000002, NodeId: 0x000000000001B669, CatTags: [] 2024-07-08 20:42:36.098 (Dummy-2) CHIP_ERROR [chip.native.DL] Long dispatch time: 159 ms, for event type 2 2024-07-08 20:42:36.115 (MainThread) INFO [matter_server.server.device_controller] Loaded 0 nodes from stored configuration 2024-07-08 20:42:36.137 (MainThread) INFO [matter_server.server.vendor_info] Loading vendor info from storage. 2024-07-08 20:42:36.137 (MainThread) INFO [matter_server.server.vendor_info] Loaded 0 vendors from storage. 2024-07-08 20:42:36.137 (MainThread) INFO [matter_server.server.vendor_info] Fetching the latest vendor info from DCL. 2024-07-08 20:42:36.388 (MainThread) INFO [matter_server.server.vendor_info] Fetched 219 vendors from DCL. 2024-07-08 20:42:36.388 (MainThread) INFO [matter_server.server.vendor_info] Saving vendor info to storage. 2024-07-08 20:47:26.295 (MainThread) INFO [matter_server.server.device_controller] Starting Matter commissioning using Node ID 1 and IP fe80::424c:caff:fe50:912c%end0. 2024-07-08 20:47:26.626 (Dummy-2) CHIP_ERROR [chip.native.SC] Received error (protocol code 4) during PASE process: src/protocols/secure_channel/PASESession.cpp:778: CHIP Error 0x000000AC: Internal error 2024-07-08 20:47:26.626 (Dummy-2) CHIP_ERROR [chip.native.SC] Failed during PASE session setup: src/protocols/secure_channel/PASESession.cpp:778: CHIP Error 0x000000AC: Internal error 2024-07-08 20:47:26.627 (Dummy-2) CHIP_ERROR [chip.native.ZCL] Secure Pairing Failed 2024-07-08 20:47:26.627 (Dummy-2) WARNING [root] Failed to establish secure session to device: src/controller/python/ChipDeviceController-ScriptDevicePairingDelegate.cpp:89: CHIP Error 0x00000003: Incorrect state 2024-07-08 20:47:26.627 (MainThread) ERROR [matter_server.server.client_handler] [281473370917904] Error while handling: commission_on_network: Commissioning failed for node 1. 2024-07-09 15:56:46.101 (MainThread) INFO [matter_server.server.device_controller] Starting Matter commissioning using Node ID 2 and IP fe80::424c:caff:fe50:912c%end0. 2024-07-09 15:56:46.183 (Dummy-2) CHIP_ERROR [chip.native.SC] Received error (protocol code 4) during PASE process: src/protocols/secure_channel/PASESession.cpp:778: CHIP Error 0x000000AC: Internal error 2024-07-09 15:56:46.183 (Dummy-2) CHIP_ERROR [chip.native.SC] Failed during PASE session setup: src/protocols/secure_channel/PASESession.cpp:778: CHIP Error 0x000000AC: Internal error 2024-07-09 15:56:46.183 (Dummy-2) CHIP_ERROR [chip.native.ZCL] Secure Pairing Failed 2024-07-09 15:56:46.183 (Dummy-2) WARNING [root] Failed to establish secure session to device: src/controller/python/ChipDeviceController-ScriptDevicePairingDelegate.cpp:89: CHIP Error 0x00000003: Incorrect state 2024-07-09 15:56:46.184 (MainThread) ERROR [matter_server.server.client_handler] [281473370917904] Error while handling: commission_on_network: Commissioning failed for node 2. ```

I could not find any relevant logs on the mobile phone. There are the companion app logs, but they show nothing about the matter commissioning process just about 50 lines of Android UI framework stuff.

Another option: Can you try the light_eth example too? It only goes via mDNS + ipv6 so if there is an mDNS discoverability issue, we'll know right away...

I'll check if I have a supported ethernet module lying around somewhere.

oddlama commented 4 months ago

Interestingly, I was just able to get the device to commission now, by repeating the process 5 times (actually on the old mDNS-unaware phone). Nothing else has changed, same setup as yesterday. I actually just wanted to get one session of coherent logs to check if the android system logs would contain anything (they didn't), restarted the ESP as usual and this time it worked for whatever reason.

I can see ACL errors regularly when the light state changes, but I cannot spot anything that isn't working. Here are the logs:

ESP log (3k lines) ``` I (23) boot: ESP-IDF 0572f11 2nd stage bootloader I (24) boot: compile time Jul 7 2024 18:01:57 I (24) boot: chip revision: v0.0 I (26) boot.esp32c6: SPI Speed : 80MHz I (31) boot.esp32c6: SPI Mode : DIO I (36) boot.esp32c6: SPI Flash Size : 4MB I (41) boot: Enabling RNG early entropy source... I (46) boot: Partition Table: I (50) boot: ## Label Usage Type ST Offset Length I (57) boot: 0 nvs WiFi data 01 02 00009000 00006000 I (64) boot: 1 phy_init RF data 01 01 0000f000 00001000 I (72) boot: 2 factory factory app 00 00 00010000 00300000 I (79) boot: End of partition table I (84) esp_image: segment 0: paddr=00010020 vaddr=42000020 size=1c1240h (1839680) map I (471) esp_image: segment 1: paddr=001d1268 vaddr=40800000 size=06db0h ( 28080) load I (479) esp_image: segment 2: paddr=001d8020 vaddr=421c8020 size=7af28h (503592) map I (583) esp_image: segment 3: paddr=00252f50 vaddr=40806db0 size=12818h ( 75800) load I (602) esp_image: segment 4: paddr=00265770 vaddr=408195d0 size=1072ch ( 67372) load I (627) boot: Loaded app from partition at offset 0x10000 I (627) boot: Disabling RNG early entropy source... I (638) cpu_start: Unicore app W (647) clk: esp_perip_clk_init() has not been implemented yet I (654) cpu_start: Pro cpu start user code I (654) cpu_start: cpu freq: 160000000 Hz I (654) cpu_start: Application information: I (657) cpu_start: Project name: libespidf I (662) cpu_start: App version: c9297bc I (667) cpu_start: Compile time: Jul 7 2024 18:01:54 I (673) cpu_start: ELF file SHA256: 000000000... I (678) cpu_start: ESP-IDF: 0572f11 I (683) cpu_start: Min chip rev: v0.0 I (688) cpu_start: Max chip rev: v0.99 I (693) cpu_start: Chip rev: v0.0 I (698) heap_init: Initializing. RAM available for dynamic allocation: I (705) heap_init: At 4082F520 len 0004D0F0 (308 KiB): RAM I (711) heap_init: At 4087C610 len 00002F54 (11 KiB): RAM I (717) heap_init: At 50000000 len 00003FE8 (15 KiB): RTCRAM I (724) spi_flash: detected chip: generic I (728) spi_flash: flash io: dio W (732) spi_flash: Detected size(8192k) larger than the size in the binary image header(4096k). Using the size in the binary image header. W (745) pcnt(legacy): legacy driver is deprecated, please migrate to `driver/pulse_cnt.h` W (754) timer_group: legacy driver is deprecated, please migrate to `driver/gptimer.h` I (763) sleep: Configure to isolate all GPIO pins in sleep state I (769) sleep: Enable automatic switching of GPIO sleep configuration I (776) coexist: coex firmware version: d96c1e51f I (782) coexist: coexist rom version 5b8dcfa I (787) main_task: Started on CPU0 I (787) main_task: Calling app_main() I (787) light: Starting... I (797) esp_idf_matter::stack: Async IO initialized; using `async-io-mini` I (817) rs_matter_stack::wifible: Matter Stack memory: 52328B I (817) esp_idf_svc::bt: Init bluetooth controller I (817) BLE_INIT: Using main XTAL as clock source I (827) BLE_INIT: ble controller commit:[39c6e05] I (827) esp_idf_svc::bt: Enable bluetooth controller I (827) phy_init: phy_version 290,81efd96,May 8 2024,10:42:13 I (887) phy: libbtbb version: f97b181, May 8 2024, 10:42:29 I (887) esp_idf_svc::bt: Init bluedroid I (897) esp_idf_svc::bt: Enable bluedroid I (907) rs_matter_stack::wifible: BLE driver initialized I (907) rs_matter_stack::wifible: Running Matter in commissioning mode (BLE) I (907) esp_idf_matter::ble: BLE Gap and Gatts initialized I (917) esp_idf_matter::ble: BLE Gap and Gatts subscriptions initialized I (927) esp_idf_matter::ble: Gatts BTP app registered I (927) rs_matter_stack: Responder memory: Responder=176B, Runner=10664B I (937) rs_matter::respond: Responder: Creating 4 handlers I (937) rs_matter::respond: Responder: Handlers size: 8040B I (947) rs_matter::respond: Busy Responder: Creating 2 handlers I (957) rs_matter::respond: Busy Responder: Handlers size: 712B I (967) rs_matter::pairing::code: Pairing Code: 0087-6800-071 I (967) rs_matter::pairing::qr: QR Code Text: MT:Y.K90KQS02Z6Q66D33P084L90Z.I332SQ43I15T0 I (1017) rs_matter::pairing::qr: █████████████████████████████████████ I (1027) rs_matter::pairing::qr: █████████████████████████████████████ I (1037) rs_matter::pairing::qr: ████ ▄▄▄▄▄ █ ▄▄▄ ██▄ █ ▄ █ ▄▄▄▄▄ ████ I (1047) rs_matter::pairing::qr: ████ █ █ █▄▄▀▀▀██▄ ▄ █▄█ █ █ ████ I (1057) rs_matter::pairing::qr: ████ █▄▄▄█ █▄▀▀▀▄█▄ █▀▀ █ █▄▄▄█ ████ I (1077) rs_matter::pairing::qr: ████▄▄▄▄▄▄▄█▄█ █ ▀▄▀ █ ▀▄█▄▄▄▄▄▄▄████ I (1087) rs_matter::pairing::qr: ████ ██ ▄ ▄▄ ▀██▄ ██▀▀ ▄█▄▀▀ ▀▄ ████ I (1097) rs_matter::pairing::qr: ████▀ ▀ █▄▄█▄▀▄▄ █▄ ▀███▀▀ ▄ ▀ ████ I (1117) rs_matter::pairing::qr: ████ ▀▀▀▄▄▄█▀▀ ▄ ▀▄ ▀ █▀ ██ ▄▄▀▀████ I (1127) rs_matter::pairing::qr: ████ ▀█ ▄▄ ▀ ██▀▄█▀▄▀█▀▀▄▀▀ ▄█ █████ I (1137) rs_matter::pairing::qr: ████ ▀█▄▀▄▀▀▀▀█▄▀ █ ▄█▀█▄█▀▄█▀▀▄████ I (1147) rs_matter::pairing::qr: ████ █▀ ▄ ▀▀ █▄█▀▄█▄▄ ▀▄█ ▀█ ▀████ I (1167) rs_matter::pairing::qr: ████▄▄▄███▄█▀▀▀ █▄ ▄▄▀██ ▄▄▄ ▀█▀█████ I (1177) rs_matter::pairing::qr: ████ ▄▄▄▄▄ █ ▄ ▄ █ ▀█▄ ▀ █▄█ █▀ ████ I (1187) rs_matter::pairing::qr: ████ █ █ █ █ █▄▄▄█▄▀█▀ ▄▄ ▄█▄▀▄████ I (1197) rs_matter::pairing::qr: ████ █▄▄▄█ ██▀▀▄▀▄█▄ ▄▀▄▀▄ ▀██▄▄████ I (1217) rs_matter::pairing::qr: ████▄▄▄▄▄▄▄█▄██▄█▄█▄█▄▄▄▄▄█▄▄█▄▄█████ I (1227) rs_matter::pairing::qr: █████████████████████████████████████ I (1247) rs_matter::pairing::qr: █████████████████████████████████████ I (1257) rs_matter::transport::core: Running Matter transport I (1267) rs_matter::transport::core: Waiting for orphaned RX packets I (6267) light: Light toggled I (9577) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [H|M|B|E,OP:6c] HANDSHAKE REQ HandshakeReq { versions: 4, mtu: 131, window_size: 5 } Selected version: 4, MTU: 128, window size: 5 I (9597) rs_matter::transport::network::btp::context: Subscribe request from 66:F3:E3:A9:8A:AC I (9597) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [H|M|B|E,OP:6c] HANDSHAKE RESP HandshakeResp { version: 4, mtu: 128, window_size: 5 } I (9657) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:0,CTR:0,LEN:62] READ 98B I (9657) rs_matter::transport::session: New exchange: 0::0 [SID:0,RSID:0,EID:7f94] :: Responder(AcceptPending) I (9667) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [S,SID:0,CTR:69ce28f,SRC:d09ec4192410101f][I,EID:7f94,PROTO:0,OP:20] SC::PBKDFParamRequest => Processing (new exchange) I (9687) rs_matter::transport::core: Exchange 0::0 [SID:0,RSID:0,EID:7f94]: Accepted I (9697) rs_matter::respond: Responder: Handler 0 / exchange 0::0: Starting I (9707) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [U,SID:0,CTR:e85a131,DST:d09ec4192410101f][EID:7f94,PROTO:0,OP:21] SC::PBKDFParamResponse => Sending I (9717) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:0,CTR:1,LEN:8b] WRITE 123B I (9727) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C|E,CTR:2] WRITE 16B I (9837) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:2,CTR:1,LEN:5c] READ 92B I (9837) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [S,SID:0,CTR:69ce290,SRC:d09ec4192410101f][I,EID:7f94,PROTO:0,OP:22] SC::PASEPake1 => Processing I (11727) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [U,SID:0,CTR:e85a132,DST:d09ec4192410101f][EID:7f94,PROTO:0,OP:23] SC::PASEPake2 => Sending I (11727) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:1,CTR:3,LEN:7f] WRITE 123B I (11737) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C|E,CTR:4] WRITE 4B I (11747) light: Light toggled I (11857) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:4,CTR:2,LEN:3b] READ 59B I (11857) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [S,SID:0,CTR:69ce291,SRC:d09ec4192410101f][I,EID:7f94,PROTO:0,OP:24] SC::PASEPake3 => Processing I (11877) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [U,SID:0,CTR:e85a133,DST:d09ec4192410101f][EID:7f94,PROTO:0,OP:40] SC::StatusReport => Sending I (11887) rs_matter::respond: Responder: Handler 0 / exchange 0::0: Completed I (11897) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:2,CTR:5,LEN:1e] WRITE 30B I (11957) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:5,CTR:3,LEN:33] READ 51B I (11957) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7f95] :: Responder(AcceptPending) I (11967) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf0][I,EID:7f95,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (11987) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7f95]: Accepted I (11987) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (11997) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d96][EID:7f95,PROTO:1,OP:5] IM::ReportData => Sending I (12017) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (12017) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:3,CTR:6,LEN:53] WRITE 83B I (12097) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:6,CTR:4,LEN:34] READ 52B I (12097) rs_matter::transport::session: New exchange: 1::1 [SID:1,RSID:79f5,EID:7f96] :: Responder(AcceptPending) I (12107) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf1][I,EID:7f96,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (12127) rs_matter::transport::core: Exchange 1::1 [SID:1,RSID:79f5,EID:7f96]: Accepted I (12127) rs_matter::respond: Responder: Handler 0 / exchange 1::1: Starting I (12137) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d97][EID:7f96,PROTO:1,OP:5] IM::ReportData => Sending I (12157) rs_matter::respond: Responder: Handler 0 / exchange 1::1: Completed I (12157) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:4,CTR:7,LEN:40] WRITE 64B I (12237) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:7,CTR:5,LEN:33] READ 51B I (12237) rs_matter::transport::session: New exchange: 1::2 [SID:1,RSID:79f5,EID:7f97] :: Responder(AcceptPending) I (12247) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf2][I,EID:7f97,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (12267) rs_matter::transport::core: Exchange 1::2 [SID:1,RSID:79f5,EID:7f97]: Accepted I (12267) rs_matter::respond: Responder: Handler 0 / exchange 1::2: Starting I (12277) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d98][EID:7f97,PROTO:1,OP:5] IM::ReportData => Sending I (12297) rs_matter::respond: Responder: Handler 0 / exchange 1::2: Completed I (12297) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:5,CTR:8,LEN:40] WRITE 64B I (12357) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:8,CTR:6,LEN:33] READ 51B I (12357) rs_matter::transport::session: New exchange: 1::3 [SID:1,RSID:79f5,EID:7f98] :: Responder(AcceptPending) I (12367) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf3][I,EID:7f98,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (12387) rs_matter::transport::core: Exchange 1::3 [SID:1,RSID:79f5,EID:7f98]: Accepted I (12387) rs_matter::respond: Responder: Handler 0 / exchange 1::3: Starting I (12397) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d99][EID:7f98,PROTO:1,OP:5] IM::ReportData => Sending I (12417) rs_matter::respond: Responder: Handler 0 / exchange 1::3: Completed I (12417) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:6,CTR:9,LEN:40] WRITE 64B I (12477) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:9,CTR:7,LEN:33] READ 51B I (12477) rs_matter::transport::session: New exchange: 1::4 [SID:1,RSID:79f5,EID:7f99] :: Responder(AcceptPending) I (12487) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf4][I,EID:7f99,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (12507) rs_matter::transport::core: Exchange 1::4 [SID:1,RSID:79f5,EID:7f99]: Accepted I (12507) rs_matter::respond: Responder: Handler 0 / exchange 1::4: Starting I (12517) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d9a][EID:7f99,PROTO:1,OP:5] IM::ReportData => Sending I (12537) rs_matter::respond: Responder: Handler 0 / exchange 1::4: Completed I (12537) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:7,CTR:a,LEN:3f] WRITE 63B I (12617) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:a,CTR:8,LEN:33] READ 51B I (12617) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7f9a] :: Responder(AcceptPending) I (12627) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf5][I,EID:7f9a,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (12647) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7f9a]: Accepted I (12647) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (12657) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d9b][EID:7f9a,PROTO:1,OP:5] IM::ReportData => Sending I (12677) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (12677) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:8,CTR:b,LEN:3f] WRITE 63B I (12737) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:b,CTR:9,LEN:33] READ 51B I (12737) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7f9b] :: Responder(AcceptPending) I (12747) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf6][I,EID:7f9b,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (12767) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7f9b]: Accepted I (12767) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (12777) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d9c][EID:7f9b,PROTO:1,OP:5] IM::ReportData => Sending I (12797) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (12797) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:9,CTR:c,LEN:3f] WRITE 63B I (13277) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:c,CTR:a,LEN:3e] READ 62B I (13277) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7f9c] :: Responder(AcceptPending) I (13287) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf7][I,EID:7f9c,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (13307) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7f9c]: Accepted I (13307) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (13317) rs_matter::data_model::sdm::noc: Handling command CertChainRequest I (13327) rs_matter::data_model::sdm::noc: Received data: 1: { I (13337) rs_matter::data_model::sdm::noc: Received Cert Type:1 I (13337) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d9d][EID:7f9c,PROTO:1,OP:9] IM::InvokeResponse => Sending I (13367) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (13367) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:a,CTR:d,LEN:229] WRITE 123B I (13377) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:e] WRITE 126B I (13387) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:f] WRITE 126B I (13437) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:10] WRITE 126B I (13557) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A,ACTR:10,CTR:b] READ 0B I (13557) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|C|E,ACTR:b,CTR:11] WRITE 52B I (13617) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:11,CTR:c,LEN:33] READ 51B I (13617) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7f9d] :: Responder(AcceptPending) I (13627) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf8][I,EID:7f9d,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (13647) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7f9d]: Accepted I (13647) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (13657) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d9e][EID:7f9d,PROTO:1,OP:5] IM::ReportData => Sending I (13677) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (13677) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:c,CTR:12,LEN:53] WRITE 83B I (13737) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:12,CTR:d,LEN:34] READ 52B I (13737) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7f9e] :: Responder(AcceptPending) I (13747) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faf9][I,EID:7f9e,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (13767) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7f9e]: Accepted I (13767) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (13777) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045d9f][EID:7f9e,PROTO:1,OP:5] IM::ReportData => Sending I (13797) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (13797) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:d,CTR:13,LEN:40] WRITE 64B I (13957) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:13,CTR:e,LEN:27] READ 39B I (13957) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7f9f] :: Responder(AcceptPending) I (13967) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fafa][I,EID:7f9f,PROTO:1,OP:a] IM::TimedRequest => Processing (new exchange) I (13987) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7f9f]: Accepted I (13987) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (13997) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da0][EID:7f9f,PROTO:1,OP:1] IM::StatusResponse => Sending I (14017) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:e,CTR:14,LEN:23] WRITE 35B I (14057) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:14,CTR:f,LEN:41] READ 65B I (14057) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fafb][I,EID:7f9f,PROTO:1,OP:8] IM::InvokeRequest => Processing I (14077) rs_matter::data_model::sdm::general_commissioning: Handling command ARM Fail Safe I (14087) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da1][EID:7f9f,PROTO:1,OP:9] IM::InvokeResponse => Sending I (14097) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (14107) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:f,CTR:15,LEN:3f] WRITE 63B I (14177) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:15,CTR:10,LEN:33] READ 51B I (14177) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa0] :: Responder(AcceptPending) I (14187) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fafc][I,EID:7fa0,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (14207) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa0]: Accepted I (14207) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (14217) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da2][EID:7fa0,PROTO:1,OP:5] IM::ReportData => Sending I (14237) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (14237) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:10,CTR:16,LEN:3f] WRITE 63B I (14297) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:16,CTR:11,LEN:27] READ 39B I (14297) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa1] :: Responder(AcceptPending) I (14307) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fafd][I,EID:7fa1,PROTO:1,OP:a] IM::TimedRequest => Processing (new exchange) I (14327) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa1]: Accepted I (14327) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (14337) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da3][EID:7fa1,PROTO:1,OP:1] IM::StatusResponse => Sending I (14357) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:11,CTR:17,LEN:23] WRITE 35B I (14397) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:17,CTR:12,LEN:46] READ 70B I (14407) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fafe][I,EID:7fa1,PROTO:1,OP:8] IM::InvokeRequest => Processing I (14417) rs_matter::data_model::sdm::general_commissioning: Handling command Set Regulatory Config I (14417) rs_matter::data_model::sdm::general_commissioning: Received country code: [68, 69] I (14437) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da4][EID:7fa1,PROTO:1,OP:9] IM::InvokeResponse => Sending I (14447) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (14457) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:12,CTR:18,LEN:3f] WRITE 63B I (14517) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:18,CTR:13,LEN:3e] READ 62B I (14517) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa2] :: Responder(AcceptPending) I (14527) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9faff][I,EID:7fa2,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (14547) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa2]: Accepted I (14547) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (14557) rs_matter::data_model::sdm::noc: Handling command CertChainRequest I (14567) rs_matter::data_model::sdm::noc: Received data: 1: { I (14577) rs_matter::data_model::sdm::noc: Received Cert Type:2 I (14577) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da5][EID:7fa2,PROTO:1,OP:9] IM::InvokeResponse => Sending I (14607) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (14607) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:13,CTR:19,LEN:20c] WRITE 123B I (14617) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:1a] WRITE 126B I (14627) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:1b] WRITE 126B I (14657) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:1c] WRITE 126B I (14797) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A,ACTR:1c,CTR:14] READ 0B I (14797) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|C|E,ACTR:14,CTR:1d] WRITE 23B I (14837) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:1d,CTR:15,LEN:5e] READ 94B I (14847) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa3] :: Responder(AcceptPending) I (14847) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fb00][I,EID:7fa3,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (14867) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa3]: Accepted I (14867) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (14877) rs_matter::data_model::sdm::noc: Handling command AttestationRequest I (14887) rs_matter::data_model::sdm::noc: Received Attestation Nonce:OctetStr([183, 203, 172, 223, 29, 109, 92, 68, 0, 0, 1, 144, 152, 0, 67, 102, 1, 158, 171, 14, 3, 176, 179, 162, 66, 182, 22, 214, 161, 232, 47, 176]) I (15237) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da6][EID:7fa3,PROTO:1,OP:9] IM::InvokeResponse => Sending I (15247) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (15247) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:15,CTR:1e,LEN:2c9] WRITE 123B I (15257) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:1f] WRITE 126B I (15277) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:20] WRITE 126B I (15377) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:21] WRITE 126B I (15497) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A,ACTR:21,CTR:16] READ 0B I (15497) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|C,ACTR:16,CTR:22] WRITE 125B I (15507) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C|E,CTR:23] WRITE 87B I (15617) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:23,CTR:17,LEN:60] READ 96B I (15617) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa4] :: Responder(AcceptPending) I (15627) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fb01][I,EID:7fa4,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (15647) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa4]: Accepted I (15647) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (15657) rs_matter::data_model::sdm::noc: Handling command CSRRequest I (15667) rs_matter::data_model::sdm::noc: Received CSR Nonce:OctetStr([100, 66, 72, 158, 176, 24, 44, 126, 0, 0, 1, 144, 152, 0, 67, 102, 1, 158, 171, 14, 3, 103, 13, 140, 159, 27, 239, 122, 92, 190, 232, 76]) I (16347) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da7][EID:7fa4,PROTO:1,OP:9] IM::InvokeResponse => Sending I (16357) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (16357) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:17,CTR:24,LEN:173] WRITE 123B I (16367) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:25] WRITE 126B I (16377) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [C|E,CTR:26] WRITE 122B I (16757) light: Light toggled I (16897) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:26,CTR:18,LEN:133] READ 123B I (16937) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:19] READ 126B I (16977) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [C|E,CTR:1a] READ 58B I (16987) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa5] :: Responder(AcceptPending) I (16987) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fb02][I,EID:7fa5,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (16997) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa5]: Accepted I (17007) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (17017) rs_matter::data_model::sdm::noc: Handling command AddTrustedRootCert I (17027) rs_matter::data_model::sdm::noc: Received Trusted Cert:OctetStr([15, 30, 1, 1, 1, 24, 2, 1, 37, 3, 27, 14, 4e, 7e, 2c, a5, 6, 96, d6, 89, 18, 26, 4, 0, ae, 14, 2e, 26, 5, 0, b4, ac, 53, 37, 6, 27, 14, 4e, 7e, 2c, a5, 6, 96, d6, 89, 18, 24, 7, 1, 24, 8, 1, 30, 9, 41, 4, f, 96, a5, 61, ee, 4f, f9, 12, f7, 62, 38, 85, b0, de, 44, e7, 5b, 2b, ba, 54, 6b, b2, 63, 1e, b9, ac, b3, 33, 94, a3, 80, 85, 82, c9, d0, d4, 45, e9, d3, 6c, 82, e3, d7, a4, 54, 3d, 8e, 92, d8, e0, 50, c2, d0, 5f, 35, 79, 57, ac, f6, 9c, 37, 80, 87, 3e, 37, a, 35, 1, 29, 1, 18, 24, 2, 60, 30, 4, 14, 6b, 12, 9d, fe, f3, fe, ae, 95, 5f, 73, c8, 5d, 13, 0, 99, 5, fa, 47, 3d, 2f, 30, 5, 14, 6b, 12, 9d, fe, f3, fe, ae, 95, 5f, 73, c8, 5d, 13, 0, 99, 5, fa, 47, 3d, 2f, 18, 30, b, 40, c1, 75, 14, 38, ba, 25, b1, d4, 30, 9d, 27, de, 6a, 53, e4, e4, 19, da, 7f, f1, 41, c2, 17, 74, 70, af, 79, d2, 31, 5c, af, 77, 3d, 87, ba, 9b, af, 4f, 30, bf, de, e0, 52, c2, 26, a3, d3, 4a, e7, 51, 95, 1a, 9b, 37, b8, 5b, c8, b2, 41, 90, 86, dc, 55, 8f, 18]) I (17117) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da8][EID:7fa5,PROTO:1,OP:9] IM::InvokeResponse => Sending I (17137) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (17137) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:1a,CTR:27,LEN:3f] WRITE 63B I (17217) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:27,CTR:1b,LEN:18b] READ 123B I (17257) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:1c] READ 126B I (17297) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [C,CTR:1d] READ 126B I (17337) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [C|E,CTR:1e] READ 20B I (17347) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa6] :: Responder(AcceptPending) I (17347) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fb03][I,EID:7fa6,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (17357) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa6]: Accepted I (17367) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (17377) rs_matter::data_model::sdm::noc: Handling command AddNOC I (17387) rs_matter::data_model::sdm::noc: Received NOC as: Version: [0] [2] Serial Num: [0, fe, c8, b1, ad, ae, 36, b4, d9] Signature Algorithm: ECDSA with SHA256 Issuer: Chip Root CA Id: "89D69606A52C7E4E" Validity: Not Before: 2024-07-02 0:00:00.0 +00:00:00 Not After: 2044-06-27 0:00:00.0 +00:00:00 Subject: Chip Fabric Id: "01EA7FD730E6B3B8" Chip Node Id: "E0AE2AC3551EAD8D" Chip NOC CAT Id: "00010001" Common Name: "Android Local Fabric" Public Key Algorithm ECPubKey Prime256v1 Public-Key: [4, e9, cd, 9c, a3, b9, 38, b6, c7, 48, 94, ce, c9, 1c, fc, 2c, 5f, b4, 40, ef, b0, 8f, c7, 46, f3, 40, 35, 5b, 25, c3, f2, da, c6, 5d, 5c, 26, 8e, 79, a9, 89, 7c, 90, 6b, da, 8f, 3a, b2, e9, 97, 52, 60, b2, ea, 25, 85, 59, 78, 86, 9f, 8, 6d, a0, 99, 42, 5b] X509v3 extensions: [3] X509v3 Basic Constraints critical: true value: X509v3 Key Usage critical: true value: digitalSignature [80, 0] X509v3 Extended Key Usage critical: true value: ClientAuth ServerAuth Subject Key ID value: [6, ae, 17, 0, 52, fb, 24, 89, ab, 69, 20, 95, a4, 1d, af, 38, 5a, e1, fb, 54] Auth Key ID value: [0][6b, 12, 9d, fe, f3, fe, ae, 95, 5f, 73, c8, 5d, 13, 0, 99, 5, fa, 47, 3d, 2f] Signature: [66, f7, 1b, 8a, e5, 60, 75, 61, 28, 9, 15, 76, 3a, c0, a4, f0, f3, 44, 95, cc, 51, 29, 62, 48, 69, 24, df, 66, 69, b3, ba, b1, f4, 7f, b6, c6, 6e, 62, 45, cd, 57, b3, 86, f2, 71, 14, 7d, a9, f7, 5f, df, e1, 6c, fd, 2f, af, f0, 32, 7, 44, 7, 73, bc, ec] I (17557) rs_matter::fabric: MDNS Service Name: 62588B9380516AB4-E0AE2AC3551EAD8D I (17557) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045da9][EID:7fa6,PROTO:1,OP:9] IM::InvokeResponse => Sending I (17577) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (17587) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:1e,CTR:28,LEN:42] WRITE 66B I (17697) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B,ACTR:28,CTR:1f,LEN:87] READ 123B I (17737) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [C|E,CTR:20] READ 12B I (17737) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa7] :: Responder(AcceptPending) I (17747) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fb04][I,EID:7fa7,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (17757) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa7]: Accepted I (17767) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (17777) rs_matter_stack::wifi::comm: AddOrUpdateWifiNetwork I (17787) rs_matter_stack::wifi::comm: Added network with SSID IOT_Test_Wifi_2 I (17787) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045daa][EID:7fa7,PROTO:1,OP:9] IM::InvokeResponse => Sending I (17807) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (17817) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:20,CTR:29,LEN:3f] WRITE 63B I (17877) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:29,CTR:21,LEN:33] READ 51B I (17877) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa8] :: Responder(AcceptPending) I (17887) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fb05][I,EID:7fa8,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (17907) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa8]: Accepted I (17907) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (17917) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045dab][EID:7fa8,PROTO:1,OP:5] IM::ReportData => Sending I (17937) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (17937) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:21,CTR:2a,LEN:3f] WRITE 63B I (17997) rs_matter::transport::network::btp::session: >>>>> (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:2a,CTR:22,LEN:45] READ 69B I (17997) rs_matter::transport::session: New exchange: 1::0 [SID:1,RSID:79f5,EID:7fa9] :: Responder(AcceptPending) I (18007) rs_matter::transport::core: >>>>> BTP 66:F3:E3:A9:8A:AC [SID:1,CTR:da9fb06][I,EID:7fa9,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (18027) rs_matter::transport::core: Exchange 1::0 [SID:1,RSID:79f5,EID:7fa9]: Accepted I (18027) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Starting I (18037) rs_matter_stack::wifi::comm: ConnectNetwork I (18047) rs_matter_stack::wifi::comm: Request to connect to network with SSID IOT_Test_Wifi_2 received I (18057) rs_matter::transport::exchange: <<<<< BTP 66:F3:E3:A9:8A:AC [SID:79f5,CTR:b045dac][EID:7fa9,PROTO:1,OP:9] IM::InvokeResponse => Sending I (18067) rs_matter::respond: Responder: Handler 0 / exchange 1::0: Completed I (18077) rs_matter::transport::network::btp::session: <<<<< (BTP IO) 66:F3:E3:A9:8A:AC [A|B|E,ACTR:22,CTR:2b,LEN:3f] WRITE 63B W (18087) rs_matter_stack::wifi: Giving BLE/BTP extra 4 seconds for any outstanding messages before switching to Wifi W (19167) BT_HCI: hcif disc complete: hdl 0x1, rsn 0x13 I (19177) rs_matter::transport::network::btp::context: Unsubscribe request from 66:F3:E3:A9:8A:AC I (19177) rs_matter::transport::network::btp::context: Session 66:F3:E3:A9:8A:AC removed I (21757) light: Light toggled W (22097) BT_APPL: bta_dm_disable BTA_DISABLE_DELAY set to 200 ms I (22307) pp: pp rom version: 5b8dcfa I (22307) net80211: net80211 rom version: 5b8dcfa I (22317) wifi:wifi driver task: 4085b208, prio:23, stack:6656, core=0 I (22317) wifi:wifi firmware version: 3e0076f I (22317) wifi:wifi certification version: v7.0 I (22317) wifi:config NVS flash: enabled I (22327) wifi:config nano formating: disabled I (22327) wifi:mac_version:HAL_MAC_ESP32AX_761,ut_version:N I (22337) wifi:Init data frame dynamic rx buffer num: 32 I (22337) wifi:Init static rx mgmt buffer num: 10 I (22347) wifi:Init management short buffer num: 32 I (22347) wifi:Init dynamic tx buffer num: 32 I (22347) wifi:Init static tx FG buffer num: 2 I (22357) wifi:Init static rx buffer size: 1700 I (22357) wifi:Init static rx buffer num: 10 I (22367) wifi:Init dynamic rx buffer num: 32 I (22367) wifi_init: rx ba win: 6 I (22367) wifi_init: tcpip mbox: 32 I (22377) wifi_init: udp mbox: 6 I (22377) wifi_init: tcp mbox: 6 I (22387) wifi_init: tcp tx win: 5760 I (22387) wifi_init: tcp rx win: 5760 I (22397) wifi_init: tcp mss: 1440 I (22397) wifi_init: WiFi IRAM OP enabled I (22397) wifi_init: WiFi RX IRAM OP enabled I (22407) rs_matter_stack::wifible: Wifi driver initialized I (22417) rs_matter_stack::wifible: Running Matter in operating mode (Wifi) I (22417) rs_matter_stack::wifi: Trying with requested network first - SSID: IOT_Test_Wifi_2 I (22427) rs_matter_stack::wifi::mgmt: Connecting to SSID IOT_Test_Wifi_2 I (22437) rs_matter_stack::wifi::mgmt: Connecting with Client(ClientConfiguration { ssid: "IOT_Test_Wifi_2", bssid: None, auth_method: WPAWPA2Personal, channel: None, scan_method: CompleteScan(Signal), pmf_cfg: NotCapable }) W (22467) wifi:ACK_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (22467) wifi:CTS_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (22477) wifi:(agc)0x600a7128:0xd2026a12, min.avgNF:0xce->0xd2(dB), RCalCount:0x26, min.RRssi:0xa12(-94.88) W (22487) wifi:(TB)WDEV_PWR_TB_MCS0:19 W (22487) wifi:(TB)WDEV_PWR_TB_MCS1:19 W (22497) wifi:(TB)WDEV_PWR_TB_MCS2:19 W (22497) wifi:(TB)WDEV_PWR_TB_MCS3:19 W (22497) wifi:(TB)WDEV_PWR_TB_MCS4:19 W (22507) wifi:(TB)WDEV_PWR_TB_MCS5:19 W (22507) wifi:(TB)WDEV_PWR_TB_MCS6:18 W (22507) wifi:(TB)WDEV_PWR_TB_MCS7:18 W (22517) wifi:(TB)WDEV_PWR_TB_MCS8:17 W (22517) wifi:(TB)WDEV_PWR_TB_MCS9:15 W (22517) wifi:(TB)WDEV_PWR_TB_MCS10:15 W (22527) wifi:(TB)WDEV_PWR_TB_MCS11:15 I (22527) wifi:11ax coex: WDEVAX_PTI0(0x55777555), WDEVAX_PTI1(0x00003377). I (22537) wifi:mode : sta (40:4c:ca:19:18:9c) I (22537) wifi:enable tsf I (22547) rs_matter_stack: Waiting for the network to come up... I (25277) wifi:new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1 I (25277) wifi:(connect)dot11_authmode:0x3, pairwise_cipher:0x3, group_cipher:0x3 I (25277) wifi:state: init -> auth (b0) I (25287) wifi:state: auth -> assoc (0) I (25287) wifi:Association refused temporarily, comeback time 1200 (TUs) I (26517) wifi:state: assoc -> assoc (0) I (26527) wifi:state: assoc -> init (9c0) I (26527) wifi:new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1 I (26757) light: Light toggled I (31757) light: Light toggled I (36757) light: Light toggled I (37547) rs_matter_stack::wifi::mgmt: Connecting with Client(ClientConfiguration { ssid: "IOT_Test_Wifi_2", bssid: None, auth_method: WPA2WPA3Personal, channel: None, scan_method: CompleteScan(Signal), pmf_cfg: NotCapable }) W (37557) wifi:(itwt)itwt_stop_process! I (37557) wifi:flush txq I (37557) wifi:stop sw txq I (37557) wifi:lmac stop hw txq W (37627) wifi:ACK_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (37627) wifi:CTS_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (37637) wifi:(agc)0x600a7128:0xd21bea12, min.avgNF:0xce->0xd2(dB), RCalCount:0x1bd, min.RRssi:0xa12(-94.88) W (37647) wifi:(TB)WDEV_PWR_TB_MCS0:19 W (37647) wifi:(TB)WDEV_PWR_TB_MCS1:19 W (37647) wifi:(TB)WDEV_PWR_TB_MCS2:19 W (37657) wifi:(TB)WDEV_PWR_TB_MCS3:19 W (37657) wifi:(TB)WDEV_PWR_TB_MCS4:19 W (37657) wifi:(TB)WDEV_PWR_TB_MCS5:19 W (37667) wifi:(TB)WDEV_PWR_TB_MCS6:18 W (37667) wifi:(TB)WDEV_PWR_TB_MCS7:18 W (37667) wifi:(TB)WDEV_PWR_TB_MCS8:17 W (37677) wifi:(TB)WDEV_PWR_TB_MCS9:15 W (37677) wifi:(TB)WDEV_PWR_TB_MCS10:15 W (37677) wifi:(TB)WDEV_PWR_TB_MCS11:15 I (37687) wifi:11ax coex: WDEVAX_PTI0(0x55777555), WDEVAX_PTI1(0x00003377). I (37687) wifi:mode : sta (40:4c:ca:19:18:9c) I (37697) wifi:enable tsf I (41757) light: Light toggled I (46757) light: Light toggled I (51757) light: Light toggled I (52697) rs_matter_stack::wifi::mgmt: Connecting with Client(ClientConfiguration { ssid: "IOT_Test_Wifi_2", bssid: None, auth_method: WEP, channel: None, scan_method: CompleteScan(Signal), pmf_cfg: NotCapable }) W (52707) wifi:(itwt)itwt_stop_process! I (52717) wifi:flush txq I (52717) wifi:stop sw txq I (52717) wifi:lmac stop hw txq W (52737) wifi:ACK_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (52737) wifi:CTS_TAB0 :0x 90a0b, QAM16:0x9 (24Mbps), QPSK:0xa (12Mbps), BPSK:0xb (6Mbps) W (52747) wifi:(agc)0x600a7128:0xd21cea18, min.avgNF:0xce->0xd2(dB), RCalCount:0x1cd, min.RRssi:0xa18(-94.50) W (52757) wifi:(TB)WDEV_PWR_TB_MCS0:19 W (52757) wifi:(TB)WDEV_PWR_TB_MCS1:19 W (52757) wifi:(TB)WDEV_PWR_TB_MCS2:19 W (52767) wifi:(TB)WDEV_PWR_TB_MCS3:19 W (52767) wifi:(TB)WDEV_PWR_TB_MCS4:19 W (52767) wifi:(TB)WDEV_PWR_TB_MCS5:19 W (52777) wifi:(TB)WDEV_PWR_TB_MCS6:18 W (52777) wifi:(TB)WDEV_PWR_TB_MCS7:18 W (52787) wifi:(TB)WDEV_PWR_TB_MCS8:17 W (52787) wifi:(TB)WDEV_PWR_TB_MCS9:15 W (52787) wifi:(TB)WDEV_PWR_TB_MCS10:15 W (52797) wifi:(TB)WDEV_PWR_TB_MCS11:15 I (52797) wifi:11ax coex: WDEVAX_PTI0(0x55777555), WDEVAX_PTI1(0x00003377). I (52807) wifi:mode : sta (40:4c:ca:19:18:9c) I (52807) wifi:enable tsf I (55547) wifi:new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1 I (55547) wifi:(connect)dot11_authmode:0x3, pairwise_cipher:0x3, group_cipher:0x3 I (55547) wifi:state: init -> auth (b0) I (55557) wifi:state: auth -> assoc (0) I (55557) wifi:state: assoc -> run (10) I (55557) wifi:(trc)phytype:CBW20-SGI, snr:32, maxRate:144, highestRateIdx:0 I (55567) wifi:(trc)rate(L-MCS6, schedIdx:2), ampdu(rate:L-MCS6, schedIdx(2, stop:8)), snr:32, ampduState:wait operational I (55577) wifi:ifidx:0, rssi:-64, nf:-96, phytype(0x3, CBW20-SGI), phymode(0x3, 11bgn), max_rate:1440, he:0 I (55587) wifi:max ampdu length exponent:3(65535 bytes), mmss:6(8 us) I (55597) wifi:connected with IOT_Test_Wifi_2, aid = 3, channel 1, BW20, bssid = f8:e7:1e:29:34:38 I (55597) wifi:cipher(pairwise:0x3, group:0x3), pmf:1, security:WPA2-PSK, phy:11bgn, rssi:-64 I (55617) wifi:pm start, type: 1, twt_start:0 I (55617) wifi:pm start, type:1, aid:0x3, trans-BSSID:f8:e7:1e:29:34:38, BSSID[5]:0x38, mbssid(max-indicator:0, index:0), he:0 I (55627) wifi:dp: 1, bi: 102400, li: 3, scale listen interval from 307200 us to 307200 us I (55637) wifi:set rx beacon pti, rx_bcn_pti: 10, bcn_timeout: 25000, mt_pti: 10, mt_time: 10000 I (55637) wifi:[ADDBA]TX addba request, tid:0, dialogtoken:1, bufsize:64, A-MSDU:0(not supported), policy:1(IMR), ssn:0(0x0) I (55657) wifi:[ADDBA]TX addba request, tid:7, dialogtoken:2, bufsize:64, A-MSDU:0(not supported), policy:1(IMR), ssn:0(0x20) I (55667) wifi:[ADDBA]TX addba request, tid:5, dialogtoken:3, bufsize:64, A-MSDU:0(not supported), policy:1(IMR), ssn:0(0x0) I (55677) wifi:[ADDBA]RX addba response, status:0, tid:0/tb:1(0xa1), bufsize:64, batimeout:0, txa_wnd:64 I (55687) wifi:[ADDBA]RX addba response, status:0, tid:7/tb:1(0xa1), bufsize:64, batimeout:0, txa_wnd:64 I (55697) wifi:[ADDBA]RX addba response, status:0, tid:5/tb:1(0xa1), bufsize:64, batimeout:0, txa_wnd:64 I (55697) wifi:AP's beacon interval = 102400 us, DTIM period = 1 I (55707) rs_matter_stack::wifi::mgmt: Successfully connected with Client(ClientConfiguration { ssid: "IOT_Test_Wifi_2", bssid: None, auth_method: WEP, channel: None, scan_method: CompleteScan(Signal), pmf_cfg: NotCapable }) W (55717) wifi:idx:0, ifx:0, tid:0, TAHI:0x1003834, TALO:0x291ee7f8, (ssn:0, win:64, cur_ssn:0), CONF:0xc0000005 I (55737) rs_matter_stack::wifi::mgmt: Connected to SSID IOT_Test_Wifi_2 I (56707) esp_netif_handlers: sta ip: 192.168.1.86, mask: 255.255.255.0, gw: 192.168.1.1 I (56757) light: Light toggled I (57407) rs_matter_stack: Got IP network: IPv4: 192.168.1.86, IPv6: fe80::424c:caff:fe50:912c, Interface: 4, MAC: 40:4C:CA:19:18:9C I (57407) rs_matter_stack: Responder memory: Responder=176B, Runner=10664B I (57417) rs_matter::respond: Responder: Creating 4 handlers I (57417) rs_matter::respond: Responder: Handlers size: 8040B I (57427) rs_matter::respond: Busy Responder: Creating 2 handlers I (57437) rs_matter::respond: Busy Responder: Handlers size: 712B I (57437) rs_matter::transport::core: Running Matter transport I (57447) rs_matter::transport::core: Waiting for orphaned RX packets I (57457) rs_matter::transport::core: Running Matter built-in mDNS service I (57467) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (57477) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (61767) light: Light toggled I (66767) light: Light toggled I (71767) light: Light toggled I (76767) light: Light toggled I (81777) light: Light toggled I (86227) rs_matter::mdns::builtin: Replying to mDNS query from UDP [::ffff:192.168.1.100]:5353 on [ff02::fb%4]:5353 I (86237) rs_matter::mdns::builtin: Replying to mDNS query from UDP [fe80::1ae7:efa9:632f:2cf6%4]:5353 on [ff02::fb%4]:5353 I (86777) light: Light toggled I (87477) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (87487) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (91777) light: Light toggled I (96777) light: Light toggled I (101777) light: Light toggled I (106787) light: Light toggled I (111507) rs_matter::transport::session: New exchange: 2::0 [SID:0,RSID:0,EID:7faa] :: Responder(AcceptPending) I (111507) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [S,SID:0,CTR:69ce292,SRC:1e35c3830f8a0078][I|R,EID:7faa,PROTO:0,OP:30] SC::CASESigma1 => Processing (new exchange) I (111527) rs_matter::transport::core: Exchange 2::0 [SID:0,RSID:0,EID:7faa]: Accepted I (111537) rs_matter::respond: Responder: Handler 0 / exchange 2::0: Starting I (111987) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [U,SID:0,CTR:fa32fdd,DST:1e35c3830f8a0078][A|R,EID:7faa,PROTO:0,OP:31,ACTR:69ce292] SC::CASESigma2 => Sending I (111997) light: Light toggled I (112037) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [S,SID:0,CTR:69ce292,SRC:1e35c3830f8a0078][I|R,EID:7faa,PROTO:0,OP:30] SC::CASESigma1 => Duplicate, sending ACK I (112047) rs_matter::transport::core: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [U,SID:0,CTR:fa32fde,DST:1e35c3830f8a0078][A,EID:7faa,PROTO:0,OP:10,ACTR:69ce292] SC::MRPStandAloneAck => Sending (system) I (112067) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [S,SID:0,CTR:69ce293,SRC:1e35c3830f8a0078][I|A|R,EID:7faa,PROTO:0,OP:32,ACTR:fa32fdd] SC::CASESigma3 => Processing I (112757) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [U,SID:0,CTR:fa32fdf,DST:1e35c3830f8a0078][A|R,EID:7faa,PROTO:0,OP:40,ACTR:69ce293] SC::StatusReport => Sending I (112767) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [S,SID:0,CTR:69ce293,SRC:1e35c3830f8a0078][I|A|R,EID:7faa,PROTO:0,OP:32,ACTR:fa32fdd] SC::CASESigma3 => Duplicate, sending ACK I (112787) rs_matter::transport::core: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [U,SID:0,CTR:fa32fe0,DST:1e35c3830f8a0078][A,EID:7faa,PROTO:0,OP:10,ACTR:69ce293] SC::MRPStandAloneAck => Sending (system) I (112817) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [S,SID:0,CTR:69ce293,SRC:1e35c3830f8a0078][I|A|R,EID:7faa,PROTO:0,OP:32,ACTR:fa32fdd] SC::CASESigma3 => Duplicate, sending ACK I (112827) rs_matter::transport::core: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [U,SID:0,CTR:fa32fe1,DST:1e35c3830f8a0078][A,EID:7faa,PROTO:0,OP:10,ACTR:69ce293] SC::MRPStandAloneAck => Sending (system) I (112857) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [S,SID:0,CTR:69ce294,SRC:1e35c3830f8a0078][I|A,EID:7faa,PROTO:0,OP:10,ACTR:fa32fdf] SC::MRPStandAloneAck => Standalone Ack, dropping I (112867) rs_matter::respond: Responder: Handler 0 / exchange 2::0: Completed I (112877) rs_matter::transport::session: New exchange: 3::0 [SID:1,RSID:79f6,EID:7fab] :: Responder(AcceptPending) I (112887) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e68fb][I|R,EID:7fab,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (112907) rs_matter::transport::core: Exchange 3::0 [SID:1,RSID:79f6,EID:7fab]: Accepted I (112907) rs_matter::respond: Responder: Handler 0 / exchange 3::0: Starting I (112917) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e4e][A|R,EID:7fab,PROTO:1,OP:5,ACTR:f3e68fb] IM::ReportData => Sending I (112957) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e68fc][I|A,EID:7fab,PROTO:0,OP:10,ACTR:e750e4e] SC::MRPStandAloneAck => Standalone Ack, dropping I (112967) rs_matter::respond: Responder: Handler 0 / exchange 3::0: Completed I (113357) rs_matter::transport::session: New exchange: 3::1 [SID:1,RSID:79f6,EID:7fac] :: Responder(AcceptPending) I (113357) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e68fd][I|R,EID:7fac,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (113367) rs_matter::transport::core: Exchange 3::1 [SID:1,RSID:79f6,EID:7fac]: Accepted I (113377) rs_matter::respond: Responder: Handler 0 / exchange 3::1: Starting I (113387) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e4f][A|R,EID:7fac,PROTO:1,OP:5,ACTR:f3e68fd] IM::ReportData => Sending I (113417) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e68fe][I|A,EID:7fac,PROTO:0,OP:10,ACTR:e750e4f] SC::MRPStandAloneAck => Standalone Ack, dropping I (113437) rs_matter::respond: Responder: Handler 0 / exchange 3::1: Completed I (113447) rs_matter::transport::session: New exchange: 3::2 [SID:1,RSID:79f6,EID:7fad] :: Responder(AcceptPending) I (113447) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e68ff][I|R,EID:7fad,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (113467) rs_matter::transport::core: Exchange 3::2 [SID:1,RSID:79f6,EID:7fad]: Accepted I (113477) rs_matter::respond: Responder: Handler 0 / exchange 3::2: Starting I (113487) rs_matter::data_model::sdm::general_commissioning: Handling command Commissioning Complete I (113497) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e50][A|R,EID:7fad,PROTO:1,OP:9,ACTR:f3e68ff] IM::InvokeResponse => Sending I (113527) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6900][I|A,EID:7fad,PROTO:0,OP:10,ACTR:e750e50] SC::MRPStandAloneAck => Standalone Ack, dropping I (113537) rs_matter::respond: Responder: Handler 0 / exchange 3::2: Completed I (114067) rs_matter::transport::session: New exchange: 3::3 [SID:1,RSID:79f6,EID:7fae] :: Responder(AcceptPending) I (114067) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6901][I|R,EID:7fae,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (114087) rs_matter::transport::core: Exchange 3::3 [SID:1,RSID:79f6,EID:7fae]: Accepted I (114097) rs_matter::respond: Responder: Handler 0 / exchange 3::3: Starting I (114107) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e51][A|R,EID:7fae,PROTO:1,OP:5,ACTR:f3e6901] IM::ReportData => Sending I (114127) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6901][I|R,EID:7fae,PROTO:1,OP:2] IM::ReadRequest => Duplicate, sending ACK I (114137) rs_matter::transport::core: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e52][A,EID:7fae,PROTO:0,OP:10,ACTR:f3e6901] SC::MRPStandAloneAck => Sending (system) I (114167) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6902][I|A,EID:7fae,PROTO:0,OP:10,ACTR:e750e51] SC::MRPStandAloneAck => Standalone Ack, dropping I (114177) rs_matter::respond: Responder: Handler 0 / exchange 3::3: Completed I (114187) rs_matter::transport::session: New exchange: 3::4 [SID:1,RSID:79f6,EID:7faf] :: Responder(AcceptPending) I (114197) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6903][I|R,EID:7faf,PROTO:1,OP:a] IM::TimedRequest => Processing (new exchange) I (114217) rs_matter::transport::core: Exchange 3::4 [SID:1,RSID:79f6,EID:7faf]: Accepted I (114227) rs_matter::respond: Responder: Handler 0 / exchange 3::4: Starting I (114237) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e53][A|R,EID:7faf,PROTO:1,OP:1,ACTR:f3e6903] IM::StatusResponse => Sending I (114267) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6904][I|A|R,EID:7faf,PROTO:1,OP:8,ACTR:e750e53] IM::InvokeRequest => Processing I (114277) rs_matter::data_model::sdm::admin_commissioning: Handling command Revoke Commissioning Window I (114287) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e54][A|R,EID:7faf,PROTO:1,OP:9,ACTR:f3e6904] IM::InvokeResponse => Sending I (114317) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6905][I|A,EID:7faf,PROTO:0,OP:10,ACTR:e750e54] SC::MRPStandAloneAck => Standalone Ack, dropping I (114327) rs_matter::respond: Responder: Handler 0 / exchange 3::4: Completed I (114337) rs_matter::transport::session: New exchange: 3::0 [SID:1,RSID:79f6,EID:7fb0] :: Responder(AcceptPending) I (114347) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6906][I|R,EID:7fb0,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (114357) rs_matter::transport::core: Exchange 3::0 [SID:1,RSID:79f6,EID:7fb0]: Accepted I (114367) rs_matter::respond: Responder: Handler 0 / exchange 3::0: Starting I (114377) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e55][A|R,EID:7fb0,PROTO:1,OP:5,ACTR:f3e6906] IM::ReportData => Sending I (114407) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6907][I|A,EID:7fb0,PROTO:0,OP:10,ACTR:e750e55] SC::MRPStandAloneAck => Standalone Ack, dropping I (114417) rs_matter::respond: Responder: Handler 0 / exchange 3::0: Completed I (114427) rs_matter::transport::session: New exchange: 3::0 [SID:1,RSID:79f6,EID:7fb1] :: Responder(AcceptPending) I (114437) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6908][I|R,EID:7fb1,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (114457) rs_matter::transport::core: Exchange 3::0 [SID:1,RSID:79f6,EID:7fb1]: Accepted I (114467) rs_matter::respond: Responder: Handler 0 / exchange 3::0: Starting I (114477) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e56][A|R,EID:7fb1,PROTO:1,OP:5,ACTR:f3e6908] IM::ReportData => Sending I (114507) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e6909][I|A,EID:7fb1,PROTO:0,OP:10,ACTR:e750e56] SC::MRPStandAloneAck => Standalone Ack, dropping I (114517) rs_matter::respond: Responder: Handler 0 / exchange 3::0: Completed I (114547) rs_matter::transport::session: New exchange: 3::0 [SID:1,RSID:79f6,EID:7fb2] :: Responder(AcceptPending) I (114547) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e690a][I|R,EID:7fb2,PROTO:1,OP:a] IM::TimedRequest => Processing (new exchange) I (114567) rs_matter::transport::core: Exchange 3::0 [SID:1,RSID:79f6,EID:7fb2]: Accepted I (114577) rs_matter::respond: Responder: Handler 0 / exchange 3::0: Starting I (114587) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e57][A|R,EID:7fb2,PROTO:1,OP:1,ACTR:f3e690a] IM::StatusResponse => Sending I (114617) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e690b][I|A|R,EID:7fb2,PROTO:1,OP:8,ACTR:e750e57] IM::InvokeRequest => Processing I (114627) rs_matter::data_model::sdm::admin_commissioning: Handling command Open Commissioning Window I (114637) rs_matter::transport::exchange: <<<<< UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:79f6,CTR:e750e58][A|R,EID:7fb2,PROTO:1,OP:9,ACTR:f3e690b] IM::InvokeResponse => Sending I (114657) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (114667) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (114677) rs_matter::transport::core: >>>>> UDP [fe80::1ae7:efa9:632f:2cf6%4]:34499 [SID:1,CTR:f3e690c][I|A,EID:7fb2,PROTO:0,OP:10,ACTR:e750e58] SC::MRPStandAloneAck => Standalone Ack, dropping I (114687) rs_matter::respond: Responder: Handler 0 / exchange 3::0: Completed I (114717) rs_matter::transport::session: New exchange: 4::0 [SID:0,RSID:0,EID:82f6] :: Responder(AcceptPending) I (114717) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:39814fc,SRC:bc967702cff6d058][I|R,EID:82f6,PROTO:0,OP:20] SC::PBKDFParamRequest => Processing (new exchange) I (114747) rs_matter::transport::core: Exchange 4::0 [SID:0,RSID:0,EID:82f6]: Accepted I (114747) rs_matter::respond: Responder: Handler 0 / exchange 4::0: Starting I (114757) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:1f44f6a,DST:bc967702cff6d058][A|R,EID:82f6,PROTO:0,OP:21,ACTR:39814fc] SC::PBKDFParamResponse => Sending I (114977) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:1f44f6a,DST:bc967702cff6d058][A|R,EID:82f6,PROTO:0,OP:21,ACTR:39814fc] SC::PBKDFParamResponse => Re-sending I (115017) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:39814fd,SRC:bc967702cff6d058][I|A|R,EID:82f6,PROTO:0,OP:22,ACTR:1f44f6a] SC::PASEPake1 => Processing I (115547) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:1f44f6b,DST:bc967702cff6d058][A|R,EID:82f6,PROTO:0,OP:23,ACTR:39814fd] SC::PASEPake2 => Sending W (115557) rs_matter::transport::mrp: Mismatch in retrans-table's msg counter and received msg counter: received 1f44f6a, expected 1f44f6b. I (115567) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:39814fe,SRC:bc967702cff6d058][I|A,EID:82f6,PROTO:0,OP:10,ACTR:1f44f6a] SC::MRPStandAloneAck => Duplicate, sending ACK I (115587) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:1f44f6c,DST:bc967702cff6d058][A,EID:82f6,PROTO:0,OP:10,ACTR:39814fe] SC::MRPStandAloneAck => Sending (system) I (115607) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:39814fd,SRC:bc967702cff6d058][I|A|R,EID:82f6,PROTO:0,OP:22,ACTR:1f44f6a] SC::PASEPake1 => Duplicate, sending ACK I (115627) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:1f44f6d,DST:bc967702cff6d058][A,EID:82f6,PROTO:0,OP:10,ACTR:39814fd] SC::MRPStandAloneAck => Sending (system) I (115647) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:39814ff,SRC:bc967702cff6d058][I|A|R,EID:82f6,PROTO:0,OP:24,ACTR:1f44f6b] SC::PASEPake3 => Processing I (115667) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:1f44f6e,DST:bc967702cff6d058][A|R,EID:82f6,PROTO:0,OP:40,ACTR:39814ff] SC::StatusReport => Sending I (115687) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (115697) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (115707) rs_matter::transport::session: New exchange: 5::0 [SID:2,RSID:c20c,EID:82f7] :: Responder(AcceptPending) I (115707) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5e7][I|R,EID:82f7,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (115727) rs_matter::transport::core: Exchange 5::0 [SID:2,RSID:c20c,EID:82f7]: Accepted I (115737) rs_matter::respond: Responder: Handler 1 / exchange 5::0: Starting I (115747) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475ce4][A|R,EID:82f7,PROTO:1,OP:5,ACTR:9c8f5e7] IM::ReportData => Sending I (115767) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:3981500,SRC:bc967702cff6d058][I|A,EID:82f6,PROTO:0,OP:10,ACTR:1f44f6e] SC::MRPStandAloneAck => Standalone Ack, dropping I (115787) rs_matter::respond: Responder: Handler 0 / exchange 4::0: Completed I (115797) rs_matter::transport::session: New exchange: 5::1 [SID:2,RSID:c20c,EID:82f8] :: Responder(AcceptPending) I (115797) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5e8][I|R,EID:82f8,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (115817) rs_matter::transport::core: Exchange 5::1 [SID:2,RSID:c20c,EID:82f8]: Accepted I (115827) rs_matter::respond: Responder: Handler 0 / exchange 5::1: Starting I (115837) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475ce5][A|R,EID:82f8,PROTO:1,OP:5,ACTR:9c8f5e8] IM::ReportData => Sending I (115857) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5e9][I|A,EID:82f7,PROTO:0,OP:10,ACTR:9475ce4] SC::MRPStandAloneAck => Standalone Ack, dropping I (115867) rs_matter::respond: Responder: Handler 1 / exchange 5::0: Completed I (115877) rs_matter::transport::session: New exchange: 5::2 [SID:2,RSID:c20c,EID:82f9] :: Responder(AcceptPending) I (115887) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5ea][I|R,EID:82f9,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (115907) rs_matter::transport::core: Exchange 5::2 [SID:2,RSID:c20c,EID:82f9]: Accepted I (115907) rs_matter::respond: Responder: Handler 1 / exchange 5::2: Starting I (115917) rs_matter::data_model::sdm::general_commissioning: Handling command ARM Fail Safe I (115927) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475ce6][A|R,EID:82f9,PROTO:1,OP:9,ACTR:9c8f5ea] IM::InvokeResponse => Sending I (115957) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5eb][I|A,EID:82f8,PROTO:0,OP:10,ACTR:9475ce5] SC::MRPStandAloneAck => Standalone Ack, dropping I (115967) rs_matter::respond: Responder: Handler 0 / exchange 5::1: Completed I (115977) rs_matter::transport::session: New exchange: 5::3 [SID:2,RSID:c20c,EID:82fa] :: Responder(AcceptPending) I (115987) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5ec][I|R,EID:82fa,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (116007) rs_matter::transport::core: Exchange 5::3 [SID:2,RSID:c20c,EID:82fa]: Accepted I (116007) rs_matter::respond: Responder: Handler 0 / exchange 5::3: Starting I (116017) rs_matter::data_model::sdm::general_commissioning: Handling command Set Regulatory Config I (116027) rs_matter::data_model::sdm::general_commissioning: Received country code: [88, 88] I (116037) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475ce7][A|R,EID:82fa,PROTO:1,OP:9,ACTR:9c8f5ec] IM::InvokeResponse => Sending I (116067) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5ed][I|A,EID:82f9,PROTO:0,OP:10,ACTR:9475ce6] SC::MRPStandAloneAck => Standalone Ack, dropping I (116077) rs_matter::respond: Responder: Handler 1 / exchange 5::2: Completed I (116087) rs_matter::transport::session: New exchange: 5::4 [SID:2,RSID:c20c,EID:82fb] :: Responder(AcceptPending) I (116097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5ee][I|R,EID:82fb,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (116117) rs_matter::transport::core: Exchange 5::4 [SID:2,RSID:c20c,EID:82fb]: Accepted I (116117) rs_matter::respond: Responder: Handler 1 / exchange 5::4: Starting I (116127) rs_matter::data_model::sdm::noc: Handling command CertChainRequest I (116137) rs_matter::data_model::sdm::noc: Received data: 1: { I (116147) rs_matter::data_model::sdm::noc: Received Cert Type:2 I (116147) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475ce8][A|R,EID:82fb,PROTO:1,OP:9,ACTR:9c8f5ee] IM::InvokeResponse => Sending I (116177) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5ef][I|A,EID:82fa,PROTO:0,OP:10,ACTR:9475ce7] SC::MRPStandAloneAck => Standalone Ack, dropping I (116187) rs_matter::respond: Responder: Handler 0 / exchange 5::3: Completed I (116197) rs_matter::transport::session: New exchange: 5::0 [SID:2,RSID:c20c,EID:82fc] :: Responder(AcceptPending) I (116207) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f0][I|R,EID:82fc,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (116227) rs_matter::transport::core: Exchange 5::0 [SID:2,RSID:c20c,EID:82fc]: Accepted I (116227) rs_matter::respond: Responder: Handler 0 / exchange 5::0: Starting I (116237) rs_matter::data_model::sdm::noc: Handling command CertChainRequest I (116247) rs_matter::data_model::sdm::noc: Received data: 1: { I (116257) rs_matter::data_model::sdm::noc: Received Cert Type:1 I (116267) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475ce9][A|R,EID:82fc,PROTO:1,OP:9,ACTR:9c8f5f0] IM::InvokeResponse => Sending I (116287) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f1][I|A,EID:82fb,PROTO:0,OP:10,ACTR:9475ce8] SC::MRPStandAloneAck => Standalone Ack, dropping I (116307) rs_matter::respond: Responder: Handler 1 / exchange 5::4: Completed I (116317) rs_matter::transport::session: New exchange: 5::1 [SID:2,RSID:c20c,EID:82fd] :: Responder(AcceptPending) I (116317) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f2][I|R,EID:82fd,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (116337) rs_matter::transport::core: Exchange 5::1 [SID:2,RSID:c20c,EID:82fd]: Accepted I (116347) rs_matter::respond: Responder: Handler 1 / exchange 5::1: Starting I (116357) rs_matter::data_model::sdm::noc: Handling command AttestationRequest I (116367) rs_matter::data_model::sdm::noc: Received Attestation Nonce:OctetStr([190, 36, 97, 233, 22, 38, 169, 232, 95, 254, 240, 213, 199, 27, 194, 191, 159, 229, 183, 204, 167, 183, 144, 248, 50, 104, 2, 117, 113, 107, 144, 63]) I (116707) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475cea][A|R,EID:82fd,PROTO:1,OP:9,ACTR:9c8f5f2] IM::InvokeResponse => Sending I (116727) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f3][I|A,EID:82fc,PROTO:0,OP:10,ACTR:9475ce9] SC::MRPStandAloneAck => Standalone Ack, dropping I (116747) rs_matter::respond: Responder: Handler 0 / exchange 5::0: Completed I (116747) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f2][I|R,EID:82fd,PROTO:1,OP:8] IM::InvokeRequest => Duplicate, sending ACK I (116767) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475ceb][A,EID:82fd,PROTO:0,OP:10,ACTR:9c8f5f2] SC::MRPStandAloneAck => Sending (system) I (116787) rs_matter::transport::session: New exchange: 5::0 [SID:2,RSID:c20c,EID:82fe] :: Responder(AcceptPending) I (116797) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f4][I|R,EID:82fe,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (116807) rs_matter::transport::core: Exchange 5::0 [SID:2,RSID:c20c,EID:82fe]: Accepted I (116817) rs_matter::respond: Responder: Handler 0 / exchange 5::0: Starting I (116827) rs_matter::data_model::sdm::noc: Handling command CSRRequest I (116837) rs_matter::data_model::sdm::noc: Received CSR Nonce:OctetStr([16, 18, 235, 196, 156, 87, 100, 243, 60, 219, 160, 90, 113, 122, 81, 144, 67, 47, 59, 138, 34, 144, 231, 212, 117, 184, 248, 110, 173, 236, 127, 195]) I (117517) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475cec][A|R,EID:82fe,PROTO:1,OP:9,ACTR:9c8f5f4] IM::InvokeResponse => Sending I (117527) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f5][I|A,EID:82fd,PROTO:0,OP:10,ACTR:9475cea] SC::MRPStandAloneAck => Standalone Ack, dropping I (117537) light: Light toggled I (117547) rs_matter::respond: Responder: Handler 1 / exchange 5::1: Completed I (117557) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f4][I|R,EID:82fe,PROTO:1,OP:8] IM::InvokeRequest => Duplicate, sending ACK I (117567) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475ced][A,EID:82fe,PROTO:0,OP:10,ACTR:9c8f5f4] SC::MRPStandAloneAck => Sending (system) I (117597) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f4][I|R,EID:82fe,PROTO:1,OP:8] IM::InvokeRequest => Duplicate, sending ACK I (117597) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475cee][A,EID:82fe,PROTO:0,OP:10,ACTR:9c8f5f4] SC::MRPStandAloneAck => Sending (system) I (117637) rs_matter::transport::session: New exchange: 5::1 [SID:2,RSID:c20c,EID:82ff] :: Responder(AcceptPending) I (117637) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f6][I|R,EID:82ff,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (117657) rs_matter::transport::core: Exchange 5::1 [SID:2,RSID:c20c,EID:82ff]: Accepted I (117657) rs_matter::respond: Responder: Handler 1 / exchange 5::1: Starting I (117667) rs_matter::data_model::sdm::noc: Handling command AddTrustedRootCert I (117677) rs_matter::data_model::sdm::noc: Received Trusted Cert:OctetStr([15, 30, 1, 1, 1, 24, 2, 1, 37, 3, 24, 14, 1, 18, 26, 4, 80, 22, 81, 27, 26, 5, 80, 25, 4d, 3a, 37, 6, 24, 14, 1, 18, 24, 7, 1, 24, 8, 1, 30, 9, 41, 4, f3, 1f, 68, 80, 84, d1, 61, ad, bf, 4e, 91, b2, d6, b9, f8, 6, b3, 53, 52, 32, 61, 4d, d4, d4, de, 2, 3b, f4, fa, 60, 30, 59, b1, 2e, 40, 99, cd, dd, 4c, 73, 4a, 16, 9, df, b4, 8f, ef, 88, ce, 43, 14, 4a, f2, 72, ae, 3e, e5, 94, 68, 86, 2, b3, d1, 84, 37, a, 35, 1, 29, 1, 18, 24, 2, 60, 30, 4, 14, f5, 87, 73, f8, be, 54, b2, 46, cf, 33, 8c, c9, 83, 14, 97, af, 22, 58, de, d9, 30, 5, 14, f5, 87, 73, f8, be, 54, b2, 46, cf, 33, 8c, c9, 83, 14, 97, af, 22, 58, de, d9, 18, 30, b, 40, b3, 7b, 6c, 2b, 6b, f7, 4b, 58, ee, 99, 47, 65, 53, ba, de, 52, a, 9e, 35, 4b, 2f, 60, cd, de, b6, b9, 81, c5, d5, 56, 33, 16, d, a2, 21, bb, f5, cd, b8, a4, e8, b3, f2, 4d, 63, c4, a, 87, a4, 36, 53, 20, 79, f0, 7c, e6, f8, ca, 92, 98, e5, f2, f6, 30, 18]) I (117767) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475cef][A|R,EID:82ff,PROTO:1,OP:9,ACTR:9c8f5f6] IM::InvokeResponse => Sending I (117787) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f7][I|A,EID:82fe,PROTO:0,OP:10,ACTR:9475cec] SC::MRPStandAloneAck => Standalone Ack, dropping I (117807) rs_matter::respond: Responder: Handler 0 / exchange 5::0: Completed I (117817) rs_matter::transport::session: New exchange: 5::0 [SID:2,RSID:c20c,EID:8300] :: Responder(AcceptPending) I (117817) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f8][I|R,EID:8300,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (117837) rs_matter::transport::core: Exchange 5::0 [SID:2,RSID:c20c,EID:8300]: Accepted I (117847) rs_matter::respond: Responder: Handler 0 / exchange 5::0: Starting I (117857) rs_matter::data_model::sdm::noc: Handling command AddNOC I (117857) rs_matter::data_model::sdm::noc: Received NOC as: Version: [0] [2] Serial Num: [1] Signature Algorithm: ECDSA with SHA256 Issuer: Chip ICA Id: "0000000000000002" Validity: Not Before: 2021-01-01 0:00:00.0 +00:00:00 Not After: 2030-12-30 0:00:00.0 +00:00:00 Subject: Chip Fabric Id: "0000000000000002" Chip Node Id: "0000000000000003" Public Key Algorithm ECPubKey Prime256v1 Public-Key: [4, c4, ad, ec, f9, 76, 46, 92, 36, 3e, 43, c0, 69, ce, 94, f5, 7c, 6a, c, d9, 14, d, d4, 3a, 7, 63, 97, 8b, 66, dc, f7, 54, c7, 2d, 23, b1, 11, ad, 7, 71, c0, 64, 43, 89, 4, 90, f3, 46, 11, 3f, 99, f4, 17, eb, ea, 43, ed, b9, 6f, a3, b4, 76, da, ea, c5] X509v3 extensions: [3] X509v3 Basic Constraints critical: true value: X509v3 Key Usage critical: true value: digitalSignature [80, 0] X509v3 Extended Key Usage critical: true value: ClientAuth ServerAuth Subject Key ID value: [bb, 9c, fd, 45, e0, 64, ff, 1b, f1, 60, 54, e6, 56, 40, da, 12, e4, c1, c4, 96] Auth Key ID value: [0][51, 82, 51, 2f, 86, 3d, 97, 1c, 57, a2, 8b, 81, 96, 4, e7, 27, 3b, d6, 23, bd] Signature: [54, 3a, 6e, f, e4, bb, 37, 8d, 44, 16, 55, c, 38, b8, e3, 5, 5b, 5e, d7, 70, e9, ac, bb, f7, 8d, 5d, 6f, 40, ad, 17, 8d, 79, 94, 61, a9, 4, df, 29, ee, 37, a9, 54, d6, 8, 76, 4a, 74, c, bb, c4, 6d, 2d, bc, cc, 46, d7, 24, f1, 8f, fb, 5, 8a, a2, da] I (118017) rs_matter::data_model::sdm::noc: Received ICAC as: Version: [0] [2] Serial Num: [1] Signature Algorithm: ECDSA with SHA256 Issuer: Chip Root CA Id: "0000000000000001" Validity: Not Before: 2021-01-01 0:00:00.0 +00:00:00 Not After: 2030-12-30 0:00:00.0 +00:00:00 Subject: Chip ICA Id: "0000000000000002" Public Key Algorithm ECPubKey Prime256v1 Public-Key: [4, 1b, 6f, 65, 8c, 9d, f8, 6a, 81, 52, 59, 37, 62, 70, 97, 8b, 98, 21, 65, d3, f9, b2, 55, 3a, a2, 9a, 65, 49, f7, 9, 9e, 19, d0, 60, 17, 75, 32, f9, d8, b3, 9, 93, 8d, 86, 8b, c2, 48, 4e, 93, 3, 77, 75, 22, 14, a3, b1, 16, b2, 60, 53, 3e, 92, d9, bd, f1] X509v3 extensions: [3] X509v3 Basic Constraints critical: true value: CA: true X509v3 Key Usage critical: true value: keyCertSign CRLSign [6, 0] Subject Key ID value: [51, 82, 51, 2f, 86, 3d, 97, 1c, 57, a2, 8b, 81, 96, 4, e7, 27, 3b, d6, 23, bd] Auth Key ID value: [0][f5, 87, 73, f8, be, 54, b2, 46, cf, 33, 8c, c9, 83, 14, 97, af, 22, 58, de, d9] Signature: [5e, d7, 34, 5c, 4e, 9f, 48, 8b, b3, 64, 7a, 22, 7a, a8, f1, 1b, fa, 43, 8b, 3b, 6e, e, eb, 81, 6e, 5d, 2d, 41, 45, 8, c3, ca, e4, ab, 26, 4, 96, 43, 62, 8, f2, 5f, 1f, ea, db, d9, 4e, 2e, d8, c4, 70, 27, 66, e2, 96, d9, 12, aa, 43, 1c, fc, 93, 4b, e8] I (118157) rs_matter::fabric: MDNS Service Name: 789FB827F03EB367-0000000000000003 I (118157) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475cf0][A|R,EID:8300,PROTO:1,OP:9,ACTR:9c8f5f8] IM::InvokeResponse => Sending I (118187) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f9][I|A,EID:82ff,PROTO:0,OP:10,ACTR:9475cef] SC::MRPStandAloneAck => Standalone Ack, dropping I (118207) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (118207) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (118217) rs_matter::respond: Responder: Handler 1 / exchange 5::1: Completed I (118227) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5f8][I|R,EID:8300,PROTO:1,OP:8] IM::InvokeRequest => Duplicate, sending ACK I (118237) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20c,CTR:9475cf1][A,EID:8300,PROTO:0,OP:10,ACTR:9c8f5f8] SC::MRPStandAloneAck => Sending (system) I (118267) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:2,CTR:9c8f5fa][I|A,EID:8300,PROTO:0,OP:10,ACTR:9475cf0] SC::MRPStandAloneAck => Standalone Ack, dropping I (118277) rs_matter::respond: Responder: Handler 0 / exchange 5::0: Completed I (118367) rs_matter::mdns::builtin: Replying to mDNS query from UDP [::ffff:192.168.1.85]:35241 on [ff02::fb%4]:5353 I (118407) rs_matter::transport::session: New exchange: 6::0 [SID:0,RSID:0,EID:8301] :: Responder(AcceptPending) I (118407) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:3981501,SRC:9b8096e64d15c6bd][I|R,EID:8301,PROTO:0,OP:30] SC::CASESigma1 => Processing (new exchange) I (118427) rs_matter::transport::core: Exchange 6::0 [SID:0,RSID:0,EID:8301]: Accepted I (118437) rs_matter::respond: Responder: Handler 0 / exchange 6::0: Starting I (118887) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:cad4592,DST:9b8096e64d15c6bd][A|R,EID:8301,PROTO:0,OP:31,ACTR:3981501] SC::CASESigma2 => Sending I (118937) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:3981502,SRC:9b8096e64d15c6bd][I|A|R,EID:8301,PROTO:0,OP:32,ACTR:cad4592] SC::CASESigma3 => Processing I (119847) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:cad4593,DST:9b8096e64d15c6bd][A|R,EID:8301,PROTO:0,OP:40,ACTR:3981502] SC::StatusReport => Sending I (119857) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:3981502,SRC:9b8096e64d15c6bd][I|A|R,EID:8301,PROTO:0,OP:32,ACTR:cad4592] SC::CASESigma3 => Duplicate, sending ACK I (119867) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:cad4594,DST:9b8096e64d15c6bd][A,EID:8301,PROTO:0,OP:10,ACTR:3981502] SC::MRPStandAloneAck => Sending (system) I (119897) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:3981502,SRC:9b8096e64d15c6bd][I|A|R,EID:8301,PROTO:0,OP:32,ACTR:cad4592] SC::CASESigma3 => Duplicate, sending ACK I (119907) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [U,SID:0,CTR:cad4595,DST:9b8096e64d15c6bd][A,EID:8301,PROTO:0,OP:10,ACTR:3981502] SC::MRPStandAloneAck => Sending (system) I (119937) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:8302] :: Responder(AcceptPending) I (119937) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b92][I|R,EID:8302,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (119957) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:8302]: Accepted I (119967) rs_matter::respond: Responder: Handler 1 / exchange 7::0: Starting I (119977) rs_matter::data_model::sdm::general_commissioning: Handling command Commissioning Complete I (119987) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeb4][A|R,EID:8302,PROTO:1,OP:9,ACTR:9d17b92] IM::InvokeResponse => Sending I (120007) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [S,SID:0,CTR:3981503,SRC:9b8096e64d15c6bd][I|A,EID:8301,PROTO:0,OP:10,ACTR:cad4593] SC::MRPStandAloneAck => Standalone Ack, dropping I (120027) rs_matter::respond: Responder: Handler 0 / exchange 6::0: Completed I (120037) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b93][I|A,EID:8302,PROTO:0,OP:10,ACTR:b74eeb4] SC::MRPStandAloneAck => Standalone Ack, dropping I (120047) rs_matter::respond: Responder: Handler 1 / exchange 7::0: Completed I (120067) rs_matter::transport::session: New exchange: 7::1 [SID:3,RSID:c20d,EID:8303] :: Responder(AcceptPending) I (120067) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b94][I|R,EID:8303,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (120087) rs_matter::transport::core: Exchange 7::1 [SID:3,RSID:c20d,EID:8303]: Accepted I (120097) rs_matter::respond: Responder: Handler 0 / exchange 7::1: Starting E (120107) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120107) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (120147) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120147) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (120187) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120197) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (120237) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeb5][A|R,EID:8303,PROTO:1,OP:5,ACTR:9d17b94] IM::ReportData => Sending I (120287) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b95][I|A|R,EID:8303,PROTO:1,OP:1,ACTR:b74eeb5] IM::StatusResponse => Processing E (120297) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120297) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (120337) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120337) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (120377) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120377) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (120417) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeb6][A|R,EID:8303,PROTO:1,OP:5,ACTR:9d17b95] IM::ReportData => Sending I (120467) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b96][I|A|R,EID:8303,PROTO:1,OP:1,ACTR:b74eeb6] IM::StatusResponse => Processing I (120477) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeb7][A|R,EID:8303,PROTO:1,OP:5,ACTR:9d17b96] IM::ReportData => Sending I (120697) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeb7][A|R,EID:8303,PROTO:1,OP:5,ACTR:9d17b96] IM::ReportData => Re-sending I (120717) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b97][I|A,EID:8303,PROTO:0,OP:10,ACTR:b74eeb7] SC::MRPStandAloneAck => Standalone Ack, dropping I (120727) rs_matter::respond: Responder: Handler 0 / exchange 7::1: Completed I (120737) rs_matter::transport::session: New exchange: 7::2 [SID:3,RSID:c20d,EID:8304] :: Responder(AcceptPending) I (120747) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b98][I|R,EID:8304,PROTO:1,OP:3] IM::SubscribeRequest => Processing (new exchange) I (120767) rs_matter::transport::core: Exchange 7::2 [SID:3,RSID:c20d,EID:8304]: Accepted I (120767) rs_matter::respond: Responder: Handler 0 / exchange 7::2: Starting I (120777) rs_matter::data_model::core: All subscriptions for [F:2,P:1b669] removed I (120787) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeb8][A|R,EID:8304,PROTO:1,OP:5,ACTR:9d17b98] IM::ReportData => Sending W (120827) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b99][I|A,EID:8303,PROTO:0,OP:10,ACTR:b74eeb7] SC::MRPStandAloneAck => No valid exchange found, dropping I (120847) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b9a][I|A|R,EID:8304,PROTO:1,OP:1,ACTR:b74eeb8] IM::StatusResponse => Processing E (120867) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120867) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (120897) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120907) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (120937) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (120947) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (120987) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeb9][A|R,EID:8304,PROTO:1,OP:5,ACTR:9d17b9a] IM::ReportData => Sending I (121037) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b9b][I|A|R,EID:8304,PROTO:1,OP:1,ACTR:b74eeb9] IM::StatusResponse => Processing I (121047) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeba][A|R,EID:8304,PROTO:1,OP:5,ACTR:9d17b9b] IM::ReportData => Sending I (121237) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b9c][I|A|R,EID:8304,PROTO:1,OP:1,ACTR:b74eeba] IM::StatusResponse => Processing I (121247) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eebb][A|R,EID:8304,PROTO:1,OP:4,ACTR:9d17b9c] IM::SubscribeResponse => Sending I (121277) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b9d][I|A,EID:8304,PROTO:0,OP:10,ACTR:b74eebb] SC::MRPStandAloneAck => Standalone Ack, dropping I (121287) rs_matter::data_model::core: Subscription [F:2,P:1b669]::1 created I (121297) rs_matter::respond: Responder: Handler 0 / exchange 7::2: Completed I (121747) rs_matter::transport::session: New exchange: 7::3 [SID:3,RSID:c20d,EID:8305] :: Responder(AcceptPending) I (121747) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b9e][I|R,EID:8305,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (121767) rs_matter::transport::core: Exchange 7::3 [SID:3,RSID:c20d,EID:8305]: Accepted I (121777) rs_matter::respond: Responder: Handler 0 / exchange 7::3: Starting I (121787) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eebc][A|R,EID:8305,PROTO:1,OP:5,ACTR:9d17b9e] IM::ReportData => Sending I (121807) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b9e][I|R,EID:8305,PROTO:1,OP:2] IM::ReadRequest => Duplicate, sending ACK I (121817) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eebd][A,EID:8305,PROTO:0,OP:10,ACTR:9d17b9e] SC::MRPStandAloneAck => Sending (system) I (122007) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eebc][A|R,EID:8305,PROTO:1,OP:5,ACTR:9d17b9e] IM::ReportData => Re-sending I (122217) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eebc][A|R,EID:8305,PROTO:1,OP:5,ACTR:9d17b9e] IM::ReportData => Re-sending I (122237) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17b9f][I|A,EID:8305,PROTO:0,OP:10,ACTR:b74eebc] SC::MRPStandAloneAck => Standalone Ack, dropping I (122247) rs_matter::respond: Responder: Handler 0 / exchange 7::3: Completed I (122257) rs_matter::transport::session: New exchange: 7::4 [SID:3,RSID:c20d,EID:8306] :: Responder(AcceptPending) I (122267) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba0][I|R,EID:8306,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (122287) rs_matter::transport::core: Exchange 7::4 [SID:3,RSID:c20d,EID:8306]: Accepted I (122287) rs_matter::respond: Responder: Handler 0 / exchange 7::4: Starting I (122307) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eebe][A|R,EID:8306,PROTO:1,OP:5,ACTR:9d17ba0] IM::ReportData => Sending W (122327) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba1][I|A,EID:8305,PROTO:0,OP:10,ACTR:b74eebc] SC::MRPStandAloneAck => No valid exchange found, dropping I (122347) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba2][I|A,EID:8306,PROTO:0,OP:10,ACTR:b74eebe] SC::MRPStandAloneAck => Standalone Ack, dropping I (122357) rs_matter::respond: Responder: Handler 0 / exchange 7::4: Completed I (122547) light: Light toggled I (122547) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (122547) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:1] :: Initiator(Owned) I (122557) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:1]: Initiated I (122567) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eebf][I|R,EID:1,PROTO:1,OP:5] IM::ReportData => Sending I (122617) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba3][A|R,EID:1,PROTO:1,OP:1,ACTR:b74eebf] IM::StatusResponse => Processing E (122627) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (122637) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (122667) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (122677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (122707) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (122717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (122747) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec0][I|A|R,EID:1,PROTO:1,OP:5,ACTR:9d17ba3] IM::ReportData => Sending I (122797) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba4][A|R,EID:1,PROTO:1,OP:1,ACTR:b74eec0] IM::StatusResponse => Processing I (122807) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec1][I|A|R,EID:1,PROTO:1,OP:5,ACTR:9d17ba4] IM::ReportData => Sending I (123027) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec1][I|A|R,EID:1,PROTO:1,OP:5,ACTR:9d17ba4] IM::ReportData => Re-sending I (123047) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba5][A|R,EID:1,PROTO:1,OP:1,ACTR:b74eec1] IM::StatusResponse => Processing I (123057) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec2][I|A,EID:1,PROTO:0,OP:10,ACTR:9d17ba5] SC::MRPStandAloneAck => Sending W (123077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba6][A,EID:1,PROTO:0,OP:10,ACTR:b74eec1] SC::MRPStandAloneAck => No valid exchange found, dropping I (127547) light: Light toggled I (127547) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (127547) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:2] :: Initiator(Owned) I (127557) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:2]: Initiated I (127577) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec3][I|R,EID:2,PROTO:1,OP:5] IM::ReportData => Sending I (127617) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba7][A|R,EID:2,PROTO:1,OP:1,ACTR:b74eec3] IM::StatusResponse => Processing E (127627) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (127627) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (127667) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (127677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (127707) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (127717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (127747) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec4][I|A|R,EID:2,PROTO:1,OP:5,ACTR:9d17ba7] IM::ReportData => Sending I (127797) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba8][A|R,EID:2,PROTO:1,OP:1,ACTR:b74eec4] IM::StatusResponse => Processing I (127807) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec5][I|A|R,EID:2,PROTO:1,OP:5,ACTR:9d17ba8] IM::ReportData => Sending I (128027) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec5][I|A|R,EID:2,PROTO:1,OP:5,ACTR:9d17ba8] IM::ReportData => Re-sending I (128047) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17ba9][A|R,EID:2,PROTO:1,OP:1,ACTR:b74eec5] IM::StatusResponse => Processing I (128057) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec6][I|A,EID:2,PROTO:0,OP:10,ACTR:9d17ba9] SC::MRPStandAloneAck => Sending W (128077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17baa][A,EID:2,PROTO:0,OP:10,ACTR:b74eec5] SC::MRPStandAloneAck => No valid exchange found, dropping I (132547) light: Light toggled I (132547) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (132547) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:3] :: Initiator(Owned) I (132557) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:3]: Initiated I (132577) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec7][I|R,EID:3,PROTO:1,OP:5] IM::ReportData => Sending I (132627) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bab][A|R,EID:3,PROTO:1,OP:1,ACTR:b74eec7] IM::StatusResponse => Processing E (132637) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (132637) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (132667) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (132677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (132707) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (132717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (132757) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec8][I|A|R,EID:3,PROTO:1,OP:5,ACTR:9d17bab] IM::ReportData => Sending I (132807) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bac][A|R,EID:3,PROTO:1,OP:1,ACTR:b74eec8] IM::StatusResponse => Processing I (132817) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec9][I|A|R,EID:3,PROTO:1,OP:5,ACTR:9d17bac] IM::ReportData => Sending I (133037) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eec9][I|A|R,EID:3,PROTO:1,OP:5,ACTR:9d17bac] IM::ReportData => Re-sending I (133057) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bad][A|R,EID:3,PROTO:1,OP:1,ACTR:b74eec9] IM::StatusResponse => Processing I (133057) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeca][I|A,EID:3,PROTO:0,OP:10,ACTR:9d17bad] SC::MRPStandAloneAck => Sending W (133077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bae][A,EID:3,PROTO:0,OP:10,ACTR:b74eec9] SC::MRPStandAloneAck => No valid exchange found, dropping I (137547) light: Light toggled I (137557) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (137557) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:4] :: Initiator(Owned) I (137567) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:4]: Initiated I (137577) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eecb][I|R,EID:4,PROTO:1,OP:5] IM::ReportData => Sending I (137617) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17baf][A|R,EID:4,PROTO:1,OP:1,ACTR:b74eecb] IM::StatusResponse => Processing E (137637) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (137637) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (137667) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (137677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (137707) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (137717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (137757) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eecc][I|A|R,EID:4,PROTO:1,OP:5,ACTR:9d17baf] IM::ReportData => Sending I (137807) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb0][A|R,EID:4,PROTO:1,OP:1,ACTR:b74eecc] IM::StatusResponse => Processing I (137817) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eecd][I|A|R,EID:4,PROTO:1,OP:5,ACTR:9d17bb0] IM::ReportData => Sending I (138027) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eecd][I|A|R,EID:4,PROTO:1,OP:5,ACTR:9d17bb0] IM::ReportData => Re-sending I (138047) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb1][A|R,EID:4,PROTO:1,OP:1,ACTR:b74eecd] IM::StatusResponse => Processing I (138057) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eece][I|A,EID:4,PROTO:0,OP:10,ACTR:9d17bb1] SC::MRPStandAloneAck => Sending W (138077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb2][A,EID:4,PROTO:0,OP:10,ACTR:b74eecd] SC::MRPStandAloneAck => No valid exchange found, dropping I (142547) light: Light toggled I (142557) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (142557) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:5] :: Initiator(Owned) I (142567) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:5]: Initiated I (142577) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eecf][I|R,EID:5,PROTO:1,OP:5] IM::ReportData => Sending I (142627) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb3][A|R,EID:5,PROTO:1,OP:1,ACTR:b74eecf] IM::StatusResponse => Processing E (142637) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (142637) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (142677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (142677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (142717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (142727) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (142757) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed0][I|A|R,EID:5,PROTO:1,OP:5,ACTR:9d17bb3] IM::ReportData => Sending I (142807) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb4][A|R,EID:5,PROTO:1,OP:1,ACTR:b74eed0] IM::StatusResponse => Processing I (142817) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed1][I|A|R,EID:5,PROTO:1,OP:5,ACTR:9d17bb4] IM::ReportData => Sending I (143037) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed1][I|A|R,EID:5,PROTO:1,OP:5,ACTR:9d17bb4] IM::ReportData => Re-sending I (143047) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb5][A|R,EID:5,PROTO:1,OP:1,ACTR:b74eed1] IM::StatusResponse => Processing I (143067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed2][I|A,EID:5,PROTO:0,OP:10,ACTR:9d17bb5] SC::MRPStandAloneAck => Sending W (143077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb6][A,EID:5,PROTO:0,OP:10,ACTR:b74eed1] SC::MRPStandAloneAck => No valid exchange found, dropping I (147557) light: Light toggled I (147557) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (147557) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:6] :: Initiator(Owned) I (147567) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:6]: Initiated I (147577) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed3][I|R,EID:6,PROTO:1,OP:5] IM::ReportData => Sending I (147627) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb7][A|R,EID:6,PROTO:1,OP:1,ACTR:b74eed3] IM::StatusResponse => Processing E (147637) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (147637) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (147677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (147677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (147717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (147717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (147757) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed4][I|A|R,EID:6,PROTO:1,OP:5,ACTR:9d17bb7] IM::ReportData => Sending I (147807) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb8][A|R,EID:6,PROTO:1,OP:1,ACTR:b74eed4] IM::StatusResponse => Processing I (147817) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed5][I|A|R,EID:6,PROTO:1,OP:5,ACTR:9d17bb8] IM::ReportData => Sending I (147907) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bb9][A|R,EID:6,PROTO:1,OP:1,ACTR:b74eed5] IM::StatusResponse => Processing I (147917) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed6][I|A,EID:6,PROTO:0,OP:10,ACTR:9d17bb9] SC::MRPStandAloneAck => Sending I (148217) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (148227) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (152557) light: Light toggled I (152557) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (152557) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:7] :: Initiator(Owned) I (152567) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:7]: Initiated I (152587) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed7][I|R,EID:7,PROTO:1,OP:5] IM::ReportData => Sending I (152627) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bba][A|R,EID:7,PROTO:1,OP:1,ACTR:b74eed7] IM::StatusResponse => Processing E (152647) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (152647) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (152677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (152687) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (152717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (152727) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (152757) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed8][I|A|R,EID:7,PROTO:1,OP:5,ACTR:9d17bba] IM::ReportData => Sending I (152817) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bbb][A|R,EID:7,PROTO:1,OP:1,ACTR:b74eed8] IM::StatusResponse => Processing I (152827) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed9][I|A|R,EID:7,PROTO:1,OP:5,ACTR:9d17bbb] IM::ReportData => Sending I (153037) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eed9][I|A|R,EID:7,PROTO:1,OP:5,ACTR:9d17bbb] IM::ReportData => Re-sending I (153057) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bbc][A|R,EID:7,PROTO:1,OP:1,ACTR:b74eed9] IM::StatusResponse => Processing I (153067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeda][I|A,EID:7,PROTO:0,OP:10,ACTR:9d17bbc] SC::MRPStandAloneAck => Sending W (153087) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bbd][A,EID:7,PROTO:0,OP:10,ACTR:b74eed9] SC::MRPStandAloneAck => No valid exchange found, dropping I (157557) light: Light toggled I (157557) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (157557) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:8] :: Initiator(Owned) I (157567) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:8]: Initiated I (157587) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eedb][I|R,EID:8,PROTO:1,OP:5] IM::ReportData => Sending I (157627) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bbe][A|R,EID:8,PROTO:1,OP:1,ACTR:b74eedb] IM::StatusResponse => Processing E (157647) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (157647) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (157677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (157687) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (157717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (157727) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (157767) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eedc][I|A|R,EID:8,PROTO:1,OP:5,ACTR:9d17bbe] IM::ReportData => Sending I (157817) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bbf][A|R,EID:8,PROTO:1,OP:1,ACTR:b74eedc] IM::StatusResponse => Processing I (157827) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eedd][I|A|R,EID:8,PROTO:1,OP:5,ACTR:9d17bbf] IM::ReportData => Sending I (158037) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eedd][I|A|R,EID:8,PROTO:1,OP:5,ACTR:9d17bbf] IM::ReportData => Re-sending I (158057) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc0][A|R,EID:8,PROTO:1,OP:1,ACTR:b74eedd] IM::StatusResponse => Processing I (158067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eede][I|A,EID:8,PROTO:0,OP:10,ACTR:9d17bc0] SC::MRPStandAloneAck => Sending W (158087) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc1][A,EID:8,PROTO:0,OP:10,ACTR:b74eedd] SC::MRPStandAloneAck => No valid exchange found, dropping I (162557) light: Light toggled I (162557) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (162567) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:9] :: Initiator(Owned) I (162567) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:9]: Initiated I (162587) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eedf][I|R,EID:9,PROTO:1,OP:5] IM::ReportData => Sending I (162627) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc2][A|R,EID:9,PROTO:1,OP:1,ACTR:b74eedf] IM::StatusResponse => Processing E (162647) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (162647) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (162677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (162687) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (162717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (162727) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (162767) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee0][I|A|R,EID:9,PROTO:1,OP:5,ACTR:9d17bc2] IM::ReportData => Sending I (162817) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc3][A|R,EID:9,PROTO:1,OP:1,ACTR:b74eee0] IM::StatusResponse => Processing I (162827) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee1][I|A|R,EID:9,PROTO:1,OP:5,ACTR:9d17bc3] IM::ReportData => Sending I (163037) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee1][I|A|R,EID:9,PROTO:1,OP:5,ACTR:9d17bc3] IM::ReportData => Re-sending I (163057) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc4][A|R,EID:9,PROTO:1,OP:1,ACTR:b74eee1] IM::StatusResponse => Processing I (163067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee2][I|A,EID:9,PROTO:0,OP:10,ACTR:9d17bc4] SC::MRPStandAloneAck => Sending W (163087) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc5][A,EID:9,PROTO:0,OP:10,ACTR:b74eee1] SC::MRPStandAloneAck => No valid exchange found, dropping I (167557) light: Light toggled I (167567) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (167567) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:a] :: Initiator(Owned) I (167577) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:a]: Initiated I (167587) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee3][I|R,EID:a,PROTO:1,OP:5] IM::ReportData => Sending I (167627) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc6][A|R,EID:a,PROTO:1,OP:1,ACTR:b74eee3] IM::StatusResponse => Processing E (167647) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (167647) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (167677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (167687) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (167717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (167727) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (167767) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee4][I|A|R,EID:a,PROTO:1,OP:5,ACTR:9d17bc6] IM::ReportData => Sending I (167817) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc7][A|R,EID:a,PROTO:1,OP:1,ACTR:b74eee4] IM::StatusResponse => Processing I (167827) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee5][I|A|R,EID:a,PROTO:1,OP:5,ACTR:9d17bc7] IM::ReportData => Sending I (168037) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee5][I|A|R,EID:a,PROTO:1,OP:5,ACTR:9d17bc7] IM::ReportData => Re-sending I (168057) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc8][A|R,EID:a,PROTO:1,OP:1,ACTR:b74eee5] IM::StatusResponse => Processing I (168067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee6][I|A,EID:a,PROTO:0,OP:10,ACTR:9d17bc8] SC::MRPStandAloneAck => Sending W (168087) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bc9][A,EID:a,PROTO:0,OP:10,ACTR:b74eee5] SC::MRPStandAloneAck => No valid exchange found, dropping I (172567) light: Light toggled I (172567) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (172567) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:b] :: Initiator(Owned) I (172577) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:b]: Initiated I (172587) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee7][I|R,EID:b,PROTO:1,OP:5] IM::ReportData => Sending I (172637) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bca][A|R,EID:b,PROTO:1,OP:1,ACTR:b74eee7] IM::StatusResponse => Processing E (172647) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (172647) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (172677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (172687) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (172727) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (172727) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (172767) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee8][I|A|R,EID:b,PROTO:1,OP:5,ACTR:9d17bca] IM::ReportData => Sending I (172817) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bcb][A|R,EID:b,PROTO:1,OP:1,ACTR:b74eee8] IM::StatusResponse => Processing I (172827) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee9][I|A|R,EID:b,PROTO:1,OP:5,ACTR:9d17bcb] IM::ReportData => Sending I (173047) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eee9][I|A|R,EID:b,PROTO:1,OP:5,ACTR:9d17bcb] IM::ReportData => Re-sending I (173067) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bcc][A|R,EID:b,PROTO:1,OP:1,ACTR:b74eee9] IM::StatusResponse => Processing I (173077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeea][I|A,EID:b,PROTO:0,OP:10,ACTR:9d17bcc] SC::MRPStandAloneAck => Sending W (173097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bcd][A,EID:b,PROTO:0,OP:10,ACTR:b74eee9] SC::MRPStandAloneAck => No valid exchange found, dropping I (177567) light: Light toggled I (177567) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (177567) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:c] :: Initiator(Owned) I (177577) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:c]: Initiated I (177597) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeeb][I|R,EID:c,PROTO:1,OP:5] IM::ReportData => Sending I (177637) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bce][A|R,EID:c,PROTO:1,OP:1,ACTR:b74eeeb] IM::StatusResponse => Processing E (177657) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (177657) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (177687) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (177697) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (177727) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (177737) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (177777) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeec][I|A|R,EID:c,PROTO:1,OP:5,ACTR:9d17bce] IM::ReportData => Sending I (177817) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bcf][A|R,EID:c,PROTO:1,OP:1,ACTR:b74eeec] IM::StatusResponse => Processing I (177827) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeed][I|A|R,EID:c,PROTO:1,OP:5,ACTR:9d17bcf] IM::ReportData => Sending I (178047) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeed][I|A|R,EID:c,PROTO:1,OP:5,ACTR:9d17bcf] IM::ReportData => Re-sending I (178067) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd0][A|R,EID:c,PROTO:1,OP:1,ACTR:b74eeed] IM::StatusResponse => Processing I (178077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeee][I|A,EID:c,PROTO:0,OP:10,ACTR:9d17bd0] SC::MRPStandAloneAck => Sending W (178097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd1][A,EID:c,PROTO:0,OP:10,ACTR:b74eeed] SC::MRPStandAloneAck => No valid exchange found, dropping I (178227) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (178237) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (182567) light: Light toggled I (182567) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (182577) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:d] :: Initiator(Owned) I (182587) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:d]: Initiated I (182597) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeef][I|R,EID:d,PROTO:1,OP:5] IM::ReportData => Sending I (182647) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd2][A|R,EID:d,PROTO:1,OP:1,ACTR:b74eeef] IM::StatusResponse => Processing E (182657) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (182657) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (182687) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (182697) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (182737) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (182737) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (182777) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef0][I|A|R,EID:d,PROTO:1,OP:5,ACTR:9d17bd2] IM::ReportData => Sending I (182827) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd3][A|R,EID:d,PROTO:1,OP:1,ACTR:b74eef0] IM::StatusResponse => Processing I (182837) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef1][I|A|R,EID:d,PROTO:1,OP:5,ACTR:9d17bd3] IM::ReportData => Sending I (183057) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef1][I|A|R,EID:d,PROTO:1,OP:5,ACTR:9d17bd3] IM::ReportData => Re-sending I (183077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd4][A|R,EID:d,PROTO:1,OP:1,ACTR:b74eef1] IM::StatusResponse => Processing I (183087) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef2][I|A,EID:d,PROTO:0,OP:10,ACTR:9d17bd4] SC::MRPStandAloneAck => Sending W (183107) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd5][A,EID:d,PROTO:0,OP:10,ACTR:b74eef1] SC::MRPStandAloneAck => No valid exchange found, dropping I (187567) light: Light toggled I (187577) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (187577) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:e] :: Initiator(Owned) I (187587) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:e]: Initiated I (187597) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef3][I|R,EID:e,PROTO:1,OP:5] IM::ReportData => Sending I (187647) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd6][A|R,EID:e,PROTO:1,OP:1,ACTR:b74eef3] IM::StatusResponse => Processing E (187657) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (187657) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (187687) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (187697) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (187737) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (187737) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (187777) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef4][I|A|R,EID:e,PROTO:1,OP:5,ACTR:9d17bd6] IM::ReportData => Sending I (187827) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd7][A|R,EID:e,PROTO:1,OP:1,ACTR:b74eef4] IM::StatusResponse => Processing I (187837) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef5][I|A|R,EID:e,PROTO:1,OP:5,ACTR:9d17bd7] IM::ReportData => Sending I (188047) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef5][I|A|R,EID:e,PROTO:1,OP:5,ACTR:9d17bd7] IM::ReportData => Re-sending I (188067) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd8][A|R,EID:e,PROTO:1,OP:1,ACTR:b74eef5] IM::StatusResponse => Processing I (188077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef6][I|A,EID:e,PROTO:0,OP:10,ACTR:9d17bd8] SC::MRPStandAloneAck => Sending W (188097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bd9][A,EID:e,PROTO:0,OP:10,ACTR:b74eef5] SC::MRPStandAloneAck => No valid exchange found, dropping I (192577) light: Light toggled I (192577) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (192577) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:f] :: Initiator(Owned) I (192587) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:f]: Initiated I (192597) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef7][I|R,EID:f,PROTO:1,OP:5] IM::ReportData => Sending I (192647) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bda][A|R,EID:f,PROTO:1,OP:1,ACTR:b74eef7] IM::StatusResponse => Processing E (192657) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (192657) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (192697) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (192707) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (192737) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (192747) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (192777) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef8][I|A|R,EID:f,PROTO:1,OP:5,ACTR:9d17bda] IM::ReportData => Sending I (192827) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bdb][A|R,EID:f,PROTO:1,OP:1,ACTR:b74eef8] IM::StatusResponse => Processing I (192837) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef9][I|A|R,EID:f,PROTO:1,OP:5,ACTR:9d17bdb] IM::ReportData => Sending I (193057) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eef9][I|A|R,EID:f,PROTO:1,OP:5,ACTR:9d17bdb] IM::ReportData => Re-sending I (193077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bdc][A|R,EID:f,PROTO:1,OP:1,ACTR:b74eef9] IM::StatusResponse => Processing I (193087) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eefa][I|A,EID:f,PROTO:0,OP:10,ACTR:9d17bdc] SC::MRPStandAloneAck => Sending W (193107) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bdd][A,EID:f,PROTO:0,OP:10,ACTR:b74eef9] SC::MRPStandAloneAck => No valid exchange found, dropping I (197577) light: Light toggled I (197577) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (197577) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:10] :: Initiator(Owned) I (197587) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:10]: Initiated I (197607) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eefb][I|R,EID:10,PROTO:1,OP:5] IM::ReportData => Sending I (197647) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bde][A|R,EID:10,PROTO:1,OP:1,ACTR:b74eefb] IM::StatusResponse => Processing E (197657) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (197667) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (197697) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (197707) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (197737) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (197747) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (197777) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eefc][I|A|R,EID:10,PROTO:1,OP:5,ACTR:9d17bde] IM::ReportData => Sending I (197827) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bdf][A|R,EID:10,PROTO:1,OP:1,ACTR:b74eefc] IM::StatusResponse => Processing I (197837) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eefd][I|A|R,EID:10,PROTO:1,OP:5,ACTR:9d17bdf] IM::ReportData => Sending I (198057) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eefd][I|A|R,EID:10,PROTO:1,OP:5,ACTR:9d17bdf] IM::ReportData => Re-sending I (198077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be0][A|R,EID:10,PROTO:1,OP:1,ACTR:b74eefd] IM::StatusResponse => Processing I (198087) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eefe][I|A,EID:10,PROTO:0,OP:10,ACTR:9d17be0] SC::MRPStandAloneAck => Sending W (198107) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be1][A,EID:10,PROTO:0,OP:10,ACTR:b74eefd] SC::MRPStandAloneAck => No valid exchange found, dropping I (202577) light: Light toggled I (202577) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (202577) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:11] :: Initiator(Owned) I (202587) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:11]: Initiated I (202607) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74eeff][I|R,EID:11,PROTO:1,OP:5] IM::ReportData => Sending I (202647) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be2][A|R,EID:11,PROTO:1,OP:1,ACTR:b74eeff] IM::StatusResponse => Processing E (202667) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (202667) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (202697) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (202707) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (202737) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (202747) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (202787) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef00][I|A|R,EID:11,PROTO:1,OP:5,ACTR:9d17be2] IM::ReportData => Sending I (202837) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be3][A|R,EID:11,PROTO:1,OP:1,ACTR:b74ef00] IM::StatusResponse => Processing I (202847) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef01][I|A|R,EID:11,PROTO:1,OP:5,ACTR:9d17be3] IM::ReportData => Sending I (203067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef01][I|A|R,EID:11,PROTO:1,OP:5,ACTR:9d17be3] IM::ReportData => Re-sending I (203087) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be4][A|R,EID:11,PROTO:1,OP:1,ACTR:b74ef01] IM::StatusResponse => Processing I (203097) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef02][I|A,EID:11,PROTO:0,OP:10,ACTR:9d17be4] SC::MRPStandAloneAck => Sending W (203117) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be5][A,EID:11,PROTO:0,OP:10,ACTR:b74ef01] SC::MRPStandAloneAck => No valid exchange found, dropping I (207577) light: Light toggled I (207577) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (207587) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:12] :: Initiator(Owned) I (207587) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:12]: Initiated I (207607) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef03][I|R,EID:12,PROTO:1,OP:5] IM::ReportData => Sending I (207647) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be6][A|R,EID:12,PROTO:1,OP:1,ACTR:b74ef03] IM::StatusResponse => Processing E (207667) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (207667) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (207697) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (207707) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (207737) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (207747) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (207787) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef04][I|A|R,EID:12,PROTO:1,OP:5,ACTR:9d17be6] IM::ReportData => Sending I (207827) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be7][A|R,EID:12,PROTO:1,OP:1,ACTR:b74ef04] IM::StatusResponse => Processing I (207837) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef05][I|A|R,EID:12,PROTO:1,OP:5,ACTR:9d17be7] IM::ReportData => Sending I (208057) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef05][I|A|R,EID:12,PROTO:1,OP:5,ACTR:9d17be7] IM::ReportData => Re-sending I (208077) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be8][A|R,EID:12,PROTO:1,OP:1,ACTR:b74ef05] IM::StatusResponse => Processing I (208087) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef06][I|A,EID:12,PROTO:0,OP:10,ACTR:9d17be8] SC::MRPStandAloneAck => Sending W (208107) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17be9][A,EID:12,PROTO:0,OP:10,ACTR:b74ef05] SC::MRPStandAloneAck => No valid exchange found, dropping I (208237) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (208247) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (212577) light: Light toggled I (212587) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (212587) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:13] :: Initiator(Owned) I (212597) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:13]: Initiated I (212607) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef07][I|R,EID:13,PROTO:1,OP:5] IM::ReportData => Sending I (212657) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bea][A|R,EID:13,PROTO:1,OP:1,ACTR:b74ef07] IM::StatusResponse => Processing E (212667) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (212667) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (212697) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (212707) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (212737) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (212747) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (212787) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef08][I|A|R,EID:13,PROTO:1,OP:5,ACTR:9d17bea] IM::ReportData => Sending I (212837) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17beb][A|R,EID:13,PROTO:1,OP:1,ACTR:b74ef08] IM::StatusResponse => Processing I (212847) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef09][I|A|R,EID:13,PROTO:1,OP:5,ACTR:9d17beb] IM::ReportData => Sending I (213067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef09][I|A|R,EID:13,PROTO:1,OP:5,ACTR:9d17beb] IM::ReportData => Re-sending I (213087) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bec][A|R,EID:13,PROTO:1,OP:1,ACTR:b74ef09] IM::StatusResponse => Processing I (213097) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef0a][I|A,EID:13,PROTO:0,OP:10,ACTR:9d17bec] SC::MRPStandAloneAck => Sending W (213117) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bed][A,EID:13,PROTO:0,OP:10,ACTR:b74ef09] SC::MRPStandAloneAck => No valid exchange found, dropping I (217587) light: Light toggled I (217587) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (217587) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:14] :: Initiator(Owned) I (217597) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:14]: Initiated I (217607) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef0b][I|R,EID:14,PROTO:1,OP:5] IM::ReportData => Sending I (217657) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bee][A|R,EID:14,PROTO:1,OP:1,ACTR:b74ef0b] IM::StatusResponse => Processing E (217667) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (217667) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (217707) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (217707) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (217747) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (217757) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (217787) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef0c][I|A|R,EID:14,PROTO:1,OP:5,ACTR:9d17bee] IM::ReportData => Sending I (217837) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bef][A|R,EID:14,PROTO:1,OP:1,ACTR:b74ef0c] IM::StatusResponse => Processing I (217847) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef0d][I|A|R,EID:14,PROTO:1,OP:5,ACTR:9d17bef] IM::ReportData => Sending I (218067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef0d][I|A|R,EID:14,PROTO:1,OP:5,ACTR:9d17bef] IM::ReportData => Re-sending I (218087) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf0][A|R,EID:14,PROTO:1,OP:1,ACTR:b74ef0d] IM::StatusResponse => Processing I (218097) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef0e][I|A,EID:14,PROTO:0,OP:10,ACTR:9d17bf0] SC::MRPStandAloneAck => Sending W (218117) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf1][A,EID:14,PROTO:0,OP:10,ACTR:b74ef0d] SC::MRPStandAloneAck => No valid exchange found, dropping I (221897) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:8307] :: Responder(AcceptPending) I (221897) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf2][I|R,EID:8307,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (221917) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:8307]: Accepted I (221917) rs_matter::respond: Responder: Handler 0 / exchange 7::0: Starting I (221937) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef0f][A|R,EID:8307,PROTO:1,OP:5,ACTR:9d17bf2] IM::ReportData => Sending I (221967) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf3][I|A,EID:8307,PROTO:0,OP:10,ACTR:b74ef0f] SC::MRPStandAloneAck => Standalone Ack, dropping I (221967) rs_matter::respond: Responder: Handler 0 / exchange 7::0: Completed I (221987) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:8308] :: Responder(AcceptPending) I (221987) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf4][I|R,EID:8308,PROTO:1,OP:2] IM::ReadRequest => Processing (new exchange) I (222007) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:8308]: Accepted I (222017) rs_matter::respond: Responder: Handler 0 / exchange 7::0: Starting I (222027) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef10][A|R,EID:8308,PROTO:1,OP:5,ACTR:9d17bf4] IM::ReportData => Sending I (222057) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf5][I|A,EID:8308,PROTO:0,OP:10,ACTR:b74ef10] SC::MRPStandAloneAck => Standalone Ack, dropping I (222067) rs_matter::respond: Responder: Handler 0 / exchange 7::0: Completed I (222587) light: Light toggled I (222587) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (222587) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:15] :: Initiator(Owned) I (222597) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:15]: Initiated I (222617) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef11][I|R,EID:15,PROTO:1,OP:5] IM::ReportData => Sending I (222667) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf6][A|R,EID:15,PROTO:1,OP:1,ACTR:b74ef11] IM::StatusResponse => Processing E (222677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (222677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (222707) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (222717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (222757) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (222757) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (222797) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef12][I|A|R,EID:15,PROTO:1,OP:5,ACTR:9d17bf6] IM::ReportData => Sending I (222857) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf7][A|R,EID:15,PROTO:1,OP:1,ACTR:b74ef12] IM::StatusResponse => Processing I (222867) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef13][I|A|R,EID:15,PROTO:1,OP:5,ACTR:9d17bf7] IM::ReportData => Sending I (223077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef13][I|A|R,EID:15,PROTO:1,OP:5,ACTR:9d17bf7] IM::ReportData => Re-sending I (223097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf8][A|R,EID:15,PROTO:1,OP:1,ACTR:b74ef13] IM::StatusResponse => Processing I (223107) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef14][I|A,EID:15,PROTO:0,OP:10,ACTR:9d17bf8] SC::MRPStandAloneAck => Sending W (223127) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bf9][A,EID:15,PROTO:0,OP:10,ACTR:b74ef13] SC::MRPStandAloneAck => No valid exchange found, dropping I (227587) light: Light toggled I (227587) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (227587) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:16] :: Initiator(Owned) I (227597) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:16]: Initiated I (227617) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef15][I|R,EID:16,PROTO:1,OP:5] IM::ReportData => Sending I (227657) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bfa][A|R,EID:16,PROTO:1,OP:1,ACTR:b74ef15] IM::StatusResponse => Processing E (227677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (227677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (227707) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (227717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (227747) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (227757) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (227797) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef16][I|A|R,EID:16,PROTO:1,OP:5,ACTR:9d17bfa] IM::ReportData => Sending I (227847) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bfb][A|R,EID:16,PROTO:1,OP:1,ACTR:b74ef16] IM::StatusResponse => Processing I (227857) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef17][I|A|R,EID:16,PROTO:1,OP:5,ACTR:9d17bfb] IM::ReportData => Sending I (228067) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef17][I|A|R,EID:16,PROTO:1,OP:5,ACTR:9d17bfb] IM::ReportData => Re-sending I (228087) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bfc][A|R,EID:16,PROTO:1,OP:1,ACTR:b74ef17] IM::StatusResponse => Processing I (228097) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef18][I|A,EID:16,PROTO:0,OP:10,ACTR:9d17bfc] SC::MRPStandAloneAck => Sending W (228117) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bfd][A,EID:16,PROTO:0,OP:10,ACTR:b74ef17] SC::MRPStandAloneAck => No valid exchange found, dropping I (232587) light: Light toggled I (232587) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (232597) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:17] :: Initiator(Owned) I (232607) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:17]: Initiated I (232617) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef19][I|R,EID:17,PROTO:1,OP:5] IM::ReportData => Sending I (232667) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bfe][A|R,EID:17,PROTO:1,OP:1,ACTR:b74ef19] IM::StatusResponse => Processing E (232677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (232677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (232707) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (232717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (232757) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (232757) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (232797) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef1a][I|A|R,EID:17,PROTO:1,OP:5,ACTR:9d17bfe] IM::ReportData => Sending I (232847) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17bff][A|R,EID:17,PROTO:1,OP:1,ACTR:b74ef1a] IM::StatusResponse => Processing I (232857) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef1b][I|A|R,EID:17,PROTO:1,OP:5,ACTR:9d17bff] IM::ReportData => Sending I (233077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef1b][I|A|R,EID:17,PROTO:1,OP:5,ACTR:9d17bff] IM::ReportData => Re-sending I (233097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c00][A|R,EID:17,PROTO:1,OP:1,ACTR:b74ef1b] IM::StatusResponse => Processing I (233097) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef1c][I|A,EID:17,PROTO:0,OP:10,ACTR:9d17c00] SC::MRPStandAloneAck => Sending W (233117) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c01][A,EID:17,PROTO:0,OP:10,ACTR:b74ef1b] SC::MRPStandAloneAck => No valid exchange found, dropping I (237587) light: Light toggled I (237597) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (237597) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:18] :: Initiator(Owned) I (237607) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:18]: Initiated I (237617) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef1d][I|R,EID:18,PROTO:1,OP:5] IM::ReportData => Sending I (237667) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c02][A|R,EID:18,PROTO:1,OP:1,ACTR:b74ef1d] IM::StatusResponse => Processing E (237677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (237677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (237717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (237717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (237757) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (237767) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (237797) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef1e][I|A|R,EID:18,PROTO:1,OP:5,ACTR:9d17c02] IM::ReportData => Sending I (237847) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c03][A|R,EID:18,PROTO:1,OP:1,ACTR:b74ef1e] IM::StatusResponse => Processing I (237857) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef1f][I|A|R,EID:18,PROTO:1,OP:5,ACTR:9d17c03] IM::ReportData => Sending I (238077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef1f][I|A|R,EID:18,PROTO:1,OP:5,ACTR:9d17c03] IM::ReportData => Re-sending I (238097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c04][A|R,EID:18,PROTO:1,OP:1,ACTR:b74ef1f] IM::StatusResponse => Processing I (238107) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef20][I|A,EID:18,PROTO:0,OP:10,ACTR:9d17c04] SC::MRPStandAloneAck => Sending W (238127) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c05][A,EID:18,PROTO:0,OP:10,ACTR:b74ef1f] SC::MRPStandAloneAck => No valid exchange found, dropping I (238257) rs_matter::mdns::builtin: Broadcasting mDNS entry to 224.0.0.251:5353 I (238257) rs_matter::mdns::builtin: Broadcasting mDNS entry to [ff02::fb%4]:5353 I (241047) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:8309] :: Responder(AcceptPending) I (241047) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c06][I|R,EID:8309,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (241067) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:8309]: Accepted I (241067) rs_matter::respond: Responder: Handler 0 / exchange 7::0: Starting I (241077) rs_matter::data_model::cluster_on_off: Handling command Off I (241087) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef21][A|R,EID:8309,PROTO:1,OP:9,ACTR:9d17c06] IM::InvokeResponse => Sending I (241117) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c07][I|A,EID:8309,PROTO:0,OP:10,ACTR:b74ef21] SC::MRPStandAloneAck => Standalone Ack, dropping I (241127) rs_matter::respond: Responder: Handler 0 / exchange 7::0: Completed I (242277) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:830a] :: Responder(AcceptPending) I (242277) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c08][I|R,EID:830a,PROTO:1,OP:8] IM::InvokeRequest => Processing (new exchange) I (242297) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:830a]: Accepted I (242297) rs_matter::respond: Responder: Handler 0 / exchange 7::0: Starting I (242307) rs_matter::data_model::cluster_on_off: Handling command On I (242317) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef22][A|R,EID:830a,PROTO:1,OP:9,ACTR:9d17c08] IM::InvokeResponse => Sending I (242337) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c08][I|R,EID:830a,PROTO:1,OP:8] IM::InvokeRequest => Duplicate, sending ACK I (242357) rs_matter::transport::core: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef23][A,EID:830a,PROTO:0,OP:10,ACTR:9d17c08] SC::MRPStandAloneAck => Sending (system) I (242387) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c09][I|A,EID:830a,PROTO:0,OP:10,ACTR:b74ef22] SC::MRPStandAloneAck => Standalone Ack, dropping I (242397) rs_matter::respond: Responder: Handler 0 / exchange 7::0: Completed I (242597) light: Light toggled I (242597) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (242597) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:19] :: Initiator(Owned) I (242607) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:19]: Initiated I (242617) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef24][I|R,EID:19,PROTO:1,OP:5] IM::ReportData => Sending I (242667) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c0a][A|R,EID:19,PROTO:1,OP:1,ACTR:b74ef24] IM::StatusResponse => Processing E (242677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (242677) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (242717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (242717) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (242757) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (242757) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (242797) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef25][I|A|R,EID:19,PROTO:1,OP:5,ACTR:9d17c0a] IM::ReportData => Sending I (242847) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c0b][A|R,EID:19,PROTO:1,OP:1,ACTR:b74ef25] IM::StatusResponse => Processing I (242857) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef26][I|A|R,EID:19,PROTO:1,OP:5,ACTR:9d17c0b] IM::ReportData => Sending I (243077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef26][I|A|R,EID:19,PROTO:1,OP:5,ACTR:9d17c0b] IM::ReportData => Re-sending I (243097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c0c][A|R,EID:19,PROTO:1,OP:1,ACTR:b74ef26] IM::StatusResponse => Processing I (243107) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef27][I|A,EID:19,PROTO:0,OP:10,ACTR:9d17c0c] SC::MRPStandAloneAck => Sending W (243127) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c0d][A,EID:19,PROTO:0,OP:10,ACTR:b74ef26] SC::MRPStandAloneAck => No valid exchange found, dropping I (247597) light: Light toggled I (247597) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (247597) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:1a] :: Initiator(Owned) I (247607) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:1a]: Initiated I (247627) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef28][I|R,EID:1a,PROTO:1,OP:5] IM::ReportData => Sending I (247667) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c0e][A|R,EID:1a,PROTO:1,OP:1,ACTR:b74ef28] IM::StatusResponse => Processing E (247677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (247687) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (247717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (247727) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (247757) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (247767) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (247807) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef29][I|A|R,EID:1a,PROTO:1,OP:5,ACTR:9d17c0e] IM::ReportData => Sending I (247847) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c0f][A|R,EID:1a,PROTO:1,OP:1,ACTR:b74ef29] IM::StatusResponse => Processing I (247857) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef2a][I|A|R,EID:1a,PROTO:1,OP:5,ACTR:9d17c0f] IM::ReportData => Sending I (248077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef2a][I|A|R,EID:1a,PROTO:1,OP:5,ACTR:9d17c0f] IM::ReportData => Re-sending I (248097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c10][A|R,EID:1a,PROTO:1,OP:1,ACTR:b74ef2a] IM::StatusResponse => Processing I (248107) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef2b][I|A,EID:1a,PROTO:0,OP:10,ACTR:9d17c10] SC::MRPStandAloneAck => Sending W (248127) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c11][A,EID:1a,PROTO:0,OP:10,ACTR:b74ef2a] SC::MRPStandAloneAck => No valid exchange found, dropping I (252597) light: Light toggled I (252597) rs_matter::data_model::core: About to report data for subscription [F:2,P:1b669]::1 I (252597) rs_matter::transport::session: New exchange: 7::0 [SID:3,RSID:c20d,EID:1b] :: Initiator(Owned) I (252607) rs_matter::transport::core: Exchange 7::0 [SID:3,RSID:c20d,EID:1b]: Initiated I (252627) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef2c][I|R,EID:1b,PROTO:1,OP:5] IM::ReportData => Sending I (252667) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c12][A|R,EID:1b,PROTO:1,OP:1,ACTR:b74ef2c] IM::StatusResponse => Processing E (252677) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (252687) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (252717) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (252727) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] E (252757) rs_matter::acl: ACL Disallow for subjects [112233, ] fab idx 2 E (252767) rs_matter::acl: ACLS: [ { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(18446744060824715265), None, None, None], targets: NotNull([None, None, None]), fab_idx: 1 } }, { AclEntry { privilege: Privilege(V | O | M | A), auth_mode: Case, subjects: [Some(112233), None, None, None], targets: NotNull([None, None, None]), fab_idx: 2 } }, ] I (252797) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef2d][I|A|R,EID:1b,PROTO:1,OP:5,ACTR:9d17c12] IM::ReportData => Sending I (252857) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c13][A|R,EID:1b,PROTO:1,OP:1,ACTR:b74ef2d] IM::StatusResponse => Processing I (252867) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef2e][I|A|R,EID:1b,PROTO:1,OP:5,ACTR:9d17c13] IM::ReportData => Sending I (253077) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef2e][I|A|R,EID:1b,PROTO:1,OP:5,ACTR:9d17c13] IM::ReportData => Re-sending I (253097) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c14][A|R,EID:1b,PROTO:1,OP:1,ACTR:b74ef2e] IM::StatusResponse => Processing I (253107) rs_matter::transport::exchange: <<<<< UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:c20d,CTR:b74ef2f][I|A,EID:1b,PROTO:0,OP:10,ACTR:9d17c14] SC::MRPStandAloneAck => Sending W (253127) rs_matter::transport::core: >>>>> UDP [fe80::6449:c4db:6677:6db2%4]:52414 [SID:3,CTR:9d17c15][A,EID:1b,PROTO:0,OP:10,ACTR:b74ef2e] SC::MRPStandAloneAck => No valid exchange found, dropping ```
HA log ``` 2024-07-09 16:59:33.340 (MainThread) INFO [matter_server.server.device_controller] Starting Matter commissioning using Node ID 3 and IP fe80::424c:caff:fe50:912c%end0. 2024-07-09 16:59:34.309 (Dummy-2) INFO [root] Established secure session with Device 2024-07-09 16:59:38.652 (Dummy-2) INFO [root] Commissioning complete 2024-07-09 16:59:38.652 (MainThread) INFO [matter_server.server.device_controller] Matter commissioning of Node ID 3 successful. 2024-07-09 16:59:38.652 (MainThread) INFO [matter_server.server.device_controller] Interviewing node: 3 2024-07-09 16:59:39.192 (MainThread) INFO [matter_server.server.device_controller.node_3] Setting-up node... 2024-07-09 16:59:39.195 (MainThread) INFO [matter_server.server.device_controller.node_3] Setting up attributes and events subscription. 2024-07-09 16:59:39.897 (MainThread) INFO [matter_server.server.device_controller.node_3] Subscription succeeded with report interval [0, 60] 2024-07-09 16:59:39.898 (MainThread) INFO [matter_server.server.device_controller] Commissioning of Node ID 3 completed. ```

The switch state updates are properly sent to Home Assistant and the light can be toggled from there. So except for the commissioning issues, everything seems to be functional.

Although after restarting the ESP device it want's to be commissioned again, but to be honest I'm not sure whether persistence is actually implemented in this project.

ivmarkov commented 4 months ago

While testing I noticed something odd though, I cannot reach the ESPC6 via it's LLA until I ping it once via IPv4:

> I (164577) rs_matter_stack: Got IP network: IPv4: 192.168.1.86, IPv6: fe80::424c:caff:fe50:912c, Interface: 2, MAC: 40:4C:CA:50:91:2C
> ping -6 fe80::424c:caff:fe50:912c%lan1 # ESP
PING fe80::424c:caff:fe50:912c%lan1 (fe80::424c:caff:fe50:912c%lan1) 56 data bytes
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=1 Destination unreachable: Address unreachable
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=2 Destination unreachable: Address unreachable
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=3 Destination unreachable: Address unreachable
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=4 Destination unreachable: Address unreachable
ping: sendmsg: No route to host
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=5 Destination unreachable: Address unreachable
From fe80::264b:feff:fe5c:bc59%lan1 icmp_seq=6 Destination unreachable: Address unreachable
[...]
> ping -4 192.168.1.86
PING 192.168.1.86 (192.168.1.86) 56(84) bytes of data.
64 bytes from 192.168.1.86: icmp_seq=1 ttl=64 time=665 ms
64 bytes from 192.168.1.86: icmp_seq=2 ttl=64 time=187 ms
[...]
> ping -6 fe80::424c:caff:fe50:912c%lan1 # ESP
PING fe80::424c:caff:fe50:912c%lan1 (fe80::424c:caff:fe50:912c%lan1) 56 data bytes
64 bytes from fe80::424c:caff:fe50:912c%lan1: icmp_seq=1 ttl=255 time=155 ms
64 bytes from fe80::424c:caff:fe50:912c%lan1: icmp_seq=2 ttl=255 time=485 ms
[...]

This sounds weird! Unfortunately I'm not sure whether it is just a glitch in ESP-IDF's ICMPv6 implementation, or an indication of a bigger issue...

Will try it out myself.

Another option: Can you try the light_eth example too? It only goes via mDNS + ipv6 so if there is an mDNS discoverability issue, we'll know right away...

I'll check if I have a supported ethernet module lying around somewhere.

No - if you look at the light_eth.rs file - it is abusing Wifi, not really using ethernet (from the POV of Matter it is all the same). "Ethernet" just implies that the device is already connected to the network. You just have to export WIFI_SSID + export WIFI_PASS prior to running the example.

ivmarkov commented 4 months ago

I can see ACL errors regularly when the light state changes, but I cannot spot anything that isn't working. Here are the logs:

That's "ok". We have to remove the error logs from AclMgr, as they are confusing (and are not really errors).

Although after restarting the ESP device it want's to be commissioned again, but to be honest I'm not sure whether persistence is actually implemented in this project.

Persistence is currently commented out. It was supposed to be implemented (tested actually) more than a month ago, but there is something more important constantly popping up.