Controller
repo init -u https://code.rdkcentral.com/r/manifests -b kirkstone -m rdkb-bpi-extsrc.xml repo sync -j`nproc` --no-clone-bundle # Default build with AL_SAP MACHINE=bananapi4-rdk-broadband FEATURE_TYPE=EasyMesh source meta-cmf-bananapi/setup-environment-refboard-rdkb #to CP the below change for fynecli access for utopia component https://github.com/rdkcentral/utopia/pull/47 bitbake rdk-generic-broadband-image
Extender
repo init -u https://code.rdkcentral.com/r/manifests -b kirkstone -m rdkb-bpi-ap-extsrc.xml repo sync -j4 --no-clone-bundle #Default build with AL_SAP MACHINE=bananapi4-rdk-broadband-ap-extender source meta-cmf-bananapi/setup-environment-refboard-rdkb bitbake rdk-generic-ap-extender-image
Copy *.wic.bz2 from build machine (image path is ~/build-bananapi4-rdk-broadband/tmp/deploy/images/bananapi4-rdk-broadband/) bzip2 -d <Path to ImageName.wic.bz2> sudo -E bmaptool copy --nobmap <Path to ImageName.wic> <Path to SD card device file>
Commands to change the power level of the device
| Commands to change the power level of the device # offsets are from linux-mt76/3.x-r0/git/mt7996/eeprom.h # copy eeprom (efuse?) into factory partition dd if=/sys/kernel/debug/ieee80211/phy0/mt76/eeprom of=/dev/mtdblock3 # overwrite tx power limit for 2g and 5g printf '\x29' | dd of=/dev/mtdblock3 bs=1 count=1 conv=notrunc seek=$((0x1300)) printf '\x27' | dd of=/dev/mtdblock3 bs=1 count=1 conv=notrunc seek=$((0x1301)) # reboot device reboot # verify eeprom_mode and tx power limits |
Please ensure below processes are running in ctrl.
root@Filogic-GW:~# systemctl status ieee1905_em_ctrl
● ieee1905_em_ctrl.service - ieee1905 EasyMesh Controller service
Loaded: loaded (/lib/systemd/system/ieee1905_em_ctrl.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2022-04-28 17:43:33 UTC; 3 years 3 months ago
Process: 4793 ExecStartPre=/bin/sh -c sleep 5 (code=exited, status=0/SUCCESS)
Process: 4941 ExecStartPre=/bin/sh -c if [ ! -e "/sys/class/net/eth0_virt_peer/address" ]; then `/usr/ccsp/EasyMesh/setup_veth_for_em.sh brlan0 eth0 true`; fi (code=exited, status=0/SUCCESS)
Process: 4942 ExecStart=/bin/sh -c /usr/bin/ieee1905 -f ieee1905::al_sap=trace,ieee1905::cmdu_handler=trace,ieee1905::cmdu_proxy=trace,ieee1905::cmdu_observer=trace -i eth0_virt_peer --sap-data-path /tmp/al_em_ctrl_data_socket --sap-control-path /tmp/al_em_ctrl_control_socket >> /tmp/ieee1905_ctrl_log.txt & (code=exited, status=0/SUCCESS)
Main PID: 4943 (ieee1905)
Tasks: 7 (limit: 4713)
Memory: 22.3M
CGroup: /system.slice/ieee1905_em_ctrl.service
└─ 4943 /usr/bin/ieee1905 -f ieee1905::al_sap=trace,ieee1905::cmdu_handler=trace,ieee1905::cmdu_proxy=trace,ieee1905::cmdu_observer=trace -i eth0_virt_peer --sap-data-path /tmp/al_em_ctrl_data_socket --sap-control-path /tmp/al_em_ctrl_control_socket
Notice: journal has been rotated since unit was started, output may be incomplete.
root@Filogic-GW:~# systemctl status em_ctrl
● em_ctrl.service - EasyMesh Controller service
Loaded: loaded (/lib/systemd/system/em_ctrl.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2025-08-07 05:54:27 UTC; 20min ago
Process: 18033 ExecStartPre=/bin/sh -c /usr/ccsp/EasyMesh/setup_mysql_db_pre.sh (code=exited, status=0/SUCCESS)
Process: 18038 ExecStart=/bin/sh -c /usr/bin/onewifi_em_ctrl bpi\@root >> /tmp/em_ctrl.log & (code=exited, status=0/SUCCESS)
Process: 18040 ExecStartPost=/bin/sh -c /usr/ccsp/EasyMesh/setup_mysql_db_post.sh (code=exited, status=0/SUCCESS)
Main PID: 18039 (onewifi_em_ctrl)
Tasks: 15 (limit: 4713)
Memory: 185.2M
CGroup: /system.slice/em_ctrl.service
└─ 18039 /usr/bin/onewifi_em_ctrl bpi@root
Notice: journal has been rotated since unit was started, output may be incomplete.
root@Filogic-GW:~#
root@Filogic-GW:~# systemctl status ieee1905_em_agent
● ieee1905_em_agent.service - ieee1905 EasyMesh Agent service
Loaded: loaded (/lib/systemd/system/ieee1905_em_agent.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2025-08-07 05:54:31 UTC; 21min ago
Process: 4944 ExecStartPre=/bin/sh -c if [ ! -e "/sys/class/net/eth1_virt_peer/address" ]; then `/usr/ccsp/EasyMesh/setup_veth_for_em.sh brlan0 eth1 false`;fi (code=exited, status=0/SUCCESS)
Process: 4945 ExecStartPre=/bin/sh -c while [ ! -e /tmp/wifi_initialized ] && [ ! -e /tmp/wifi_dml_complete ] ;do sleep 1; done (code=exited, status=0/SUCCESS)
Process: 17690 ExecStartPre=/bin/sh -c sleep 5 (code=exited, status=0/SUCCESS)
Process: 19496 ExecStart=/bin/sh -c /usr/bin/ieee1905 -f ieee1905::al_sap=trace,ieee1905::cmdu_handler=trace,ieee1905::cmdu_proxy=trace,ieee1905::cmdu_observer=trace -i eth1_virt_peer >> /tmp/ieee1905_agent_log.txt & (code=exited, status=0/SUCCESS)
Main PID: 19497 (ieee1905)
Tasks: 7 (limit: 4713)
Memory: 18.8M
CGroup: /system.slice/ieee1905_em_agent.service
└─ 19497 /usr/bin/ieee1905 -f ieee1905::al_sap=trace,ieee1905::cmdu_handler=trace,ieee1905::cmdu_proxy=trace,ieee1905::cmdu_observer=trace -i eth1_virt_peer
Notice: journal has been rotated since unit was started, output may be incomplete.
root@Filogic-GW:~# systemctl status em_agent
● em_agent.service - EasyMesh Agent service
Loaded: loaded (/lib/systemd/system/em_agent.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2025-08-07 06:15:40 UTC; 17s ago
Process: 476399 ExecStartPre=/bin/sh -c /usr/ccsp/EasyMesh/setup_agent_pre.sh (code=exited, status=0/SUCCESS)
Process: 476405 ExecStartPre=/bin/sh -c sleep 15 (code=exited, status=0/SUCCESS)
Process: 482087 ExecStart=/bin/sh -c /usr/bin/onewifi_em_agent >> /tmp/em_agent.log & (code=exited, status=0/SUCCESS)
Main PID: 482089 (onewifi_em_agen)
Tasks: 8 (limit: 4713)
Memory: 8.8M
CGroup: /system.slice/em_agent.service
└─ 482089 /usr/bin/onewifi_em_agent
2025 Aug 07 06:15:25 Filogic-GW systemd[1]: Starting EasyMesh Agent service...
2025 Aug 07 06:15:40 Filogic-GW systemd[1]: Started EasyMesh Agent service.
To run cli,
cd /usr/ccsp/EasyMesh |
Observation in EM-Controller device side:
1.Please ensure below processes are running in Ext1
root@Filogic-GW:~# systemctl status onewifi
* onewifi.service - Cosa service
Loaded: loaded (8;;file://Filogic-GW/lib/systemd/system/onewifi.service/lib/systemd/system/onewifi.service8;;; enabled; vendor preset: e)
Active: active (running) since Thu 2022-04-28 17:43:15 UTC; 3min 29s ago
TriggeredBy: * filogicwifiinitialized.path
Process: 1781 ExecStartPre=/bin/sh /usr/ccsp/wifi/onewifi_pre_start.sh (code=exited, status=0/SUCCESS)
Process: 2085 ExecStart=/usr/bin/OneWifi -subsys $Subsys (code=exited, status=0/SUCCESS)
Main PID: 2086 (OneWifi)
Tasks: 14 (limit: 4713)
Memory: 38.2M
CGroup: /system.slice/onewifi.service
`- 2086 /usr/bin/OneWifi -subsys eRT.
2022 Apr 28 17:42:48 Filogic-GW systemd[1]: Starting Cosa service...
2022 Apr 28 17:42:53 Filogic-GW UTOPIA[2086]: system.syscfg Shared memory file not found
2022 Apr 28 17:42:53 Filogic-GW UTOPIA[2086]: 2022-04-28 17:42:53., ../../../../git/source/syscfg/lib/syscfg_lib.c:466, Error initializing sy
2022 Apr 28 17:43:15 Filogic-GW systemd[1]: Started Cosa service.
2022 Apr 28 17:44:01 Filogic-GW [OneWifi][2086]: WiFi radio radio1 is set to UP
root@Filogic-GW:~# systemctl status ieee1905_em_agent
* ieee1905_em_agent.service - ieee1905 EasyMesh Remote Agent service
Loaded: loaded (8;;file://Filogic-GW/lib/systemd/system/ieee1905_em_agent.service/lib/systemd/system/ieee1905_em_agent.service8;;; enabl)
Active: active (running) since Thu 2022-04-28 17:43:35 UTC; 3min 16s ago
Process: 3284 ExecStartPre=/bin/sh -c /usr/ccsp/EasyMesh/setup_ext_pre.sh (code=exited, status=0/SUCCESS)
Process: 3303 ExecStartPre=/bin/sh -c if [ ! -e "/sys/class/net/eth1_virt_peer/address" ]; then `/usr/ccsp/EasyMesh/setup_veth_for_em.sh )
Process: 3304 ExecStartPre=/bin/sh -c sleep 5 (code=exited, status=0/SUCCESS)
Process: 3439 ExecStart=/bin/sh -c /usr/bin/ieee1905 -f ieee1905::al_sap=trace,ieee1905::cmdu_handler=trace,ieee1905::cmdu_proxy=trace,ie)
Main PID: 3440 (ieee1905)
Tasks: 7 (limit: 4713)
Memory: 10.5M
CGroup: /system.slice/ieee1905_em_agent.service
`- 3440 /usr/bin/ieee1905 -f ieee1905::al_sap=trace,ieee1905::cmdu_handler=trace,ieee1905::cmdu_proxy=trace,ieee1905::cmdu_obserr
2022 Apr 28 17:43:30 Filogic-GW systemd[1]: Starting ieee1905 EasyMesh Remote Agent service...
2022 Apr 28 17:43:35 Filogic-GW systemd[1]: Started ieee1905 EasyMesh Remote Agent service.
root@Filogic-GW:~# systemctl status em_agent
* em_agent.service - EasyMesh Agent service
Loaded: loaded (8;;file://Filogic-GW/lib/systemd/system/em_agent.service/lib/systemd/system/em_agent.service8;;; enabled; vendor preset:)
Active: active (running) since Thu 2022-04-28 17:44:00 UTC; 2min 57s ago
Process: 3283 ExecStartPre=/bin/sh -c sleep 30 (code=exited, status=0/SUCCESS)
Process: 3621 ExecStartPre=/bin/sh -c /usr/ccsp/EasyMesh/setup_ext_pre.sh (code=exited, status=0/SUCCESS)
Process: 3640 ExecStart=/bin/sh -c /usr/bin/onewifi_em_agent >> /tmp/em_agent.log & (code=exited, status=0/SUCCESS)
Main PID: 3641 (onewifi_em_agen)
Tasks: 9 (limit: 4713)
Memory: 10.8M
CGroup: /system.slice/em_agent.service
`- 3641 /usr/bin/onewifi_em_agent
2.Ensure mesh backhaul connectivity is established over 5G through wifi1.1 interface.
| iw dev wifi1.3 info |
3.Verify mesh backhaul connection in EM-Contrller side as well.
iw dev wifi1.1.sta<i> infoiw dev wifi1.1.sta<i> station dump ## This command gives information on connected client ie Extender1. |
4. Wait for few minutes( for Agent to propagate SSID information from Controller to OneWifi in Extender1) and then check
5. Test the connectivity to EM-Controller through backhaul
|
Test the connectivity with wireless clients.
1. Ensure Extender 1 is running properly with configured vap's of FH and BH.
2. Make atleast 7 feet distance from Ext1 to Ext2
3. Ensure ieee1905_em_agent,onewifi_em_agent processes are running in Ext2
4. Ensure mesh backhaul connectivity is established over 5G through wifi1.1 interface.
|
5. Verify mesh backhaul connection in Extender1 side as well.
|
6. Wait for few minutes( for Agent to propagate SSID information from Controller to OneWifi in Extender2) and then check
7. Test the connectivity to EM-Controller through backhaul
| ping 10.0.0.1 -c 5 |
Test the connectivity with wireless clients.
root@Filogic-GW:~# cat /tmp/em_ctrl.log [onewifi_em_ctrl] 09/16/2025 - 05:37:30.251313 :em_ctrl.cpp:915: INFO: AL SAP registration successful, AL MAC: 02:01:00:ec:07:9e [onewifi_em_ctrl] 09/16/2025 - 05:38:09.875186 :em_ctrl.cpp:915: INFO: AL SAP registration successful, AL MAC: 02:01:00:ec:07:9e connect:170: user:bpi pass:root create_data_model:1524: Created data model for net_id: OneWifiMesh mac: 02:01:00:ec:07:9e, coloc:1 create_data_model:1544: Number of policies: 8 create_data_model:1561: Putting data model at key: OneWifiMesh@02:01:00:ec:07:9e create_node:203 key value used:02:01:00:ec:07:9e_al EC Manager created with MAC: 02:01:00:ec:07:9e [onewifi_em_ctrl] 09/16/2025 - 05:38:10.016219 :ec_1905_encrypt_layer.cpp:557: INFO: Initialized 1905 layer encryption with security parameters em_func:558 Thread stack size = 8388608 bytes create_node:224: created entry for key:02:01:00:ec:07:9e_al mgr_input_listen:290 Thread stack size = 8388608 bytes mgr_nodes_listen:436 Thread stack size = 8388608 bytes start_complete:861 Collocated agent ID: 02:01:00:ec:07:9e publish fail [onewifi_em_ctrl] 09/16/2025 - 05:38:10.532520 :dm_easy_mesh_ctrl.cpp:2027: INFO: Root topology dev_mac:02:01:00:ec:07:9e, num_bss:0 update_tables:1801: Op Class[0] ruid: 02:01:00:ec:07:9e Type: 7 Class: 81 update_tables:1801: Op Class[1] ruid: 02:01:00:ec:07:9e Type: 7 Class: 115 update_tables:1801: Op Class[2] ruid: 02:01:00:ec:07:9e Type: 7 Class: 135 update_tables:1801: Op Class[3] ruid: 02:01:00:ec:07:9e Type: 8 Class: 81 update_tables:1801: Op Class[4] ruid: 02:01:00:ec:07:9e Type: 8 Class: 115 update_tables:1801: Op Class[5] ruid: 02:01:00:ec:07:9e Type: 8 Class: 135 analyze_config_renew:98: Radio: 00:00:00:00:00:00 find_em_for_msg_type:611: Received autoconfig search from agenti al mac: 02:01:00:ec:07:ae create_data_model:1524: Created data model for net_id: OneWifiMesh mac: 02:01:00:ec:07:ae, coloc:0 create_data_model:1544: Number of policies: 8 create_data_model:1561: Putting data model at key: OneWifiMesh@02:01:00:ec:07:ae find_em_for_msg_type:617: Created data model for mac: 02:01:00:ec:07:ae net: OneWifiMesh handle_autoconfig_search:5011: autoconfig rsp send success find_em_for_msg_type:611: Received autoconfig search from agenti al mac: 02:01:00:ec:07:ae find_em_for_msg_type:620: Found existing data model for mac: 02:01:00:ec:07:ae net: OneWifiMesh handle_autoconfig_search:5011: autoconfig rsp send success find_em_for_msg_type:647: Found data model for mac: 02:01:00:ec:07:ae, creating node for ruid: 02:02:10:ec:07:92 create_node:203 key value used:02:02:10:ec:07:92 em_func:558 Thread stack size = 8388608 bytes create_node:224: created entry for key:02:02:10:ec:07:92 process_msg:5084: received wsc_m1 len:559 handle_autoconfig_wsc_m1:4851: Device AL MAC: 02:01:00:ec:07:ae handle_ap_radio_basic_cap:4785: Radio does not exist, getting radio at index: 0 find_em_for_msg_type:647: Found data model for mac: 02:01:00:ec:07:ae, creating node for ruid: 02:02:20:ec:07:93 [onewifi_em_ctrl] 09/16/2025 - 05:38:15.995020 :em_configuration.cpp:3603: INFO: Recieved AKMs: (0x0000) handle_wsc_m1:3647 Freq band = 0 create_node:203 key value used:02:02:20:ec:07:93 em_func:558 Thread stack size = 8388608 bytes create_node:224: created entry for key:02:02:20:ec:07:93 process_msg:5084: received wsc_m1 len:664 handle_autoconfig_wsc_m1:4851: Device AL MAC: 02:01:00:ec:07:ae handle_ap_radio_basic_cap:4785: Radio does not exist, getting radio at index: 1 [onewifi_em_ctrl] 09/16/2025 - 05:38:16.007897 :em_configuration.cpp:3603: INFO: Recieved AKMs: (0x0000) handle_wsc_m1:3647 Freq band = 1 create_encrypted_settings:4591 No of haultype=4 radio no of bss=4 create_encrypted_settings:4613: ssid: private_ssid, passphrase: test-fronthaul create_encrypted_settings:4613: ssid: mesh_backhaul, passphrase: test-backhaul create_encrypted_settings:4613: ssid: iot_ssid, passphrase: test-backhaul create_encrypted_settings:4613: ssid: lnf_radius, passphrase: test-backhaul handle_autoconfig_wsc_m1:4890: autoconfig wsc m2 send, len:1036 analyze_m2_tx:223: Radio: 02:02:10:ec:07:92 AL MAC: 02:01:00:ec:07:ae create_encrypted_settings:4591 No of haultype=4 radio no of bss=4 create_encrypted_settings:4613: ssid: private_ssid, passphrase: test-fronthaul create_encrypted_settings:4613: ssid: mesh_backhaul, passphrase: test-backhaul create_encrypted_settings:4613: ssid: iot_ssid, passphrase: test-backhaul create_encrypted_settings:4613: ssid: lnf_radius, passphrase: test-backhaul handle_autoconfig_wsc_m1:4890: autoconfig wsc m2 send, len:1036 analyze_m2_tx:223: Radio: 02:02:20:ec:07:93 AL MAC: 02:01:00:ec:07:ae put_device:234: Device:02:01:00:ec:07:ae inserted in network:OneWifiMesh create_node:203 key value used:02:02:10:ec:07:92 create_node:208: node with key:02:02:10:ec:07:92 already exists put_radio:357 Node created successfully create_node:203 key value used:02:02:20:ec:07:93 create_node:208: node with key:02:02:20:ec:07:93 already exists put_radio:357 Node created successfully update_tables:1779: Op Class[0] ruid: 02:01:00:ec:07:ae Type: 7 Class: 81 Class: 81 update_tables:1779: Op Class[1] ruid: 02:01:00:ec:07:ae Type: 7 Class: 115 Class: 115 update_tables:1779: Op Class[2] ruid: 02:01:00:ec:07:ae Type: 7 Class: 135 Class: 135 update_tables:1779: Op Class[3] ruid: 02:01:00:ec:07:ae Type: 8 Class: 81 Class: 81 update_tables:1779: Op Class[4] ruid: 02:01:00:ec:07:ae Type: 8 Class: 115 Class: 115 update_tables:1779: Op Class[5] ruid: 02:01:00:ec:07:ae Type: 8 Class: 135 Class: 135 update_tables:1779: Op Class[6] ruid: 02:02:10:ec:07:92 Type: 2 Class: 81 Class: 81 update_tables:1779: Op Class[7] ruid: 02:02:10:ec:07:92 Type: 2 Class: 83 Class: 83 update_tables:1779: Op Class[8] ruid: 02:02:10:ec:07:92 Type: 2 Class: 84 Class: 84 update_tables:1779: Op Class[9] ruid: 02:02:20:ec:07:93 Type: 2 Class: 115 Class: 115 update_tables:1779: Op Class[10] ruid: 02:02:20:ec:07:93 Type: 2 Class: 116 Class: 116 update_tables:1779: Op Class[11] ruid: 02:02:20:ec:07:93 Type: 2 Class: 117 Class: 117 update_tables:1779: Op Class[12] ruid: 02:02:20:ec:07:93 Type: 2 Class: 118 Class: 118 update_tables:1779: Op Class[13] ruid: 02:02:20:ec:07:93 Type: 2 Class: 119 Class: 119 update_tables:1779: Op Class[14] ruid: 02:02:20:ec:07:93 Type: 2 Class: 120 Class: 120 update_tables:1779: Op Class[15] ruid: 02:02:20:ec:07:93 Type: 2 Class: 121 Class: 121 update_tables:1779: Op Class[16] ruid: 02:02:20:ec:07:93 Type: 2 Class: 122 Class: 122 update_tables:1779: Op Class[17] ruid: 02:02:20:ec:07:93 Type: 2 Class: 123 Class: 123 update_tables:1779: Op Class[18] ruid: 02:02:20:ec:07:93 Type: 2 Class: 124 Class: 124 update_tables:1779: Op Class[19] ruid: 02:02:20:ec:07:93 Type: 2 Class: 125 Class: 125 update_tables:1779: Op Class[20] ruid: 02:02:20:ec:07:93 Type: 2 Class: 126 Class: 126 update_tables:1779: Op Class[21] ruid: 02:02:20:ec:07:93 Type: 2 Class: 127 Class: 127 update_tables:1779: Op Class[22] ruid: 02:02:20:ec:07:93 Type: 2 Class: 128 Class: 128 update_tables:1779: Op Class[23] ruid: 02:02:20:ec:07:93 Type: 2 Class: 129 Class: 129 update_tables:1779: Op Class[24] ruid: 02:02:20:ec:07:93 Type: 2 Class: 130 Class: 130 orch_execute:151: dm_orch_type_topo_sync(em_cmd_type_em_config) state: em_state_ctrl_wsc_m2_sent find_em_for_msg_type:611: Received autoconfig search from agenti al mac: 02:01:00:ec:07:ae find_em_for_msg_type:620: Found existing data model for mac: 02:01:00:ec:07:ae net: OneWifiMesh handle_autoconfig_search:5011: autoconfig rsp send success find_em_for_msg_type:647: Found data model for mac: 02:01:00:ec:07:ae, creating node for ruid: 02:02:30:ec:07:94 create_node:203 key value used:02:02:30:ec:07:94 em_func:558 Thread stack size = 8388608 bytes create_node:224: created entry for key:02:02:30:ec:07:94 process_msg:5084: received wsc_m1 len:565 handle_autoconfig_wsc_m1:4851: Device AL MAC: 02:01:00:ec:07:ae handle_ap_radio_basic_cap:4785: Radio does not exist, getting radio at index: 2 [onewifi_em_ctrl] 09/16/2025 - 05:38:17.015314 :em_configuration.cpp:3603: INFO: Recieved AKMs: (0x0000) handle_wsc_m1:3647 Freq band = 2 [onewifi_em_ctrl] 09/16/2025 - 05:38:17.032091 :em_configuration.cpp:373: INFO: Topology Query (1) Sent for radio:02:02:10:ec:07:92 [onewifi_em_ctrl] 09/16/2025 - 05:38:17.032254 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. create_encrypted_settings:4591 No of haultype=1 radio no of bss=1 create_encrypted_settings:4613: ssid: private_ssid, passphrase: test-fronthaul handle_autoconfig_wsc_m1:4890: autoconfig wsc m2 send, len:764 analyze_m2_tx:223: Radio: 02:02:30:ec:07:94 AL MAC: 02:01:00:ec:07:ae get_dm_orch_type:127: Device: 02:02:10:ec:07:92 already in list get_dm_orch_type:127: Device: 02:02:20:ec:07:93 already in list create_node:203 key value used:02:02:30:ec:07:94 create_node:208: node with key:02:02:30:ec:07:94 already exists put_radio:357 Node created successfully update_tables:1779: Op Class[0] ruid: 02:01:00:ec:07:ae Type: 7 Class: 81 Class: 81 update_tables:1779: Op Class[1] ruid: 02:01:00:ec:07:ae Type: 7 Class: 115 Class: 115 update_tables:1779: Op Class[2] ruid: 02:01:00:ec:07:ae Type: 7 Class: 135 Class: 135 update_tables:1779: Op Class[3] ruid: 02:01:00:ec:07:ae Type: 8 Class: 81 Class: 81 update_tables:1779: Op Class[4] ruid: 02:01:00:ec:07:ae Type: 8 Class: 115 Class: 115 update_tables:1779: Op Class[5] ruid: 02:01:00:ec:07:ae Type: 8 Class: 135 Class: 135 update_tables:1779: Op Class[6] ruid: 02:02:10:ec:07:92 Type: 2 Class: 81 Class: 81 update_tables:1779: Op Class[7] ruid: 02:02:10:ec:07:92 Type: 2 Class: 83 Class: 83 update_tables:1779: Op Class[8] ruid: 02:02:10:ec:07:92 Type: 2 Class: 84 Class: 84 update_tables:1779: Op Class[9] ruid: 02:02:20:ec:07:93 Type: 2 Class: 115 Class: 115 update_tables:1779: Op Class[10] ruid: 02:02:20:ec:07:93 Type: 2 Class: 116 Class: 116 update_tables:1779: Op Class[11] ruid: 02:02:20:ec:07:93 Type: 2 Class: 117 Class: 117 update_tables:1779: Op Class[12] ruid: 02:02:20:ec:07:93 Type: 2 Class: 118 Class: 118 update_tables:1779: Op Class[13] ruid: 02:02:20:ec:07:93 Type: 2 Class: 119 Class: 119 update_tables:1779: Op Class[14] ruid: 02:02:20:ec:07:93 Type: 2 Class: 120 Class: 120 update_tables:1779: Op Class[15] ruid: 02:02:20:ec:07:93 Type: 2 Class: 121 Class: 121 update_tables:1779: Op Class[16] ruid: 02:02:20:ec:07:93 Type: 2 Class: 122 Class: 122 update_tables:1779: Op Class[17] ruid: 02:02:20:ec:07:93 Type: 2 Class: 123 Class: 123 update_tables:1779: Op Class[18] ruid: 02:02:20:ec:07:93 Type: 2 Class: 124 Class: 124 update_tables:1779: Op Class[19] ruid: 02:02:20:ec:07:93 Type: 2 Class: 125 Class: 125 update_tables:1779: Op Class[20] ruid: 02:02:20:ec:07:93 Type: 2 Class: 126 Class: 126 update_tables:1779: Op Class[21] ruid: 02:02:20:ec:07:93 Type: 2 Class: 127 Class: 127 update_tables:1779: Op Class[22] ruid: 02:02:20:ec:07:93 Type: 2 Class: 128 Class: 128 update_tables:1779: Op Class[23] ruid: 02:02:20:ec:07:93 Type: 2 Class: 129 Class: 129 update_tables:1779: Op Class[24] ruid: 02:02:20:ec:07:93 Type: 2 Class: 130 Class: 130 update_tables:1779: Op Class[25] ruid: 02:02:30:ec:07:94 Type: 2 Class: 131 Class: 131 update_tables:1779: Op Class[26] ruid: 02:02:30:ec:07:94 Type: 2 Class: 132 Class: 132 update_tables:1779: Op Class[27] ruid: 02:02:30:ec:07:94 Type: 2 Class: 133 Class: 133 update_tables:1779: Op Class[28] ruid: 02:02:30:ec:07:94 Type: 2 Class: 134 Class: 134 update_tables:1779: Op Class[29] ruid: 02:02:30:ec:07:94 Type: 2 Class: 135 Class: 135 update_tables:1779: Op Class[30] ruid: 02:02:30:ec:07:94 Type: 2 Class: 136 Class: 136 orch_execute:151: dm_orch_type_topo_sync(em_cmd_type_em_config) state: em_state_ctrl_wsc_m2_sent [onewifi_em_ctrl] 09/16/2025 - 05:38:18.032590 :em_configuration.cpp:373: INFO: Topology Query (2) Sent for radio:02:02:10:ec:07:92 [onewifi_em_ctrl] 09/16/2025 - 05:38:18.032694 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:18.036094 :em_configuration.cpp:373: INFO: Topology Query (1) Sent for radio:02:02:20:ec:07:93 [onewifi_em_ctrl] 09/16/2025 - 05:38:18.036207 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. orch_execute:151: dm_orch_type_topo_sync(em_cmd_type_em_config) state: em_state_ctrl_wsc_m2_sent [onewifi_em_ctrl] 09/16/2025 - 05:38:19.032991 :em_configuration.cpp:373: INFO: Topology Query (3) Sent for radio:02:02:10:ec:07:92 [onewifi_em_ctrl] 09/16/2025 - 05:38:19.033097 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:19.036490 :em_configuration.cpp:373: INFO: Topology Query (2) Sent for radio:02:02:20:ec:07:93 [onewifi_em_ctrl] 09/16/2025 - 05:38:19.036588 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:19.039956 :em_configuration.cpp:373: INFO: Topology Query (1) Sent for radio:02:02:30:ec:07:94 [onewifi_em_ctrl] 09/16/2025 - 05:38:19.040068 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:20.033373 :em_configuration.cpp:373: INFO: Topology Query (4) Sent for radio:02:02:10:ec:07:92 [onewifi_em_ctrl] 09/16/2025 - 05:38:20.033464 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:20.036894 :em_configuration.cpp:373: INFO: Topology Query (3) Sent for radio:02:02:20:ec:07:93 [onewifi_em_ctrl] 09/16/2025 - 05:38:20.036975 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:20.040350 :em_configuration.cpp:373: INFO: Topology Query (2) Sent for radio:02:02:30:ec:07:94 [onewifi_em_ctrl] 09/16/2025 - 05:38:20.040439 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:21.033776 :em_configuration.cpp:373: INFO: Topology Query (5) Sent for radio:02:02:10:ec:07:92 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.033877 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:21.037314 :em_configuration.cpp:373: INFO: Topology Query (4) Sent for radio:02:02:20:ec:07:93 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.037418 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:21.040748 :em_configuration.cpp:373: INFO: Topology Query (3) Sent for radio:02:02:30:ec:07:94 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.040832 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:21.042786 :em_configuration.cpp:835: INFO: Number of radios: 1 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.042868 :em_configuration.cpp:838: INFO: Radio: 02:02:10:ec:07:92 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.042912 :em_configuration.cpp:840: INFO: Number of bss: 3 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.042943 :em_configuration.cpp:843: INFO: BSSID=02:02:10:ec:07:92 haul type=0 vap_mode:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.042989 :em_configuration.cpp:843: INFO: BSSID=02:02:11:ec:07:95 haul type=1 vap_mode:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043019 :em_configuration.cpp:843: INFO: BSSID=02:02:12:ec:07:96 haul type=2 vap_mode:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043075 :em_configuration.cpp:1658: INFO: Found AP MLD details in topology response message [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043101 :em_configuration.cpp:1692: INFO: No of AP MLDs: 1 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043130 :em_configuration.cpp:1661: INFO: No of AP MLDs: 1 process_msg:5106 em_msg_type_topo_resp handle success, state: em_state_ctrl_topo_synchronized [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043165 :dm_easy_mesh_ctrl.cpp:1983: INFO: -----Updating network topology <start>------- find_topology:207: Trying to find topology: 02:01:00:ec:07:ae in branch: 02:01:00:ec:07:9e [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043224 :dm_easy_mesh_ctrl.cpp:1989: INFO: New dev_mac:02:01:00:ec:07:ae num_bss:3 added in topology. [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043280 :dm_easy_mesh.cpp:2213: INFO: dev_mac:02:01:00:ec:07:ae, num_bss:3 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043320 :em_network_topo.cpp:135: INFO: Backhaul sta bss not found for dev_mac:02:01:00:ec:07:ae, return NULL [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043352 :em_network_topo.cpp:264: INFO: Could not find topology in backhaul association tree, must be ethernet [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043402 :em_network_topo.cpp:241: INFO: Adding new topology for dev_mac:02:01:00:ec:07:ae parent dev_mac:02:01:00:ec:07:9e [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043427 :em_network_topo.cpp:249: INFO: No child topologies to add to the new topo: 02:01:00:ec:07:ae [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043457 :dm_easy_mesh_ctrl.cpp:2005: INFO: -----Updating network topology <end>------- [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043530 :em_network_topo.cpp:191: INFO: Network Topology of dev_mac:02:01:00:ec:07:9e num_child_topologies:1 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043573 :em_network_topo.cpp:192: INFO: ---- Child Topologies[02:01:00:ec:07:9e] <start> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043612 :em_network_topo.cpp:191: INFO: Network Topology of dev_mac:02:01:00:ec:07:ae num_child_topologies:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043642 :em_network_topo.cpp:192: INFO: ---- Child Topologies[02:01:00:ec:07:ae] <start> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043665 :em_network_topo.cpp:196: INFO: ---- Child Topologies[02:01:00:ec:07:ae] <end> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:21.043689 :em_network_topo.cpp:196: INFO: ---- Child Topologies[02:01:00:ec:07:9e] <end> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:22.037709 :em_configuration.cpp:373: INFO: Topology Query (5) Sent for radio:02:02:20:ec:07:93 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.037802 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:22.041096 :em_configuration.cpp:373: INFO: Topology Query (4) Sent for radio:02:02:30:ec:07:94 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.041163 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046007 :em_configuration.cpp:835: INFO: Number of radios: 1 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046090 :em_configuration.cpp:838: INFO: Radio: 02:02:20:ec:07:93 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046118 :em_configuration.cpp:840: INFO: Number of bss: 4 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046147 :em_configuration.cpp:843: INFO: BSSID=02:02:20:ec:07:93 haul type=0 vap_mode:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046203 :em_configuration.cpp:843: INFO: BSSID=02:02:21:ec:07:97 haul type=1 vap_mode:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046232 :em_configuration.cpp:843: INFO: BSSID=02:02:22:ec:07:98 haul type=2 vap_mode:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046260 :em_configuration.cpp:843: INFO: BSSID=00:00:00:00:00:00 haul type=1 vap_mode:1 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046319 :em_configuration.cpp:1658: INFO: Found AP MLD details in topology response message [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046344 :em_configuration.cpp:1692: INFO: No of AP MLDs: 1 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046373 :em_configuration.cpp:1661: INFO: No of AP MLDs: 1 process_msg:5106 em_msg_type_topo_resp handle success, state: em_state_ctrl_topo_synchronized [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046407 :dm_easy_mesh_ctrl.cpp:1983: INFO: -----Updating network topology <start>------- find_topology:207: Trying to find topology: 02:01:00:ec:07:ae in branch: 02:01:00:ec:07:9e find_topology:207: Trying to find topology: 02:01:00:ec:07:ae in branch: 02:01:00:ec:07:ae find_topology:210: Found topology: 02:01:00:ec:07:ae in branch: 02:01:00:ec:07:ae [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046519 :dm_easy_mesh_ctrl.cpp:1994: INFO: Update dev_mac:02:01:00:ec:07:ae num_bss:7 already in topology. [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046583 :em_network_topo.cpp:292: INFO: Found and Removed topology of dev_mac:02:01:00:ec:07:ae in parent dm:02:01:00:ec:07:9e num_child_topos:1 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046654 :dm_easy_mesh.cpp:2213: INFO: dev_mac:02:01:00:ec:07:ae, num_bss:7 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046737 :dm_easy_mesh.cpp:2228: INFO: radio_mac:02:02:20:ec:07:93 backhaul bss_mac:00:00:00:00:00:00 radio enabled:1 sta_info enabled:1 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046778 :em_network_topo.cpp:152: INFO: Find topology associated with bss mac: 00:00:00:00:00:00 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046807 :em_network_topo.cpp:154: INFO: bss mac is zero, return NULL [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046845 :em_network_topo.cpp:264: INFO: Could not find topology in backhaul association tree, must be ethernet [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046899 :em_network_topo.cpp:241: INFO: Adding new topology for dev_mac:02:01:00:ec:07:ae parent dev_mac:02:01:00:ec:07:9e [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046933 :em_network_topo.cpp:249: INFO: No child topologies to add to the new topo: 02:01:00:ec:07:ae [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046963 :dm_easy_mesh_ctrl.cpp:2005: INFO: -----Updating network topology <end>------- [onewifi_em_ctrl] 09/16/2025 - 05:38:22.046998 :em_network_topo.cpp:191: INFO: Network Topology of dev_mac:02:01:00:ec:07:9e num_child_topologies:1 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.047024 :em_network_topo.cpp:192: INFO: ---- Child Topologies[02:01:00:ec:07:9e] <start> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:22.047056 :em_network_topo.cpp:191: INFO: Network Topology of dev_mac:02:01:00:ec:07:ae num_child_topologies:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:22.047079 :em_network_topo.cpp:192: INFO: ---- Child Topologies[02:01:00:ec:07:ae] <start> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:22.047108 :em_network_topo.cpp:196: INFO: ---- Child Topologies[02:01:00:ec:07:ae] <end> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:22.047131 :em_network_topo.cpp:196: INFO: ---- Child Topologies[02:01:00:ec:07:9e] <end> ----- orch_execute:151: dm_orch_type_channel_pref(em_cmd_type_em_config) state: em_state_ctrl_topo_synchronized [onewifi_em_ctrl] 09/16/2025 - 05:38:23.041447 :em_configuration.cpp:373: INFO: Topology Query (5) Sent for radio:02:02:30:ec:07:94 [onewifi_em_ctrl] 09/16/2025 - 05:38:23.041537 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:23.043931 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_query_pending in config state machine. send_channel_pref_query_msg:966: Channel Pref Query (1) Send Successful orch_execute:151: dm_orch_type_channel_pref(em_cmd_type_em_config) state: em_state_ctrl_topo_synchronized [onewifi_em_ctrl] 09/16/2025 - 05:38:24.041803 :em_configuration.cpp:373: INFO: Topology Query (6) Sent for radio:02:02:30:ec:07:94 [onewifi_em_ctrl] 09/16/2025 - 05:38:24.041879 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:24.044308 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_pref_report_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:24.044401 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_pref_report_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:24.047344 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_query_pending in config state machine. send_channel_pref_query_msg:966: Channel Pref Query (1) Send Successful [onewifi_em_ctrl] 09/16/2025 - 05:38:25.042312 :em_configuration.cpp:373: INFO: Topology Query (7) Sent for radio:02:02:30:ec:07:94 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.042487 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_topo_sync_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:25.044571 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_pref_report_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:25.044686 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_pref_report_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:25.047668 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_pref_report_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:25.047789 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_pref_report_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:25.049619 :em_configuration.cpp:835: INFO: Number of radios: 1 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.049723 :em_configuration.cpp:838: INFO: Radio: 02:02:30:ec:07:94 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.049756 :em_configuration.cpp:840: INFO: Number of bss: 1 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.049787 :em_configuration.cpp:843: INFO: BSSID=02:02:30:ec:07:94 haul type=0 vap_mode:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.049866 :em_configuration.cpp:1658: INFO: Found AP MLD details in topology response message [onewifi_em_ctrl] 09/16/2025 - 05:38:25.049895 :em_configuration.cpp:1692: INFO: No of AP MLDs: 1 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.049928 :em_configuration.cpp:1661: INFO: No of AP MLDs: 1 process_msg:5106 em_msg_type_topo_resp handle success, state: em_state_ctrl_topo_synchronized [onewifi_em_ctrl] 09/16/2025 - 05:38:25.049971 :dm_easy_mesh_ctrl.cpp:1983: INFO: -----Updating network topology <start>------- find_topology:207: Trying to find topology: 02:01:00:ec:07:ae in branch: 02:01:00:ec:07:9e find_topology:207: Trying to find topology: 02:01:00:ec:07:ae in branch: 02:01:00:ec:07:ae find_topology:210: Found topology: 02:01:00:ec:07:ae in branch: 02:01:00:ec:07:ae [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050060 :dm_easy_mesh_ctrl.cpp:1994: INFO: Update dev_mac:02:01:00:ec:07:ae num_bss:8 already in topology. [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050119 :em_network_topo.cpp:292: INFO: Found and Removed topology of dev_mac:02:01:00:ec:07:ae in parent dm:02:01:00:ec:07:9e num_child_topos:1 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050170 :dm_easy_mesh.cpp:2213: INFO: dev_mac:02:01:00:ec:07:ae, num_bss:8 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050245 :dm_easy_mesh.cpp:2228: INFO: radio_mac:02:02:20:ec:07:93 backhaul bss_mac:00:00:00:00:00:00 radio enabled:1 sta_info enabled:1 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050289 :em_network_topo.cpp:152: INFO: Find topology associated with bss mac: 00:00:00:00:00:00 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050316 :em_network_topo.cpp:154: INFO: bss mac is zero, return NULL [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050351 :em_network_topo.cpp:264: INFO: Could not find topology in backhaul association tree, must be ethernet [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050396 :em_network_topo.cpp:241: INFO: Adding new topology for dev_mac:02:01:00:ec:07:ae parent dev_mac:02:01:00:ec:07:9e [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050428 :em_network_topo.cpp:249: INFO: No child topologies to add to the new topo: 02:01:00:ec:07:ae [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050457 :dm_easy_mesh_ctrl.cpp:2005: INFO: -----Updating network topology <end>------- [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050489 :em_network_topo.cpp:191: INFO: Network Topology of dev_mac:02:01:00:ec:07:9e num_child_topologies:1 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050512 :em_network_topo.cpp:192: INFO: ---- Child Topologies[02:01:00:ec:07:9e] <start> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050541 :em_network_topo.cpp:191: INFO: Network Topology of dev_mac:02:01:00:ec:07:ae num_child_topologies:0 [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050568 :em_network_topo.cpp:192: INFO: ---- Child Topologies[02:01:00:ec:07:ae] <start> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050590 :em_network_topo.cpp:196: INFO: ---- Child Topologies[02:01:00:ec:07:ae] <end> ----- [onewifi_em_ctrl] 09/16/2025 - 05:38:25.050614 :em_network_topo.cpp:196: INFO: ---- Child Topologies[02:01:00:ec:07:9e] <end> ----- get_dm_orch_type:127: Device: 02:02:10:ec:07:92 already in list get_dm_orch_type:127: Device: 02:02:20:ec:07:93 already in list get_dm_orch_type:127: Device: 02:02:30:ec:07:94 already in list update_tables:1779: Op Class[0] ruid: 02:01:00:ec:07:ae Type: 7 Class: 81 Class: 81 update_tables:1779: Op Class[1] ruid: 02:01:00:ec:07:ae Type: 7 Class: 115 Class: 115 update_tables:1779: Op Class[2] ruid: 02:01:00:ec:07:ae Type: 7 Class: 135 Class: 135 update_tables:1779: Op Class[3] ruid: 02:01:00:ec:07:ae Type: 8 Class: 81 Class: 81 update_tables:1779: Op Class[4] ruid: 02:01:00:ec:07:ae Type: 8 Class: 115 Class: 115 update_tables:1779: Op Class[5] ruid: 02:01:00:ec:07:ae Type: 8 Class: 135 Class: 135 update_tables:1779: Op Class[6] ruid: 02:02:10:ec:07:92 Type: 2 Class: 81 Class: 81 update_tables:1779: Op Class[7] ruid: 02:02:10:ec:07:92 Type: 2 Class: 83 Class: 83 update_tables:1779: Op Class[8] ruid: 02:02:10:ec:07:92 Type: 2 Class: 84 Class: 84 update_tables:1779: Op Class[9] ruid: 02:02:20:ec:07:93 Type: 2 Class: 115 Class: 115 update_tables:1779: Op Class[10] ruid: 02:02:20:ec:07:93 Type: 2 Class: 116 Class: 116 update_tables:1779: Op Class[11] ruid: 02:02:20:ec:07:93 Type: 2 Class: 117 Class: 117 update_tables:1779: Op Class[12] ruid: 02:02:20:ec:07:93 Type: 2 Class: 118 Class: 118 update_tables:1779: Op Class[13] ruid: 02:02:20:ec:07:93 Type: 2 Class: 119 Class: 119 update_tables:1779: Op Class[14] ruid: 02:02:20:ec:07:93 Type: 2 Class: 120 Class: 120 update_tables:1779: Op Class[15] ruid: 02:02:20:ec:07:93 Type: 2 Class: 121 Class: 121 update_tables:1779: Op Class[16] ruid: 02:02:20:ec:07:93 Type: 2 Class: 122 Class: 122 update_tables:1779: Op Class[17] ruid: 02:02:20:ec:07:93 Type: 2 Class: 123 Class: 123 update_tables:1779: Op Class[18] ruid: 02:02:20:ec:07:93 Type: 2 Class: 124 Class: 124 update_tables:1779: Op Class[19] ruid: 02:02:20:ec:07:93 Type: 2 Class: 125 Class: 125 update_tables:1779: Op Class[20] ruid: 02:02:20:ec:07:93 Type: 2 Class: 126 Class: 126 update_tables:1779: Op Class[21] ruid: 02:02:20:ec:07:93 Type: 2 Class: 127 Class: 127 update_tables:1779: Op Class[22] ruid: 02:02:20:ec:07:93 Type: 2 Class: 128 Class: 128 update_tables:1779: Op Class[23] ruid: 02:02:20:ec:07:93 Type: 2 Class: 129 Class: 129 update_tables:1779: Op Class[24] ruid: 02:02:20:ec:07:93 Type: 2 Class: 130 Class: 130 update_tables:1779: Op Class[25] ruid: 02:02:30:ec:07:94 Type: 2 Class: 131 Class: 131 update_tables:1779: Op Class[26] ruid: 02:02:30:ec:07:94 Type: 2 Class: 132 Class: 132 update_tables:1779: Op Class[27] ruid: 02:02:30:ec:07:94 Type: 2 Class: 133 Class: 133 update_tables:1779: Op Class[28] ruid: 02:02:30:ec:07:94 Type: 2 Class: 134 Class: 134 update_tables:1779: Op Class[29] ruid: 02:02:30:ec:07:94 Type: 2 Class: 135 Class: 135 update_tables:1779: Op Class[30] ruid: 02:02:30:ec:07:94 Type: 2 Class: 136 Class: 136 update_tables:1779: Op Class[31] ruid: 02:01:00:ec:07:ae Type: 6 Class: 81 Class: 81 update_tables:1779: Op Class[32] ruid: 02:01:00:ec:07:ae Type: 6 Class: 83 Class: 83 update_tables:1779: Op Class[33] ruid: 02:01:00:ec:07:ae Type: 6 Class: 84 Class: 84 update_tables:1779: Op Class[34] ruid: 02:01:00:ec:07:ae Type: 6 Class: 115 Class: 115 update_tables:1779: Op Class[35] ruid: 02:01:00:ec:07:ae Type: 6 Class: 116 Class: 116 update_tables:1779: Op Class[36] ruid: 02:01:00:ec:07:ae Type: 6 Class: 117 Class: 117 update_tables:1779: Op Class[37] ruid: 02:01:00:ec:07:ae Type: 6 Class: 118 Class: 118 update_tables:1779: Op Class[38] ruid: 02:01:00:ec:07:ae Type: 6 Class: 119 Class: 119 update_tables:1779: Op Class[39] ruid: 02:01:00:ec:07:ae Type: 6 Class: 120 Class: 120 update_tables:1779: Op Class[40] ruid: 02:01:00:ec:07:ae Type: 6 Class: 121 Class: 121 update_tables:1779: Op Class[41] ruid: 02:01:00:ec:07:ae Type: 6 Class: 122 Class: 122 update_tables:1779: Op Class[42] ruid: 02:01:00:ec:07:ae Type: 6 Class: 123 Class: 123 update_tables:1779: Op Class[43] ruid: 02:01:00:ec:07:ae Type: 6 Class: 124 Class: 124 update_tables:1779: Op Class[44] ruid: 02:01:00:ec:07:ae Type: 6 Class: 125 Class: 125 update_tables:1779: Op Class[45] ruid: 02:01:00:ec:07:ae Type: 6 Class: 126 Class: 126 update_tables:1779: Op Class[46] ruid: 02:01:00:ec:07:ae Type: 6 Class: 127 Class: 127 update_tables:1779: Op Class[47] ruid: 02:01:00:ec:07:ae Type: 6 Class: 128 Class: 128 update_tables:1779: Op Class[48] ruid: 02:01:00:ec:07:ae Type: 6 Class: 129 Class: 129 update_tables:1779: Op Class[49] ruid: 02:01:00:ec:07:ae Type: 6 Class: 130 Class: 130 orch_execute:151: dm_orch_type_channel_pref(em_cmd_type_em_config) state: em_state_ctrl_topo_synchronized orch_execute:151: dm_orch_type_channel_sel(em_cmd_type_em_config) state: em_state_ctrl_channel_queried orch_execute:151: dm_orch_type_channel_sel(em_cmd_type_em_config) state: em_state_ctrl_channel_queried [onewifi_em_ctrl] 09/16/2025 - 05:38:28.050924 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_query_pending in config state machine. send_channel_pref_query_msg:966: Channel Pref Query (1) Send Successful [onewifi_em_ctrl] 09/16/2025 - 05:38:28.052977 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_select_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:28.053863 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_select_pending in config state machine. handle_channel_sel_rsp:1689 Received channel selection response handle_channel_sel_rsp:1689 Received channel selection response [onewifi_em_ctrl] 09/16/2025 - 05:38:29.051253 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_pref_report_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:29.051350 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_pref_report_pending in channel state machine. get_dm_orch_type:127: Device: 02:02:10:ec:07:92 already in list get_dm_orch_type:127: Device: 02:02:20:ec:07:93 already in list get_dm_orch_type:127: Device: 02:02:30:ec:07:94 already in list update_tables:1779: Op Class[0] ruid: 02:01:00:ec:07:ae Type: 7 Class: 81 Class: 81 update_tables:1779: Op Class[1] ruid: 02:01:00:ec:07:ae Type: 7 Class: 115 Class: 115 update_tables:1779: Op Class[2] ruid: 02:01:00:ec:07:ae Type: 7 Class: 135 Class: 135 update_tables:1779: Op Class[3] ruid: 02:01:00:ec:07:ae Type: 8 Class: 81 Class: 81 update_tables:1779: Op Class[4] ruid: 02:01:00:ec:07:ae Type: 8 Class: 115 Class: 115 update_tables:1779: Op Class[5] ruid: 02:01:00:ec:07:ae Type: 8 Class: 135 Class: 135 update_tables:1779: Op Class[6] ruid: 02:02:10:ec:07:92 Type: 2 Class: 81 Class: 81 update_tables:1779: Op Class[7] ruid: 02:02:10:ec:07:92 Type: 2 Class: 83 Class: 83 update_tables:1779: Op Class[8] ruid: 02:02:10:ec:07:92 Type: 2 Class: 84 Class: 84 update_tables:1779: Op Class[9] ruid: 02:02:20:ec:07:93 Type: 2 Class: 115 Class: 115 update_tables:1779: Op Class[10] ruid: 02:02:20:ec:07:93 Type: 2 Class: 116 Class: 116 update_tables:1779: Op Class[11] ruid: 02:02:20:ec:07:93 Type: 2 Class: 117 Class: 117 update_tables:1779: Op Class[12] ruid: 02:02:20:ec:07:93 Type: 2 Class: 118 Class: 118 update_tables:1779: Op Class[13] ruid: 02:02:20:ec:07:93 Type: 2 Class: 119 Class: 119 update_tables:1779: Op Class[14] ruid: 02:02:20:ec:07:93 Type: 2 Class: 120 Class: 120 update_tables:1779: Op Class[15] ruid: 02:02:20:ec:07:93 Type: 2 Class: 121 Class: 121 update_tables:1779: Op Class[16] ruid: 02:02:20:ec:07:93 Type: 2 Class: 122 Class: 122 update_tables:1779: Op Class[17] ruid: 02:02:20:ec:07:93 Type: 2 Class: 123 Class: 123 update_tables:1779: Op Class[18] ruid: 02:02:20:ec:07:93 Type: 2 Class: 124 Class: 124 update_tables:1779: Op Class[19] ruid: 02:02:20:ec:07:93 Type: 2 Class: 125 Class: 125 update_tables:1779: Op Class[20] ruid: 02:02:20:ec:07:93 Type: 2 Class: 126 Class: 126 update_tables:1779: Op Class[21] ruid: 02:02:20:ec:07:93 Type: 2 Class: 127 Class: 127 update_tables:1779: Op Class[22] ruid: 02:02:20:ec:07:93 Type: 2 Class: 128 Class: 128 update_tables:1779: Op Class[23] ruid: 02:02:20:ec:07:93 Type: 2 Class: 129 Class: 129 update_tables:1779: Op Class[24] ruid: 02:02:20:ec:07:93 Type: 2 Class: 130 Class: 130 update_tables:1779: Op Class[25] ruid: 02:02:30:ec:07:94 Type: 2 Class: 131 Class: 131 update_tables:1779: Op Class[26] ruid: 02:02:30:ec:07:94 Type: 2 Class: 132 Class: 132 update_tables:1779: Op Class[27] ruid: 02:02:30:ec:07:94 Type: 2 Class: 133 Class: 133 update_tables:1779: Op Class[28] ruid: 02:02:30:ec:07:94 Type: 2 Class: 134 Class: 134 update_tables:1779: Op Class[29] ruid: 02:02:30:ec:07:94 Type: 2 Class: 135 Class: 135 update_tables:1779: Op Class[30] ruid: 02:02:30:ec:07:94 Type: 2 Class: 136 Class: 136 update_tables:1779: Op Class[31] ruid: 02:01:00:ec:07:ae Type: 6 Class: 81 Class: 81 update_tables:1779: Op Class[32] ruid: 02:01:00:ec:07:ae Type: 6 Class: 83 Class: 83 update_tables:1779: Op Class[33] ruid: 02:01:00:ec:07:ae Type: 6 Class: 84 Class: 84 update_tables:1779: Op Class[34] ruid: 02:01:00:ec:07:ae Type: 6 Class: 115 Class: 115 update_tables:1779: Op Class[35] ruid: 02:01:00:ec:07:ae Type: 6 Class: 116 Class: 116 update_tables:1779: Op Class[36] ruid: 02:01:00:ec:07:ae Type: 6 Class: 117 Class: 117 update_tables:1779: Op Class[37] ruid: 02:01:00:ec:07:ae Type: 6 Class: 118 Class: 118 update_tables:1779: Op Class[38] ruid: 02:01:00:ec:07:ae Type: 6 Class: 119 Class: 119 update_tables:1779: Op Class[39] ruid: 02:01:00:ec:07:ae Type: 6 Class: 120 Class: 120 update_tables:1779: Op Class[40] ruid: 02:01:00:ec:07:ae Type: 6 Class: 121 Class: 121 update_tables:1779: Op Class[41] ruid: 02:01:00:ec:07:ae Type: 6 Class: 122 Class: 122 update_tables:1779: Op Class[42] ruid: 02:01:00:ec:07:ae Type: 6 Class: 123 Class: 123 update_tables:1779: Op Class[43] ruid: 02:01:00:ec:07:ae Type: 6 Class: 124 Class: 124 update_tables:1779: Op Class[44] ruid: 02:01:00:ec:07:ae Type: 6 Class: 125 Class: 125 update_tables:1779: Op Class[45] ruid: 02:01:00:ec:07:ae Type: 6 Class: 126 Class: 126 update_tables:1779: Op Class[46] ruid: 02:01:00:ec:07:ae Type: 6 Class: 127 Class: 127 update_tables:1779: Op Class[47] ruid: 02:01:00:ec:07:ae Type: 6 Class: 128 Class: 128 update_tables:1779: Op Class[48] ruid: 02:01:00:ec:07:ae Type: 6 Class: 129 Class: 129 update_tables:1779: Op Class[49] ruid: 02:01:00:ec:07:ae Type: 6 Class: 130 Class: 130 update_tables:1779: Op Class[50] ruid: 02:01:00:ec:07:ae Type: 6 Class: 131 Class: 131 update_tables:1779: Op Class[51] ruid: 02:01:00:ec:07:ae Type: 6 Class: 132 Class: 132 update_tables:1779: Op Class[52] ruid: 02:01:00:ec:07:ae Type: 6 Class: 133 Class: 133 update_tables:1779: Op Class[53] ruid: 02:01:00:ec:07:ae Type: 6 Class: 134 Class: 134 update_tables:1779: Op Class[54] ruid: 02:01:00:ec:07:ae Type: 6 Class: 135 Class: 135 update_tables:1779: Op Class[55] ruid: 02:01:00:ec:07:ae Type: 6 Class: 136 Class: 136 handle_operating_channel_rprt:1717 Operating channel report recv get_dm_orch_type:127: Device: 02:02:10:ec:07:92 already in list get_dm_orch_type:127: Device: 02:02:20:ec:07:93 already in list get_dm_orch_type:127: Device: 02:02:30:ec:07:94 already in list update_tables:1779: Op Class[0] ruid: 02:01:00:ec:07:ae Type: 7 Class: 81 Class: 81 update_tables:1779: Op Class[1] ruid: 02:01:00:ec:07:ae Type: 7 Class: 115 Class: 115 update_tables:1779: Op Class[2] ruid: 02:01:00:ec:07:ae Type: 7 Class: 135 Class: 135 update_tables:1779: Op Class[3] ruid: 02:01:00:ec:07:ae Type: 8 Class: 81 Class: 81 update_tables:1779: Op Class[4] ruid: 02:01:00:ec:07:ae Type: 8 Class: 115 Class: 115 update_tables:1779: Op Class[5] ruid: 02:01:00:ec:07:ae Type: 8 Class: 135 Class: 135 update_tables:1779: Op Class[6] ruid: 02:02:10:ec:07:92 Type: 2 Class: 81 Class: 81 update_tables:1779: Op Class[7] ruid: 02:02:10:ec:07:92 Type: 2 Class: 83 Class: 83 update_tables:1779: Op Class[8] ruid: 02:02:10:ec:07:92 Type: 2 Class: 84 Class: 84 update_tables:1779: Op Class[9] ruid: 02:02:20:ec:07:93 Type: 2 Class: 115 Class: 115 update_tables:1779: Op Class[10] ruid: 02:02:20:ec:07:93 Type: 2 Class: 116 Class: 116 update_tables:1779: Op Class[11] ruid: 02:02:20:ec:07:93 Type: 2 Class: 117 Class: 117 update_tables:1779: Op Class[12] ruid: 02:02:20:ec:07:93 Type: 2 Class: 118 Class: 118 update_tables:1779: Op Class[13] ruid: 02:02:20:ec:07:93 Type: 2 Class: 119 Class: 119 update_tables:1779: Op Class[14] ruid: 02:02:20:ec:07:93 Type: 2 Class: 120 Class: 120 update_tables:1779: Op Class[15] ruid: 02:02:20:ec:07:93 Type: 2 Class: 121 Class: 121 update_tables:1779: Op Class[16] ruid: 02:02:20:ec:07:93 Type: 2 Class: 122 Class: 122 update_tables:1779: Op Class[17] ruid: 02:02:20:ec:07:93 Type: 2 Class: 123 Class: 123 update_tables:1779: Op Class[18] ruid: 02:02:20:ec:07:93 Type: 2 Class: 124 Class: 124 update_tables:1779: Op Class[19] ruid: 02:02:20:ec:07:93 Type: 2 Class: 125 Class: 125 update_tables:1779: Op Class[20] ruid: 02:02:20:ec:07:93 Type: 2 Class: 126 Class: 126 update_tables:1779: Op Class[21] ruid: 02:02:20:ec:07:93 Type: 2 Class: 127 Class: 127 update_tables:1779: Op Class[22] ruid: 02:02:20:ec:07:93 Type: 2 Class: 128 Class: 128 update_tables:1779: Op Class[23] ruid: 02:02:20:ec:07:93 Type: 2 Class: 129 Class: 129 update_tables:1779: Op Class[24] ruid: 02:02:20:ec:07:93 Type: 2 Class: 130 Class: 130 update_tables:1779: Op Class[25] ruid: 02:02:30:ec:07:94 Type: 2 Class: 131 Class: 131 update_tables:1779: Op Class[26] ruid: 02:02:30:ec:07:94 Type: 2 Class: 132 Class: 132 update_tables:1779: Op Class[27] ruid: 02:02:30:ec:07:94 Type: 2 Class: 133 Class: 133 update_tables:1779: Op Class[28] ruid: 02:02:30:ec:07:94 Type: 2 Class: 134 Class: 134 update_tables:1779: Op Class[29] ruid: 02:02:30:ec:07:94 Type: 2 Class: 135 Class: 135 update_tables:1779: Op Class[30] ruid: 02:02:30:ec:07:94 Type: 2 Class: 136 Class: 136 update_tables:1779: Op Class[31] ruid: 02:01:00:ec:07:ae Type: 6 Class: 81 Class: 81 update_tables:1779: Op Class[32] ruid: 02:01:00:ec:07:ae Type: 6 Class: 83 Class: 83 update_tables:1779: Op Class[33] ruid: 02:01:00:ec:07:ae Type: 6 Class: 84 Class: 84 update_tables:1779: Op Class[34] ruid: 02:01:00:ec:07:ae Type: 6 Class: 115 Class: 115 update_tables:1779: Op Class[35] ruid: 02:01:00:ec:07:ae Type: 6 Class: 116 Class: 116 update_tables:1779: Op Class[36] ruid: 02:01:00:ec:07:ae Type: 6 Class: 117 Class: 117 update_tables:1779: Op Class[37] ruid: 02:01:00:ec:07:ae Type: 6 Class: 118 Class: 118 update_tables:1779: Op Class[38] ruid: 02:01:00:ec:07:ae Type: 6 Class: 119 Class: 119 update_tables:1779: Op Class[39] ruid: 02:01:00:ec:07:ae Type: 6 Class: 120 Class: 120 update_tables:1779: Op Class[40] ruid: 02:01:00:ec:07:ae Type: 6 Class: 121 Class: 121 update_tables:1779: Op Class[41] ruid: 02:01:00:ec:07:ae Type: 6 Class: 122 Class: 122 update_tables:1779: Op Class[42] ruid: 02:01:00:ec:07:ae Type: 6 Class: 123 Class: 123 update_tables:1779: Op Class[43] ruid: 02:01:00:ec:07:ae Type: 6 Class: 124 Class: 124 update_tables:1779: Op Class[44] ruid: 02:01:00:ec:07:ae Type: 6 Class: 125 Class: 125 update_tables:1779: Op Class[45] ruid: 02:01:00:ec:07:ae Type: 6 Class: 126 Class: 126 update_tables:1779: Op Class[46] ruid: 02:01:00:ec:07:ae Type: 6 Class: 127 Class: 127 update_tables:1779: Op Class[47] ruid: 02:01:00:ec:07:ae Type: 6 Class: 128 Class: 128 update_tables:1779: Op Class[48] ruid: 02:01:00:ec:07:ae Type: 6 Class: 129 Class: 129 update_tables:1779: Op Class[49] ruid: 02:01:00:ec:07:ae Type: 6 Class: 130 Class: 130 update_tables:1779: Op Class[50] ruid: 02:01:00:ec:07:ae Type: 6 Class: 131 Class: 131 update_tables:1779: Op Class[51] ruid: 02:01:00:ec:07:ae Type: 6 Class: 132 Class: 132 update_tables:1779: Op Class[52] ruid: 02:01:00:ec:07:ae Type: 6 Class: 133 Class: 133 update_tables:1779: Op Class[53] ruid: 02:01:00:ec:07:ae Type: 6 Class: 134 Class: 134 update_tables:1779: Op Class[54] ruid: 02:01:00:ec:07:ae Type: 6 Class: 135 Class: 135 update_tables:1779: Op Class[55] ruid: 02:01:00:ec:07:ae Type: 6 Class: 136 Class: 136 update_tables:1779: Op Class[56] ruid: 02:02:10:ec:07:92 Type: 1 Class: 12 Class: 12 orch_execute:151: dm_orch_type_channel_sel(em_cmd_type_em_config) state: em_state_ctrl_channel_queried orch_execute:151: dm_orch_type_channel_cnf(em_cmd_type_em_config) state: em_state_ctrl_configured orch_execute:151: dm_orch_type_channel_cnf(em_cmd_type_em_config) state: em_state_ctrl_channel_selected [onewifi_em_ctrl] 09/16/2025 - 05:38:32.057274 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_select_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:32.062922 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:32.063041 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in channel state machine. handle_operating_channel_rprt:1717 Operating channel report recv handle_channel_sel_rsp:1689 Received channel selection response get_dm_orch_type:127: Device: 02:02:10:ec:07:92 already in list get_dm_orch_type:127: Device: 02:02:20:ec:07:93 already in list get_dm_orch_type:127: Device: 02:02:30:ec:07:94 already in list update_tables:1779: Op Class[0] ruid: 02:01:00:ec:07:ae Type: 7 Class: 81 Class: 81 update_tables:1779: Op Class[1] ruid: 02:01:00:ec:07:ae Type: 7 Class: 115 Class: 115 update_tables:1779: Op Class[2] ruid: 02:01:00:ec:07:ae Type: 7 Class: 135 Class: 135 update_tables:1779: Op Class[3] ruid: 02:01:00:ec:07:ae Type: 8 Class: 81 Class: 81 update_tables:1779: Op Class[4] ruid: 02:01:00:ec:07:ae Type: 8 Class: 115 Class: 115 update_tables:1779: Op Class[5] ruid: 02:01:00:ec:07:ae Type: 8 Class: 135 Class: 135 update_tables:1779: Op Class[6] ruid: 02:02:10:ec:07:92 Type: 2 Class: 81 Class: 81 update_tables:1779: Op Class[7] ruid: 02:02:10:ec:07:92 Type: 2 Class: 83 Class: 83 update_tables:1779: Op Class[8] ruid: 02:02:10:ec:07:92 Type: 2 Class: 84 Class: 84 update_tables:1779: Op Class[9] ruid: 02:02:20:ec:07:93 Type: 2 Class: 115 Class: 115 update_tables:1779: Op Class[10] ruid: 02:02:20:ec:07:93 Type: 2 Class: 116 Class: 116 update_tables:1779: Op Class[11] ruid: 02:02:20:ec:07:93 Type: 2 Class: 117 Class: 117 update_tables:1779: Op Class[12] ruid: 02:02:20:ec:07:93 Type: 2 Class: 118 Class: 118 update_tables:1779: Op Class[13] ruid: 02:02:20:ec:07:93 Type: 2 Class: 119 Class: 119 update_tables:1779: Op Class[14] ruid: 02:02:20:ec:07:93 Type: 2 Class: 120 Class: 120 update_tables:1779: Op Class[15] ruid: 02:02:20:ec:07:93 Type: 2 Class: 121 Class: 121 update_tables:1779: Op Class[16] ruid: 02:02:20:ec:07:93 Type: 2 Class: 122 Class: 122 update_tables:1779: Op Class[17] ruid: 02:02:20:ec:07:93 Type: 2 Class: 123 Class: 123 update_tables:1779: Op Class[18] ruid: 02:02:20:ec:07:93 Type: 2 Class: 124 Class: 124 update_tables:1779: Op Class[19] ruid: 02:02:20:ec:07:93 Type: 2 Class: 125 Class: 125 update_tables:1779: Op Class[20] ruid: 02:02:20:ec:07:93 Type: 2 Class: 126 Class: 126 update_tables:1779: Op Class[21] ruid: 02:02:20:ec:07:93 Type: 2 Class: 127 Class: 127 update_tables:1779: Op Class[22] ruid: 02:02:20:ec:07:93 Type: 2 Class: 128 Class: 128 update_tables:1779: Op Class[23] ruid: 02:02:20:ec:07:93 Type: 2 Class: 129 Class: 129 update_tables:1779: Op Class[24] ruid: 02:02:20:ec:07:93 Type: 2 Class: 130 Class: 130 update_tables:1779: Op Class[25] ruid: 02:02:30:ec:07:94 Type: 2 Class: 131 Class: 131 update_tables:1779: Op Class[26] ruid: 02:02:30:ec:07:94 Type: 2 Class: 132 Class: 132 update_tables:1779: Op Class[27] ruid: 02:02:30:ec:07:94 Type: 2 Class: 133 Class: 133 update_tables:1779: Op Class[28] ruid: 02:02:30:ec:07:94 Type: 2 Class: 134 Class: 134 update_tables:1779: Op Class[29] ruid: 02:02:30:ec:07:94 Type: 2 Class: 135 Class: 135 update_tables:1779: Op Class[30] ruid: 02:02:30:ec:07:94 Type: 2 Class: 136 Class: 136 update_tables:1779: Op Class[31] ruid: 02:01:00:ec:07:ae Type: 6 Class: 81 Class: 81 update_tables:1779: Op Class[32] ruid: 02:01:00:ec:07:ae Type: 6 Class: 83 Class: 83 update_tables:1779: Op Class[33] ruid: 02:01:00:ec:07:ae Type: 6 Class: 84 Class: 84 update_tables:1779: Op Class[34] ruid: 02:01:00:ec:07:ae Type: 6 Class: 115 Class: 115 update_tables:1779: Op Class[35] ruid: 02:01:00:ec:07:ae Type: 6 Class: 116 Class: 116 update_tables:1779: Op Class[36] ruid: 02:01:00:ec:07:ae Type: 6 Class: 117 Class: 117 update_tables:1779: Op Class[37] ruid: 02:01:00:ec:07:ae Type: 6 Class: 118 Class: 118 update_tables:1779: Op Class[38] ruid: 02:01:00:ec:07:ae Type: 6 Class: 119 Class: 119 update_tables:1779: Op Class[39] ruid: 02:01:00:ec:07:ae Type: 6 Class: 120 Class: 120 update_tables:1779: Op Class[40] ruid: 02:01:00:ec:07:ae Type: 6 Class: 121 Class: 121 update_tables:1779: Op Class[41] ruid: 02:01:00:ec:07:ae Type: 6 Class: 122 Class: 122 update_tables:1779: Op Class[42] ruid: 02:01:00:ec:07:ae Type: 6 Class: 123 Class: 123 update_tables:1779: Op Class[43] ruid: 02:01:00:ec:07:ae Type: 6 Class: 124 Class: 124 update_tables:1779: Op Class[44] ruid: 02:01:00:ec:07:ae Type: 6 Class: 125 Class: 125 update_tables:1779: Op Class[45] ruid: 02:01:00:ec:07:ae Type: 6 Class: 126 Class: 126 update_tables:1779: Op Class[46] ruid: 02:01:00:ec:07:ae Type: 6 Class: 127 Class: 127 update_tables:1779: Op Class[47] ruid: 02:01:00:ec:07:ae Type: 6 Class: 128 Class: 128 update_tables:1779: Op Class[48] ruid: 02:01:00:ec:07:ae Type: 6 Class: 129 Class: 129 update_tables:1779: Op Class[49] ruid: 02:01:00:ec:07:ae Type: 6 Class: 130 Class: 130 update_tables:1779: Op Class[50] ruid: 02:01:00:ec:07:ae Type: 6 Class: 131 Class: 131 update_tables:1779: Op Class[51] ruid: 02:01:00:ec:07:ae Type: 6 Class: 132 Class: 132 update_tables:1779: Op Class[52] ruid: 02:01:00:ec:07:ae Type: 6 Class: 133 Class: 133 update_tables:1779: Op Class[53] ruid: 02:01:00:ec:07:ae Type: 6 Class: 134 Class: 134 update_tables:1779: Op Class[54] ruid: 02:01:00:ec:07:ae Type: 6 Class: 135 Class: 135 update_tables:1779: Op Class[55] ruid: 02:01:00:ec:07:ae Type: 6 Class: 136 Class: 136 update_tables:1779: Op Class[56] ruid: 02:02:10:ec:07:92 Type: 1 Class: 12 Class: 12 update_tables:1779: Op Class[57] ruid: 02:02:20:ec:07:93 Type: 1 Class: 1 Class: 1 orch_execute:151: dm_orch_type_channel_cnf(em_cmd_type_em_config) state: em_state_ctrl_channel_selected orch_execute:151: dm_orch_type_policy_cfg(em_cmd_type_em_config) state: em_state_ctrl_configured orch_execute:151: dm_orch_type_policy_cfg(em_cmd_type_em_config) state: em_state_ctrl_configured [onewifi_em_ctrl] 09/16/2025 - 05:38:35.060756 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_set_policy_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:35.060875 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_set_policy_pending in channel state machine. send_policy_cfg_request_msg:430: Policy Cfg Request Msg Send Success [onewifi_em_ctrl] 09/16/2025 - 05:38:35.063541 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_set_policy_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:35.063686 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_set_policy_pending in channel state machine. send_policy_cfg_request_msg:430: Policy Cfg Request Msg Send Success [onewifi_em_ctrl] 09/16/2025 - 05:38:35.065798 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:35.065897 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:36.062021 :em_configuration.cpp:1460: INFO: Topology Notification received, length: 50 [onewifi_em_ctrl] 09/16/2025 - 05:38:36.066046 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:36.066175 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:37.066331 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:37.066447 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:38.066603 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:38.066708 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in channel state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:39.066846 :em_configuration.cpp:5300: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in config state machine. [onewifi_em_ctrl] 09/16/2025 - 05:38:39.066977 :em_channel.cpp:2018: INFO: unhandled state:em_state_ctrl_channel_cnf_pending in channel state machine.
root@Filogic-GW:~# cat /tmp/em_agent.log
Registration completed with MAC Address: 2 1 0 ec 7 ae
mgr_input_listen:290 Thread stack size = 8388608 bytes
mgr_nodes_listen:436 Thread stack size = 8388608 bytes
input_listener:1087 he_bus open success
input_listener:1105 recv data:
{
"Version": "1.0",
"SubDocName": "dml",
"WifiConfig": {
"GASConfig": {
"AdvertisementId": 0,
"PauseForServerResp": true,
"RespTimeout": 5000,
"ComebackDelay": 1000,
"RespBufferTime": 1000,
"QueryRespLengthLimit": 127
},
"NotifyWifiChanges": false,
"PreferPrivate": false,
"PreferPrivateConfigure": false,
"FactoryReset": false,
"TxOverflowSelfheal": false,
"InstWifiClientEnabled": false,
"InstWifiClientReportingPeriod": 0,
"InstWifiClientMac": "00:00:00:00:00:00",
"InstWifiClientDefReportingPeriod": 0,
"WifiActiveMsmtEnabled": false,
"WifiActiveMsmtPktsize": 0,
"WifiActiveMsmtNumSamples": 0,
"WifiActiveMsmtSampleDuration": 0,
"VlanCfgVersion": 0,
"WpsPin": "",
"BandsteeringEnable": false,
"GoodRssiThreshold": 0,
"AssocCountThreshold": 0,
"AssocGateTime": 0,
"WhixLoginterval": 0,
"whix_chutility_loginterval": 0,
"rss_memory_restart_threshold_low": 0,
"rss_memory_restart_threshold_high": 0,
"AssocMonitorDuration": 0,
"RapidReconnectEnable": false,
"VapStatsFeature": false,
"MfpConfigFeature": false,
"ForceDisableRadioFeature": false,
"ForceDisableRadioStatus": false,
"FixedWmmParams": 0,
"WifiRegionCode": "",
"DiagnosticEnable": false,
"ValidateSsid": false,
"DeviceNetworkMode": 0,
"NormalizedRssiList": "",
"SNRList": "",
"CliStatList": "",
"TxRxRateList": "",
"MgtFrameRateLimitEnable": false,
"MgtFrameRateLimit": 0,
"MgtFrameRateLimitWindowSize": 0,
"MgtFrameRateLimitCooldownTime": 0,
"rss_check_interval": 0,
"rss_threshold": 0,
"rss_maxlimit": 0,
"heapwalk_duration": 0,
"heapwalk_interval": 0,
"MemwrapToolEnable": false
},
"WifiRadioConfig": [{
"WifiRadioSetup": {
"RadioIndex": 0,
"VapMap": [{
"VapName": "private_ssid_2g",
"VapIndex": 0
}, {
"VapName": "mesh_backhaul_2g",
"VapIndex": 12
}, {
"VapName": "iot_ssid_2g",
"VapIndex": 2
}]
},
"RadioName": "radio1",
"Enabled": true,
"FreqBand": 1,
"AutoChannelEnabled": true,
"Channel": 6,
"NumSecondaryChannels": 0,
"SecondaryChannelsList": " ",
"ChannelWidth": 1,
"HwMode": 268,
"CsaBeaconCount": 100,
"Country": "US",
"RegDomain": 0,
"OperatingEnvironment": "I",
"DFSEnable": false,
"DfsEnabledBootup": false,
"ChannelAvailability": "1:1,2:1,3:1,4:1,5:1,6:1,7:1,8:1,9:1,10:1,11:1,12:1,13:1,14:1",
"radarInfo": "last_channel:0,num_detected:0,time:0",
"DcsEnabled": false,
"DtimPeriod": 1,
"OperatingClass": 12,
"BasicDataTransmitRates": 656,
"OperationalDataTransmitRates": 8112,
"FragmentationThreshold": 2346,
"GuardInterval": 16,
"TransmitPower": 100,
"BeaconInterval": 100,
"RtsThreshold": 2347,
"FactoryResetSsid": false,
"RadioStatsMeasuringRate": 0,
"RadioStatsMeasuringInterval": 0,
"CtsProtection": false,
"ObssCoex": true,
"StbcEnable": true,
"GreenFieldEnable": false,
"UserControl": 0,
"AdminControl": 0,
"ChanUtilThreshold": 90,
"ChanUtilSelfHealEnable": false,
"EcoPowerDown": false,
"Tscan": 0,
"Nscan": 0,
"Tidle": 0,
"DfsTimer": 30,
"RadarDetected": " ",
"Amsdu_Tid": "0,0,0,0,0,0,0,0",
"NumberOfOpClass": 3,
"OperatingClasses": [{
"NumberOfNonOperChan": 2,
"Class": 81,
"MaxTxPower": -30,
"NonOperable": [12, 13]
}, {
"NumberOfNonOperChan": 0,
"Class": 83,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 2,
"Class": 84,
"MaxTxPower": -30,
"NonOperable": [12, 13]
}],
"CurrentOperatingClasses": [{
"Class": 12,
"Channel": 6
}]
}, {
"WifiRadioSetup": {
"RadioIndex": 1,
"VapMap": [{
"VapName": "private_ssid_5g",
"VapIndex": 1
}, {
"VapName": "mesh_backhaul_5g",
"VapIndex": 13
}, {
"VapName": "iot_ssid_5g",
"VapIndex": 3
}, {
"VapName": "mesh_sta_5g",
"VapIndex": 15
}]
},
"RadioName": "radio2",
"Enabled": true,
"FreqBand": 2,
"AutoChannelEnabled": true,
"Channel": 36,
"NumSecondaryChannels": 0,
"SecondaryChannelsList": " ",
"ChannelWidth": 4,
"HwMode": 425,
"CsaBeaconCount": 100,
"Country": "US",
"RegDomain": 0,
"OperatingEnvironment": "I",
"DFSEnable": false,
"DfsEnabledBootup": false,
"ChannelAvailability": "36:1,40:1,44:1,48:1,52:2,56:2,60:2,64:2,100:2,104:2,108:2,112:2,116:2,120:2,124:2,128:2,132:2,136:2,140:2,144:2,149:1,153:1,157:1,161:1,165:1,169:1,173:1,177:1",
"radarInfo": "last_channel:0,num_detected:0,time:0",
"DcsEnabled": false,
"DtimPeriod": 1,
"OperatingClass": 1,
"BasicDataTransmitRates": 656,
"OperationalDataTransmitRates": 8112,
"FragmentationThreshold": 2346,
"GuardInterval": 16,
"TransmitPower": 100,
"BeaconInterval": 100,
"RtsThreshold": 2347,
"FactoryResetSsid": false,
"RadioStatsMeasuringRate": 0,
"RadioStatsMeasuringInterval": 0,
"CtsProtection": false,
"ObssCoex": true,
"StbcEnable": true,
"GreenFieldEnable": false,
"UserControl": 0,
"AdminControl": 0,
"ChanUtilThreshold": 90,
"ChanUtilSelfHealEnable": false,
"EcoPowerDown": false,
"Tscan": 63,
"Nscan": 8,
"Tidle": 5,
"DfsTimer": 30,
"RadarDetected": " ",
"Amsdu_Tid": "0,0,0,0,0,0,0,0",
"NumberOfOpClass": 16,
"OperatingClasses": [{
"NumberOfNonOperChan": 0,
"Class": 115,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 116,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 117,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 118,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 119,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 120,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 121,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 122,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 123,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 124,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 2,
"Class": 125,
"MaxTxPower": -30,
"NonOperable": [169, 173]
}, {
"NumberOfNonOperChan": 0,
"Class": 126,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 1,
"Class": 127,
"MaxTxPower": -30,
"NonOperable": [169]
}, {
"NumberOfNonOperChan": 0,
"Class": 128,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 129,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 130,
"MaxTxPower": -30,
"NonOperable": "[]"
}],
"CurrentOperatingClasses": [{
"Class": 1,
"Channel": 36
}]
}, {
"WifiRadioSetup": {
"RadioIndex": 2,
"VapMap": [{
"VapName": "private_ssid_6g",
"VapIndex": 16
}]
},
"RadioName": "radio3",
"Enabled": true,
"FreqBand": 16,
"AutoChannelEnabled": true,
"Channel": 5,
"NumSecondaryChannels": 0,
"SecondaryChannelsList": " ",
"ChannelWidth": 8,
"HwMode": 384,
"CsaBeaconCount": 100,
"Country": "US",
"RegDomain": 0,
"OperatingEnvironment": "I",
"DFSEnable": false,
"DfsEnabledBootup": false,
"ChannelAvailability": "1:1,5:1,9:1,13:1,17:1,21:1,25:1,29:1,33:1,37:1,41:1,45:1,49:1,53:1,57:1,61:1,65:1,69:1,73:1,77:1,81:1,85:1,89:1,93:1,97:1,101:1,105:1,109:1,113:1,117:1,121:1,125:1,129:1,133:1,137:1,141:1,145:1,149:1,153:1,157:1,161:1,165:1,169:1,173:1,177:1,181:1,185:1,189:1,193:1,197:1,201:1,205:1,209:1,213:1,217:1,221:1,225:1,229:1,233:1",
"radarInfo": "last_channel:0,num_detected:0,time:0",
"DcsEnabled": false,
"DtimPeriod": 1,
"OperatingClass": 134,
"BasicDataTransmitRates": 656,
"OperationalDataTransmitRates": 8112,
"FragmentationThreshold": 2346,
"GuardInterval": 16,
"TransmitPower": 100,
"BeaconInterval": 100,
"RtsThreshold": 2347,
"FactoryResetSsid": false,
"RadioStatsMeasuringRate": 0,
"RadioStatsMeasuringInterval": 0,
"CtsProtection": false,
"ObssCoex": true,
"StbcEnable": true,
"GreenFieldEnable": false,
"UserControl": 0,
"AdminControl": 0,
"ChanUtilThreshold": 90,
"ChanUtilSelfHealEnable": false,
"EcoPowerDown": false,
"Tscan": 0,
"Nscan": 0,
"Tidle": 0,
"DfsTimer": 30,
"RadarDetected": " ",
"Amsdu_Tid": "0,0,0,0,0,0,0,0",
"NumberOfOpClass": 6,
"OperatingClasses": [{
"NumberOfNonOperChan": 0,
"Class": 131,
"MaxTxPower": 23,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 132,
"MaxTxPower": 23,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 133,
"MaxTxPower": 23,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 1,
"Class": 134,
"MaxTxPower": 23,
"NonOperable": [169]
}, {
"NumberOfNonOperChan": 0,
"Class": 135,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 136,
"MaxTxPower": 23,
"NonOperable": "[]"
}],
"CurrentOperatingClasses": [{
"Class": 134,
"Channel": 5
}]
}],
"DeviceInfo": {
"Manufacturer": "BananapiBPI-R4",
"Model": "BananapiBPI-R4",
"SerialNo": "62734efb37aa4e27a6eb3d4ecddb382b",
"Software_version": "rdkb-generic-broadband-image_rdk-next_20250916053725",
"CMMAC": "02:01:00:ec:07:8e",
"AL1905-MAC": "02:01:00:ec:07:9e"
},
"WiFiCap": {
"WiFiRadioCap": [{
"RadioIndex": 0,
"PossibleChannels": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
"PossibleChannelWidths": [1, 2],
"RadioPresence": 1
}, {
"RadioIndex": 0,
"PossibleChannels": [36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, 149, 153, 157, 161, 165, 169, 173, 177],
"PossibleChannelWidths": [1, 2, 4, 8],
"RadioPresence": 1
}, {
"RadioIndex": 0,
"PossibleChannels": [1, 5, 9, 13, 17, 21, 25, 29, 33, 37, 41, 45, 49, 53, 57, 61, 65, 69, 73, 77, 81, 85, 89, 93, 97, 101, 105, 109, 113, 117, 121, 125, 129, 133, 137, 141, 145, 149, 153, 157, 161, 165, 169, 173, 177, 181, 185, 189, 193, 197, 201, 205, 209, 213, 217, 221, 225, 229, 233],
"PossibleChannelWidths": [1, 2, 4, 8, 32],
"RadioPresence": 1
}],
"WiFiVapCap": [{
"VapName": "private_ssid_2g",
"PhyIndex": 0,
"RadioIndex": 0,
"InterfaceName": "wifi0",
"BridgeName": "brlan0",
"VLANID": 0,
"Index": 0
}, {
"VapName": "mesh_backhaul_2g",
"PhyIndex": 0,
"RadioIndex": 0,
"InterfaceName": "wifi0.1",
"BridgeName": "brlan0",
"VLANID": 0,
"Index": 12
}, {
"VapName": "iot_ssid_2g",
"PhyIndex": 0,
"RadioIndex": 0,
"InterfaceName": "wifi0.2",
"BridgeName": "brlan0",
"VLANID": 0,
"Index": 2
}, {
"VapName": "private_ssid_5g",
"PhyIndex": 0,
"RadioIndex": 1,
"InterfaceName": "wifi1",
"BridgeName": "brlan0",
"VLANID": 0,
"Index": 1
}, {
"VapName": "mesh_backhaul_5g",
"PhyIndex": 0,
"RadioIndex": 1,
"InterfaceName": "wifi1.1",
"BridgeName": "brlan0",
"VLANID": 0,
"Index": 13
}, {
"VapName": "iot_ssid_5g",
"PhyIndex": 0,
"RadioIndex": 1,
"InterfaceName": "wifi1.2",
"BridgeName": "brlan0",
"VLANID": 0,
"Index": 3
}, {
"VapName": "mesh_sta_5g",
"PhyIndex": 0,
"RadioIndex": 1,
"InterfaceName": "wifi1.3",
"BridgeName": "brlan0",
"VLANID": 0,
"Index": 15
}, {
"VapName": "private_ssid_6g",
"PhyIndex": 0,
"RadioIndex": 2,
"InterfaceName": "wifi2",
"BridgeName": "brlan0",
"VLANID": 0,
"Index": 16
}],
"WiFiRadioInterfaceCap": [{
"PhyIndex": 0,
"RadioIndex": 0,
"InterfaceName": "wifi0"
}, {
"PhyIndex": 0,
"RadioIndex": 1,
"InterfaceName": "wifi1"
}, {
"PhyIndex": 0,
"RadioIndex": 2,
"InterfaceName": "wifi2"
}]
},
"WifiVapConfig": [{
"VapName": "private_ssid_2g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 0,
"VapMode": 0,
"Exists": true,
"SSID": "BPI-RDKB-MLO-AP",
"BSSID": "02:02:10:ec:07:92",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": true,
"NeighborReportActivated": true,
"NetworkGreyList": false,
"RapidReconnCountEnable": true,
"RapidReconnThreshold": 180,
"VapStatsEnable": true,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": true,
"WpsConfigMethodsEnabled": 128,
"WpsConfigPin": "1234567",
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": true,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA3-Personal-Transition",
"MFPConfig": "Optional",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "rdk@1234",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "mesh_backhaul_2g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 0,
"VapMode": 0,
"Exists": true,
"SSID": "BPI-RDKB-MLO-AP",
"BSSID": "02:02:11:ec:07:95",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": false,
"NeighborReportActivated": false,
"NetworkGreyList": false,
"RapidReconnCountEnable": false,
"RapidReconnThreshold": 180,
"VapStatsEnable": false,
"MacFilterEnable": true,
"MacFilterMode": 1,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": false,
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": false,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "rdk@1234",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "iot_ssid_2g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 0,
"VapMode": 0,
"Exists": true,
"SSID": "BPI-RDKB-MLO-AP",
"BSSID": "02:02:12:ec:07:96",
"Enabled": true,
"SSIDAdvertisementEnabled": false,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": false,
"NeighborReportActivated": false,
"NetworkGreyList": false,
"RapidReconnCountEnable": false,
"RapidReconnThreshold": 180,
"VapStatsEnable": false,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": false,
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": false,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "rdk@1234",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "private_ssid_5g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 1,
"VapMode": 0,
"Exists": true,
"SSID": "BPI-RDKB-MLO-AP",
"BSSID": "02:02:20:ec:07:93",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": true,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 1,
"MLD_Addr": "02:02:30:ec:07:95",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": true,
"NeighborReportActivated": true,
"NetworkGreyList": false,
"RapidReconnCountEnable": true,
"RapidReconnThreshold": 180,
"VapStatsEnable": true,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": true,
"WpsConfigMethodsEnabled": 128,
"WpsConfigPin": "1234567",
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": true,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA3-Personal-Transition",
"MFPConfig": "Optional",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "rdk@1234",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "mesh_backhaul_5g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 1,
"VapMode": 0,
"Exists": true,
"SSID": "BPI-RDKB-MLO-AP",
"BSSID": "02:02:21:ec:07:97",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": false,
"NeighborReportActivated": false,
"NetworkGreyList": false,
"RapidReconnCountEnable": false,
"RapidReconnThreshold": 180,
"VapStatsEnable": false,
"MacFilterEnable": true,
"MacFilterMode": 1,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": false,
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": false,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "rdk@1234",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "iot_ssid_5g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 1,
"VapMode": 0,
"Exists": true,
"SSID": "BPI-RDKB-MLO-AP",
"BSSID": "02:02:22:ec:07:98",
"Enabled": true,
"SSIDAdvertisementEnabled": false,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": false,
"NeighborReportActivated": false,
"NetworkGreyList": false,
"RapidReconnCountEnable": false,
"RapidReconnThreshold": 180,
"VapStatsEnable": false,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": false,
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": false,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "rdk@1234",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "mesh_sta_5g",
"BridgeName": "brlan0",
"VapMode": 1,
"RadioIndex": 1,
"Exists": true,
"SSID": "mesh_backhaul",
"BSSID": "00:00:00:00:00:00",
"MAC": "02:02:23:ec:07:99",
"Enabled": false,
"ConnectStatus": false,
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-backhaul",
"KeyId": "",
"RekeyInterval": 0
},
"ScanParameters": {
"Period": 10,
"Channel": 0
}
}, {
"VapName": "private_ssid_6g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 2,
"VapMode": 0,
"Exists": true,
"SSID": "BPI-RDKB-MLO-AP",
"BSSID": "02:02:30:ec:07:94",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": true,
"NeighborReportActivated": true,
"NetworkGreyList": false,
"RapidReconnCountEnable": true,
"RapidReconnThreshold": 180,
"VapStatsEnable": true,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": true,
"WpsConfigMethodsEnabled": 128,
"WpsConfigPin": "1234567",
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": true,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA3-Personal",
"MFPConfig": "Required",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "rdk@1234",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}],
"WifiMacFilter": [{
"VapName": "private_ssid_2g",
"MACFilterList": []
}, {
"VapName": "mesh_backhaul_2g",
"MACFilterList": []
}, {
"VapName": "iot_ssid_2g",
"MACFilterList": []
}, {
"VapName": "private_ssid_5g",
"MACFilterList": []
}, {
"VapName": "mesh_backhaul_5g",
"MACFilterList": []
}, {
"VapName": "iot_ssid_5g",
"MACFilterList": []
}, {
"VapName": "mesh_sta_5g",
"MACFilterList": []
}, {
"VapName": "private_ssid_6g",
"MACFilterList": []
}]
}
[onewifi_em_agent] 09/16/2025 - 05:38:14.923949 :em_agent.cpp:1141: INFO: Failed to subscribe to 'Device.WiFi.EC.BSSInfo', dynamic DPP channel list for Reconfiguration Announcement is not available
get_listener_socket:203: bind error on socket: 6, err:98
execute:63: listener socket get failed, service:0
[onewifi_em_agent] 09/16/2025 - 05:38:14.927378 :dm_easy_mesh.cpp:2820: INFO: m_num_ap_mld 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.927424 :dm_easy_mesh.cpp:2838: INFO: Created new MLD at index 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.927437 :dm_easy_mesh.cpp:2874: INFO: Added new affiliated AP at index 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.927447 :dm_easy_mesh.cpp:2886: INFO: Updated MLD with 1 affiliated APs
translate_onewifi_dml_data:225 Dev-Init decode success
analyze_dev_init:80 al_mac = 02:01:00:ec:07:ae
print_config:1943:Network:02:01:00:ec:07:9e
print_config:1944:Controller MAC:02:01:00:ec:07:8e Controller AL MAC:02:01:00:ec:07:ae Agent AL MAC:02:01:00:ec:07:ae
print_config:1946:Manufacturer:BananapiBPI-R4 Manufacturere Model:BananapiBPI-R4 SoftwareVersion:rdkb-generic-broadband-image_rdktestEnv0250916053725
print_config:1961:No of BSS=8 No of Radios=3
print_config:1964:Radio Mac : 02:02:10:ec:07:92 BSSID : 02:02:10:ec:07:92
print_config:1964:Radio Mac : 02:02:10:ec:07:92 BSSID : 02:02:11:ec:07:95
print_config:1964:Radio Mac : 02:02:10:ec:07:92 BSSID : 02:02:12:ec:07:96
print_config:1964:Radio Mac : 02:02:20:ec:07:93 BSSID : 02:02:20:ec:07:93
print_config:1964:Radio Mac : 02:02:20:ec:07:93 BSSID : 02:02:21:ec:07:97
print_config:1964:Radio Mac : 02:02:20:ec:07:93 BSSID : 02:02:22:ec:07:98
print_config:1964:Radio Mac : 02:02:20:ec:07:93 BSSID : 00:00:00:00:00:00
print_config:1964:Radio Mac : 02:02:30:ec:07:94 BSSID : 02:02:30:ec:07:94
print_config:1972:Radio Mac: 02:02:10:ec:07:92
print_config:1973:Radio Band: 0
print_config:1974:TransmitPowerLimit: 0
print_config:1972:Radio Mac: 02:02:20:ec:07:93
print_config:1973:Radio Band: 1
print_config:1974:TransmitPowerLimit: 0
print_config:1972:Radio Mac: 02:02:30:ec:07:94
print_config:1973:Radio Band: 2
print_config:1974:TransmitPowerLimit: 0
pre_process_orch_op:222: calling create node
create_node:203 key value used:02:01:00:ec:07:ae_al
[onewifi_em_agent] 09/16/2025 - 05:38:14.939260 :em.cpp:1873: INFO: Co-located enrollee detected, regenerating net-access-key and connector
[onewifi_em_agent] 09/16/2025 - 05:38:14.944838 :em.cpp:1894: INFO: Generated new persistent security context for colocated agent
EC Manager created with MAC: 02:01:00:ec:07:ae
create_node:224: created entry for key:02:01:00:ec:07:ae_al
pre_process_orch_op:233: AL node created
em_func:558 Thread stack size = 8388608 bytes
commit_config:136 New Radio 02:02:10:ec:07:92 configuration created no of radios=1
commit_config:162 New op class=81 commiting it
commit_config:162 New op class=83 commiting it
commit_config:162 New op class=84 commiting it
commit_config:162 New op class=12 commiting it
commit_config:170 Commit radio=02:02:10:ec:07:92
commit_config:188 New BSS 02:02:10:ec:07:92 configuration updated no of bss=1 vapname=private_ssid_2g
commit_config:188 New BSS 02:02:11:ec:07:95 configuration updated no of bss=2 vapname=mesh_backhaul_2g
commit_config:188 New BSS 02:02:12:ec:07:96 configuration updated no of bss=3 vapname=iot_ssid_2g
[onewifi_em_agent] 09/16/2025 - 05:38:14.955104 :dm_easy_mesh.cpp:193: INFO: Number of AP MLDs to commit : 1
[onewifi_em_agent] 09/16/2025 - 05:38:14.955162 :dm_easy_mesh.cpp:2820: INFO: m_num_ap_mld 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.955178 :dm_easy_mesh.cpp:2838: INFO: Created new MLD at index 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.955188 :dm_easy_mesh.cpp:2874: INFO: Added new affiliated AP at index 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.955198 :dm_easy_mesh.cpp:2886: INFO: Updated MLD with 1 affiliated APs
pre_process_orch_op:250: calling create_node band=0
create_node:203 key value used:02:02:10:ec:07:92
create_node:224: created entry for key:02:02:10:ec:07:92
em_func:558 Thread stack size = 8388608 bytes
commit_config:136 New Radio 02:02:20:ec:07:93 configuration created no of radios=2
commit_config:162 New op class=115 commiting it
commit_config:162 New op class=116 commiting it
commit_config:162 New op class=117 commiting it
commit_config:162 New op class=118 commiting it
commit_config:162 New op class=119 commiting it
commit_config:162 New op class=120 commiting it
commit_config:162 New op class=121 commiting it
commit_config:162 New op class=122 commiting it
commit_config:162 New op class=123 commiting it
commit_config:162 New op class=124 commiting it
commit_config:162 New op class=125 commiting it
commit_config:162 New op class=126 commiting it
commit_config:162 New op class=127 commiting it
commit_config:162 New op class=128 commiting it
commit_config:162 New op class=129 commiting it
commit_config:162 New op class=130 commiting it
commit_config:162 New op class=1 commiting it
commit_config:170 Commit radio=02:02:20:ec:07:93
commit_config:188 New BSS 02:02:20:ec:07:93 configuration updated no of bss=4 vapname=private_ssid_5g
commit_config:188 New BSS 02:02:21:ec:07:97 configuration updated no of bss=5 vapname=mesh_backhaul_5g
commit_config:188 New BSS 02:02:22:ec:07:98 configuration updated no of bss=6 vapname=iot_ssid_5g
commit_config:188 New BSS 00:00:00:00:00:00 configuration updated no of bss=7 vapname=mesh_sta_5g
[onewifi_em_agent] 09/16/2025 - 05:38:14.966312 :dm_easy_mesh.cpp:193: INFO: Number of AP MLDs to commit : 1
[onewifi_em_agent] 09/16/2025 - 05:38:14.966362 :dm_easy_mesh.cpp:2820: INFO: m_num_ap_mld 1
[onewifi_em_agent] 09/16/2025 - 05:38:14.966376 :dm_easy_mesh.cpp:2824: INFO: Found existing MLD at index 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.966387 :dm_easy_mesh.cpp:2861: INFO: Found existing affiliated AP at index 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.966396 :dm_easy_mesh.cpp:2886: INFO: Updated MLD with 1 affiliated APs
pre_process_orch_op:250: calling create_node band=1
create_node:203 key value used:02:02:20:ec:07:93
create_node:224: created entry for key:02:02:20:ec:07:93
em_func:558 Thread stack size = 8388608 bytes
commit_config:136 New Radio 02:02:30:ec:07:94 configuration created no of radios=3
commit_config:162 New op class=131 commiting it
commit_config:162 New op class=132 commiting it
commit_config:162 New op class=133 commiting it
commit_config:162 New op class=134 commiting it
commit_config:162 New op class=135 commiting it
commit_config:162 New op class=136 commiting it
commit_config:162 New op class=134 commiting it
commit_config:170 Commit radio=02:02:30:ec:07:94
commit_config:188 New BSS 02:02:30:ec:07:94 configuration updated no of bss=8 vapname=private_ssid_6g
[onewifi_em_agent] 09/16/2025 - 05:38:14.976942 :dm_easy_mesh.cpp:193: INFO: Number of AP MLDs to commit : 1
[onewifi_em_agent] 09/16/2025 - 05:38:14.976988 :dm_easy_mesh.cpp:2820: INFO: m_num_ap_mld 1
[onewifi_em_agent] 09/16/2025 - 05:38:14.977000 :dm_easy_mesh.cpp:2824: INFO: Found existing MLD at index 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.977010 :dm_easy_mesh.cpp:2861: INFO: Found existing affiliated AP at index 0
[onewifi_em_agent] 09/16/2025 - 05:38:14.977019 :dm_easy_mesh.cpp:2886: INFO: Updated MLD with 1 affiliated APs
pre_process_orch_op:250: calling create_node band=2
create_node:203 key value used:02:02:30:ec:07:94
create_node:224: created entry for key:02:02:30:ec:07:94
em_func:558 Thread stack size = 8388608 bytes
[onewifi_em_agent] 09/16/2025 - 05:38:14.989262 :em_agent.cpp:183: INFO: Subscribed to receive management action frames for VAP 12
send_result:119: write error on socket, err:88
handle_state_config_none:5201: autoconfig_search send successful
handle_state_config_none:5201: autoconfig_search send successful
[onewifi_em_agent] 09/16/2025 - 05:38:15.978526 :em_configuration.cpp:4907: INFO: Received autoconfig resp from 02:01:00:ec:07:9e
Received resp and validated...creating M1 msg
Op Class 0: 81, max_tx_eirp: -30, channels.num: 2
cap->op_classes[0].op_class: 81, cap->op_classes[0].max_tx_eirp 226, cap->op_classes[0].channels.num 2
Op Class 1: 83, max_tx_eirp: -30, channels.num: 0
cap->op_classes[1].op_class: 12, cap->op_classes[1].max_tx_eirp 13, cap->op_classes[1].channels.num 83
Op Class 2: 84, max_tx_eirp: -30, channels.num: 2
cap->op_classes[2].op_class: 226, cap->op_classes[2].max_tx_eirp 0, cap->op_classes[2].channels.num 84
[onewifi_em_agent] 09/16/2025 - 05:38:15.978622 :em.cpp:951: INFO: Created AP Radio Basic Cap TLV for Radio:02:02:10:ec:07:92, num_bss:3, op_class_num:3, len:21
[onewifi_em_agent] 09/16/2025 - 05:38:15.978638 :em_configuration.cpp:2353: INFO: WPS Auth Flags: 0x0000
[onewifi_em_agent] 09/16/2025 - 05:38:15.978678 :em_configuration.cpp:4952: INFO: autoconfig wsc m1 send success, len:559
[onewifi_em_agent] 09/16/2025 - 05:38:15.985389 :em_configuration.cpp:4907: INFO: Received autoconfig resp from 02:01:00:ec:07:9e
Received resp and validated...creating M1 msg
Op Class 4: 115, max_tx_eirp: -30, channels.num: 0
cap->op_classes[4].op_class: 0, cap->op_classes[4].max_tx_eirp 0, cap->op_classes[4].channels.num 0
Op Class 5: 116, max_tx_eirp: -30, channels.num: 0
cap->op_classes[5].op_class: 0, cap->op_classes[5].max_tx_eirp 0, cap->op_classes[5].channels.num 0
Op Class 6: 117, max_tx_eirp: -30, channels.num: 0
cap->op_classes[6].op_class: 0, cap->op_classes[6].max_tx_eirp 0, cap->op_classes[6].channels.num 0
Op Class 7: 118, max_tx_eirp: -30, channels.num: 0
cap->op_classes[7].op_class: 0, cap->op_classes[7].max_tx_eirp 0, cap->op_classes[7].channels.num 0
Op Class 8: 119, max_tx_eirp: -30, channels.num: 0
cap->op_classes[8].op_class: 0, cap->op_classes[8].max_tx_eirp 0, cap->op_classes[8].channels.num 0
Op Class 9: 120, max_tx_eirp: -30, channels.num: 0
cap->op_classes[9].op_class: 0, cap->op_classes[9].max_tx_eirp 0, cap->op_classes[9].channels.num 0
Op Class 10: 121, max_tx_eirp: -30, channels.num: 0
cap->op_classes[10].op_class: 0, cap->op_classes[10].max_tx_eirp 0, cap->op_classes[10].channels.num 0
Op Class 11: 122, max_tx_eirp: -30, channels.num: 0
cap->op_classes[11].op_class: 0, cap->op_classes[11].max_tx_eirp 0, cap->op_classes[11].channels.num 0
Op Class 12: 123, max_tx_eirp: -30, channels.num: 0
cap->op_classes[12].op_class: 0, cap->op_classes[12].max_tx_eirp 0, cap->op_classes[12].channels.num 0
Op Class 13: 124, max_tx_eirp: -30, channels.num: 0
cap->op_classes[13].op_class: 0, cap->op_classes[13].max_tx_eirp 0, cap->op_classes[13].channels.num 0
Op Class 14: 125, max_tx_eirp: -30, channels.num: 2
cap->op_classes[14].op_class: 0, cap->op_classes[14].max_tx_eirp 0, cap->op_classes[14].channels.num 0
Op Class 15: 126, max_tx_eirp: -30, channels.num: 0
cap->op_classes[15].op_class: 0, cap->op_classes[15].max_tx_eirp 0, cap->op_classes[15].channels.num 1
Op Class 16: 127, max_tx_eirp: -30, channels.num: 1
cap->op_classes[16].op_class: 128, cap->op_classes[16].max_tx_eirp 194, cap->op_classes[16].channels.num 0
Op Class 17: 128, max_tx_eirp: -30, channels.num: 0
cap->op_classes[17].op_class: 0, cap->op_classes[17].max_tx_eirp 19, cap->op_classes[17].channels.num 2
Op Class 18: 129, max_tx_eirp: -30, channels.num: 0
cap->op_classes[18].op_class: 1, cap->op_classes[18].max_tx_eirp 0, cap->op_classes[18].channels.num 236
Op Class 19: 130, max_tx_eirp: -30, channels.num: 0
cap->op_classes[19].op_class: 7, cap->op_classes[19].max_tx_eirp 174, cap->op_classes[19].channels.num 137
[onewifi_em_agent] 09/16/2025 - 05:38:15.985496 :em.cpp:951: INFO: Created AP Radio Basic Cap TLV for Radio:02:02:20:ec:07:93, num_bss:4, op_class_num:16, len:59
[onewifi_em_agent] 09/16/2025 - 05:38:15.985518 :em_configuration.cpp:2353: INFO: WPS Auth Flags: 0x0000
[onewifi_em_agent] 09/16/2025 - 05:38:15.985560 :em_configuration.cpp:4952: INFO: autoconfig wsc m1 send success, len:597
handle_state_config_none:5201: autoconfig_search send successful
find_em_for_msg_type:1491: Found existing radio:02:02:10:ec:07:92
process_msg:5080: received wsc_m2 len:1036
handle_wsc_m2:3507: Parsing m2 message, len: 911
[onewifi_em_agent] 09/16/2025 - 05:38:16.026840 :em_configuration.cpp:3722: INFO: Found AP MLD details in message
[onewifi_em_agent] 09/16/2025 - 05:38:16.026902 :em_configuration.cpp:1687: INFO: Zero AP MLD data
find_em_for_msg_type:1491: Found existing radio:02:02:20:ec:07:93
process_msg:5080: received wsc_m2 len:1036
handle_wsc_m2:3507: Parsing m2 message, len: 911
[onewifi_em_agent] 09/16/2025 - 05:38:16.046030 :em_configuration.cpp:3722: INFO: Found AP MLD details in message
[onewifi_em_agent] 09/16/2025 - 05:38:16.046096 :em_configuration.cpp:1687: INFO: Zero AP MLD data
handle_autoconfig_wsc_m2:3736: Authenticator verification succeeded
handle_encrypted_settings:3792: noofbss configuration recv=4
handle_encrypted_settings:3803: ssid attrib: private_ssid
handle_encrypted_settings:3813: network key attrib: test-fronthaul
handle_encrypted_settings:3816: mac address attrib: 02:02:10:ec:07:92
handle_encrypted_settings:3819: key wrap auth attrib
handle_encrypted_settings:3803: ssid attrib: mesh_backhaul
handle_encrypted_settings:3813: network key attrib: test-backhaul
handle_encrypted_settings:3816: mac address attrib: 02:02:10:ec:07:92
handle_encrypted_settings:3819: key wrap auth attrib
handle_encrypted_settings:3803: ssid attrib: iot_ssid
handle_encrypted_settings:3813: network key attrib: test-backhaul
handle_encrypted_settings:3816: mac address attrib: 02:02:10:ec:07:92
handle_encrypted_settings:3819: key wrap auth attrib
handle_encrypted_settings:3803: ssid attrib: lnf_radius
handle_encrypted_settings:3813: network key attrib: test-backhaul
handle_encrypted_settings:3816: mac address attrib: 02:02:10:ec:07:92
handle_encrypted_settings:3819: key wrap auth attrib
analyze_m2ctrl_configuration:250 New configuration SSID=private_ssid passphrase=test-fronthaul haultype=0 radiomac=02:02:10:ec:07:92
analyze_m2ctrl_configuration:250 New configuration SSID=mesh_backhaul passphrase=test-backhaul haultype=1 radiomac=02:02:10:ec:07:92
analyze_m2ctrl_configuration:250 New configuration SSID=iot_ssid passphrase=test-backhaul haultype=2 radiomac=02:02:10:ec:07:92
analyze_m2ctrl_configuration:250 New configuration SSID=lnf_radius passphrase=test-backhaul haultype=3 radiomac=02:02:10:ec:07:92
[onewifi_em_agent] 09/16/2025 - 05:38:16.051382 :ec_enrollee.cpp:41: INFO: Enrollee is upgrading, skipping cleanup of persistent security context
refresh_onewifi_subdoc:976 Private subdoc encode success {
"Version": "1.0",
"SubDocName": "Vap_2.4G",
"Primary MacAddress": "02:02:10:ec:07:92",
"WifiVapConfig": [{
"VapName": "private_ssid_2g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 0,
"VapMode": 0,
"Exists": true,
"SSID": "private_ssid",
"BSSID": "02:02:10:ec:07:92",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": true,
"NeighborReportActivated": true,
"NetworkGreyList": false,
"RapidReconnCountEnable": true,
"RapidReconnThreshold": 180,
"VapStatsEnable": true,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": true,
"WpsConfigMethodsEnabled": 128,
"WpsConfigPin": "1234567",
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": true,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Optional",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-fronthaul",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "mesh_backhaul_2g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 0,
"VapMode": 0,
"Exists": true,
"SSID": "mesh_backhaul",
"BSSID": "02:02:11:ec:07:95",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": false,
"NeighborReportActivated": false,
"NetworkGreyList": false,
"RapidReconnCountEnable": false,
"RapidReconnThreshold": 180,
"VapStatsEnable": false,
"MacFilterEnable": true,
"MacFilterMode": 1,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": false,
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": false,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-backhaul",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "iot_ssid_2g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 0,
"VapMode": 0,
"Exists": true,
"SSID": "iot_ssid",
"BSSID": "02:02:12:ec:07:96",
"Enabled": true,
"SSIDAdvertisementEnabled": false,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": false,
"NeighborReportActivated": false,
"NetworkGreyList": false,
"RapidReconnCountEnable": false,
"RapidReconnThreshold": 180,
"VapStatsEnable": false,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": false,
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": false,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-backhaul",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}]
}
[onewifi_em_agent] 09/16/2025 - 05:38:16.052222 :ec_1905_encrypt_layer.cpp:557: INFO: Initialized 1905 layer encryption with security parameters
[onewifi_em_agent] 09/16/2025 - 05:38:16.052268 :ec_manager.cpp:165: INFO: Upgraded enrollee agent to proxy agent
refresh_onewifi_subdoc:993 Private subdoc send successfull
handle_autoconfig_wsc_m2:3736: Authenticator verification succeeded
handle_encrypted_settings:3792: noofbss configuration recv=4
handle_encrypted_settings:3803: ssid attrib: private_ssid
handle_encrypted_settings:3813: network key attrib: test-fronthaul
handle_encrypted_settings:3816: mac address attrib: 02:02:20:ec:07:93
handle_encrypted_settings:3819: key wrap auth attrib
handle_encrypted_settings:3803: ssid attrib: mesh_backhaul
handle_encrypted_settings:3813: network key attrib: test-backhaul
handle_encrypted_settings:3816: mac address attrib: 02:02:20:ec:07:93
handle_encrypted_settings:3819: key wrap auth attrib
handle_encrypted_settings:3803: ssid attrib: iot_ssid
handle_encrypted_settings:3813: network key attrib: test-backhaul
handle_encrypted_settings:3816: mac address attrib: 02:02:20:ec:07:93
handle_encrypted_settings:3819: key wrap auth attrib
handle_encrypted_settings:3803: ssid attrib: lnf_radius
handle_encrypted_settings:3813: network key attrib: test-backhaul
handle_encrypted_settings:3816: mac address attrib: 02:02:20:ec:07:93
handle_encrypted_settings:3819: key wrap auth attrib
analyze_m2ctrl_configuration:250 New configuration SSID=private_ssid passphrase=test-fronthaul haultype=0 radiomac=02:02:20:ec:07:93
analyze_m2ctrl_configuration:250 New configuration SSID=mesh_backhaul passphrase=test-backhaul haultype=1 radiomac=02:02:20:ec:07:93
analyze_m2ctrl_configuration:250 New configuration SSID=iot_ssid passphrase=test-backhaul haultype=2 radiomac=02:02:20:ec:07:93
analyze_m2ctrl_configuration:250 New configuration SSID=lnf_radius passphrase=test-backhaul haultype=3 radiomac=02:02:20:ec:07:93
[onewifi_em_agent] 09/16/2025 - 05:38:16.065899 :ec_manager.cpp:141: INFO: Can't upgrade an already upgraded agent
refresh_onewifi_subdoc:976 Private subdoc encode success {
"Version": "1.0",
"SubDocName": "Vap_5G",
"Primary MacAddress": "02:02:20:ec:07:93",
"WifiVapConfig": [{
"VapName": "private_ssid_5g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 1,
"VapMode": 0,
"Exists": true,
"SSID": "private_ssid",
"BSSID": "02:02:20:ec:07:93",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": true,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 1,
"MLD_Addr": "02:02:30:ec:07:95",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": true,
"NeighborReportActivated": true,
"NetworkGreyList": false,
"RapidReconnCountEnable": true,
"RapidReconnThreshold": 180,
"VapStatsEnable": true,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": true,
"WpsConfigMethodsEnabled": 128,
"WpsConfigPin": "1234567",
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": true,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Optional",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-fronthaul",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "mesh_backhaul_5g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 1,
"VapMode": 0,
"Exists": true,
"SSID": "mesh_backhaul",
"BSSID": "02:02:21:ec:07:97",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": false,
"NeighborReportActivated": false,
"NetworkGreyList": false,
"RapidReconnCountEnable": false,
"RapidReconnThreshold": 180,
"VapStatsEnable": false,
"MacFilterEnable": true,
"MacFilterMode": 1,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": false,
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": false,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-backhaul",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "iot_ssid_5g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 1,
"VapMode": 0,
"Exists": true,
"SSID": "iot_ssid",
"BSSID": "02:02:22:ec:07:98",
"Enabled": true,
"SSIDAdvertisementEnabled": false,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": false,
"NeighborReportActivated": false,
"NetworkGreyList": false,
"RapidReconnCountEnable": false,
"RapidReconnThreshold": 180,
"VapStatsEnable": false,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": false,
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": false,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-backhaul",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}, {
"VapName": "mesh_sta_5g",
"BridgeName": "brlan0",
"VapMode": 1,
"RadioIndex": 1,
"Exists": true,
"SSID": "mesh_backhaul",
"BSSID": "00:00:00:00:00:00",
"MAC": "02:02:23:ec:07:99",
"Enabled": true,
"ConnectStatus": false,
"Security": {
"Mode": "WPA2-Personal",
"MFPConfig": "Disabled",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-backhaul",
"KeyId": "",
"RekeyInterval": 0
},
"ScanParameters": {
"Period": 10,
"Channel": 0
}
}]
}
refresh_onewifi_subdoc:993 Private subdoc send successfull
handle_state_config_none:5201: autoconfig_search send successful
[onewifi_em_agent] 09/16/2025 - 05:38:16.995510 :em_configuration.cpp:4907: INFO: Received autoconfig resp from 02:01:00:ec:07:9e
Received resp and validated...creating M1 msg
Op Class 21: 131, max_tx_eirp: 23, channels.num: 0
cap->op_classes[21].op_class: 0, cap->op_classes[21].max_tx_eirp 7, cap->op_classes[21].channels.num 0
Op Class 22: 132, max_tx_eirp: 23, channels.num: 0
cap->op_classes[22].op_class: 7, cap->op_classes[22].max_tx_eirp 0, cap->op_classes[22].channels.num 128
Op Class 23: 133, max_tx_eirp: 23, channels.num: 0
cap->op_classes[23].op_class: 1, cap->op_classes[23].max_tx_eirp 0, cap->op_classes[23].channels.num 6
Op Class 24: 134, max_tx_eirp: 23, channels.num: 1
cap->op_classes[24].op_class: 2, cap->op_classes[24].max_tx_eirp 1, cap->op_classes[24].channels.num 0
Op Class 25: 135, max_tx_eirp: -30, channels.num: 0
cap->op_classes[25].op_class: 236, cap->op_classes[25].max_tx_eirp 7, cap->op_classes[25].channels.num 174
Op Class 26: 136, max_tx_eirp: 23, channels.num: 0
cap->op_classes[26].op_class: 13, cap->op_classes[26].max_tx_eirp 0, cap->op_classes[26].channels.num 1
[onewifi_em_agent] 09/16/2025 - 05:38:16.995630 :em.cpp:951: INFO: Created AP Radio Basic Cap TLV for Radio:02:02:30:ec:07:94, num_bss:1, op_class_num:6, len:27
[onewifi_em_agent] 09/16/2025 - 05:38:16.995646 :em_configuration.cpp:2353: INFO: WPS Auth Flags: 0x0000
[onewifi_em_agent] 09/16/2025 - 05:38:16.995683 :em_configuration.cpp:4952: INFO: autoconfig wsc m1 send success, len:565
[onewifi_em_agent] 09/16/2025 - 05:38:17.034677 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:10:ec:07:92 is in incorrect state state=5
find_em_for_msg_type:1491: Found existing radio:02:02:30:ec:07:94
process_msg:5080: received wsc_m2 len:764
handle_wsc_m2:3507: Parsing m2 message, len: 639
[onewifi_em_agent] 09/16/2025 - 05:38:17.044336 :em_configuration.cpp:3722: INFO: Found AP MLD details in message
[onewifi_em_agent] 09/16/2025 - 05:38:17.044403 :em_configuration.cpp:1687: INFO: Zero AP MLD data
handle_autoconfig_wsc_m2:3736: Authenticator verification succeeded
handle_encrypted_settings:3792: noofbss configuration recv=1
handle_encrypted_settings:3803: ssid attrib: private_ssid
handle_encrypted_settings:3813: network key attrib: test-fronthaul
handle_encrypted_settings:3816: mac address attrib: 02:02:30:ec:07:94
handle_encrypted_settings:3819: key wrap auth attrib
analyze_m2ctrl_configuration:250 New configuration SSID=private_ssid passphrase=test-fronthaul haultype=0 radiomac=02:02:30:ec:07:94
[onewifi_em_agent] 09/16/2025 - 05:38:17.065847 :ec_manager.cpp:141: INFO: Can't upgrade an already upgraded agent
refresh_onewifi_subdoc:976 Private subdoc encode success {
"Version": "1.0",
"SubDocName": "Vap_6G",
"Primary MacAddress": "02:02:30:ec:07:94",
"WifiVapConfig": [{
"VapName": "private_ssid_6g",
"BridgeName": "brlan0",
"RepurposedBridgeName": "",
"RepurposedVapName": "",
"RadioIndex": 2,
"VapMode": 0,
"Exists": true,
"SSID": "private_ssid",
"BSSID": "02:02:30:ec:07:94",
"Enabled": true,
"SSIDAdvertisementEnabled": true,
"MLD_Enable": false,
"MLD_Apply": true,
"MLD_ID": 0,
"MLD_Link_ID": 0,
"MLD_Addr": "00:00:00:00:00:00",
"SpeedTier": 0,
"MDUEnabled": false,
"IsolationEnable": false,
"ManagementFramePowerControl": 0,
"InteropNumSta": 0,
"BssMaxNumSta": 75,
"BSSTransitionActivated": true,
"NeighborReportActivated": true,
"NetworkGreyList": false,
"RapidReconnCountEnable": true,
"RapidReconnThreshold": 180,
"VapStatsEnable": true,
"MacFilterEnable": false,
"MacFilterMode": 0,
"WmmEnabled": true,
"UapsdEnabled": true,
"BeaconRate": 16,
"WmmNoAck": 0,
"WepKeyLength": 128,
"BssHotspot": false,
"WpsPushButton": 0,
"WpsEnable": true,
"WpsConfigMethodsEnabled": 128,
"WpsConfigPin": "1234567",
"BeaconRateCtl": "6Mbps",
"Connected_building_enabled": false,
"HostapMgtFrameCtrl": false,
"InteropCtrl": false,
"MboEnabled": true,
"ExtraVendorIEs": "",
"Security": {
"Mode": "WPA3-Personal",
"MFPConfig": "Required",
"EncryptionMethod": "AES",
"Wpa3_transition_disable": false,
"Passphrase": "test-fronthaul",
"KeyId": "",
"RekeyInterval": 0
},
"Interworking": {
"InterworkingEnable": false,
"AccessNetworkType": 0,
"Internet": false,
"ASRA": false,
"ESR": false,
"UESA": false,
"HESSOptionPresent": true,
"HESSID": "11:22:33:44:55:66",
"Venue": {
"VenueOptionPresent": true,
"VenueType": 0,
"VenueGroup": 0
}
}
}]
}
refresh_onewifi_subdoc:993 Private subdoc send successfull
[onewifi_em_agent] 09/16/2025 - 05:38:18.035102 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:10:ec:07:92 is in incorrect state state=5
[onewifi_em_agent] 09/16/2025 - 05:38:18.038611 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:20:ec:07:93 is in incorrect state state=5
[onewifi_em_agent] 09/16/2025 - 05:38:19.036570 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:10:ec:07:92 is in incorrect state state=5
[onewifi_em_agent] 09/16/2025 - 05:38:19.039082 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:20:ec:07:93 is in incorrect state state=5
[onewifi_em_agent] 09/16/2025 - 05:38:19.043838 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:30:ec:07:94 is in incorrect state state=5
onewifi_cb:1326 Found SubDocName: private
analyze_onewifi_vap_cb:285 Private subdoc decode success
commit_config:170 Commit radio=02:02:10:ec:07:92
commit_config:178 BSS 02:02:10:ec:07:92 configuration updated
commit_config:178 BSS 02:02:11:ec:07:95 configuration updated
commit_config:178 BSS 02:02:12:ec:07:96 configuration updated
[onewifi_em_agent] 09/16/2025 - 05:38:19.677354 :dm_easy_mesh.cpp:193: INFO: Number of AP MLDs to commit : 0
analyze_onewifi_vap_cb:323 02:02:10:ec:07:92 in owconfig
em candidates created for em_cmd_type_onewifi_cb
submitted command for orchestration
[onewifi_em_agent] 09/16/2025 - 05:38:20.035992 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:10:ec:07:92 is in incorrect state state=5
[onewifi_em_agent] 09/16/2025 - 05:38:20.039455 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:20:ec:07:93 is in incorrect state state=5
[onewifi_em_agent] 09/16/2025 - 05:38:20.042758 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:30:ec:07:94 is in incorrect state state=5
onewifi_cb:1326 Found SubDocName: private
analyze_onewifi_vap_cb:285 Private subdoc decode success
commit_config:170 Commit radio=02:02:20:ec:07:93
commit_config:178 BSS 02:02:20:ec:07:93 configuration updated
commit_config:178 BSS 02:02:21:ec:07:97 configuration updated
commit_config:178 BSS 02:02:22:ec:07:98 configuration updated
commit_config:178 BSS 00:00:00:00:00:00 configuration updated
[onewifi_em_agent] 09/16/2025 - 05:38:20.677171 :dm_easy_mesh.cpp:193: INFO: Number of AP MLDs to commit : 0
analyze_onewifi_vap_cb:323 02:02:20:ec:07:93 in owconfig
em candidates created for em_cmd_type_onewifi_cb
submitted command for orchestration
find_em_for_msg_type:1506: Received topo query, found existing radio:02:02:10:ec:07:92
send_topology_response_msg:934: Testing topo, number of radios: 3, bss: 8
first tlv_len in em_configuration_t::create_operational_bss_tlv = 1
print_ap_operational_bss_tlv:1332 Number of radios: 1
print_ap_operational_bss_tlv:1335: Radio: 02:02:10:ec:07:92
print_ap_operational_bss_tlv:1338 Number of bss: 3
print_ap_operational_bss_tlv:1341: BSS:02:02:10:ec:07:92 SSID:private_ssid, SSID Length: 13
print_ap_operational_bss_tlv:1341: BSS:02:02:11:ec:07:95 SSID:mesh_backhaul, SSID Length: 14
print_ap_operational_bss_tlv:1341: BSS:02:02:12:ec:07:96 SSID:iot_ssid, SSID Length: 9
first tlv_len in em_configuration_t::create_custom_operational_bss_tlv = 0
[onewifi_em_agent] 09/16/2025 - 05:38:21.036352 :em_configuration.cpp:806: INFO: Number of radios: 1
[onewifi_em_agent] 09/16/2025 - 05:38:21.036420 :em_configuration.cpp:809: INFO: Radio: 02:02:10:ec:07:92
[onewifi_em_agent] 09/16/2025 - 05:38:21.036432 :em_configuration.cpp:811: INFO: Number of bss: 3
[onewifi_em_agent] 09/16/2025 - 05:38:21.036443 :em_configuration.cpp:814: INFO: BSSID=02:02:10:ec:07:92 haul type=0 vap_mode:0
[onewifi_em_agent] 09/16/2025 - 05:38:21.036454 :em_configuration.cpp:814: INFO: BSSID=02:02:11:ec:07:95 haul type=1 vap_mode:0
[onewifi_em_agent] 09/16/2025 - 05:38:21.036463 :em_configuration.cpp:814: INFO: BSSID=02:02:12:ec:07:96 haul type=2 vap_mode:0
send_topology_response_msg:1053: Testing topo, frame length: 652
setting state to em_state_agent_topo_synchronized
[onewifi_em_agent] 09/16/2025 - 05:38:21.041163 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:20:ec:07:93 is in incorrect state state=5
[onewifi_em_agent] 09/16/2025 - 05:38:21.044654 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:30:ec:07:94 is in incorrect state state=5
find_em_for_msg_type:1506: Received topo query, found existing radio:02:02:20:ec:07:93
send_topology_response_msg:934: Testing topo, number of radios: 3, bss: 8
first tlv_len in em_configuration_t::create_operational_bss_tlv = 1
print_ap_operational_bss_tlv:1332 Number of radios: 1
print_ap_operational_bss_tlv:1335: Radio: 02:02:20:ec:07:93
print_ap_operational_bss_tlv:1338 Number of bss: 4
print_ap_operational_bss_tlv:1341: BSS:02:02:20:ec:07:93 SSID:private_ssid, SSID Length: 13
print_ap_operational_bss_tlv:1341: BSS:02:02:21:ec:07:97 SSID:mesh_backhaul, SSID Length: 14
print_ap_operational_bss_tlv:1341: BSS:02:02:22:ec:07:98 SSID:iot_ssid, SSID Length: 9
print_ap_operational_bss_tlv:1341: BSS:00:00:00:00:00:00 SSID:mesh_backhaul, SSID Length: 14
first tlv_len in em_configuration_t::create_custom_operational_bss_tlv = 0
[onewifi_em_agent] 09/16/2025 - 05:38:22.040690 :em_configuration.cpp:806: INFO: Number of radios: 1
[onewifi_em_agent] 09/16/2025 - 05:38:22.040739 :em_configuration.cpp:809: INFO: Radio: 02:02:20:ec:07:93
[onewifi_em_agent] 09/16/2025 - 05:38:22.040750 :em_configuration.cpp:811: INFO: Number of bss: 4
[onewifi_em_agent] 09/16/2025 - 05:38:22.040761 :em_configuration.cpp:814: INFO: BSSID=02:02:20:ec:07:93 haul type=0 vap_mode:0
[onewifi_em_agent] 09/16/2025 - 05:38:22.040772 :em_configuration.cpp:814: INFO: BSSID=02:02:21:ec:07:97 haul type=1 vap_mode:0
[onewifi_em_agent] 09/16/2025 - 05:38:22.040782 :em_configuration.cpp:814: INFO: BSSID=02:02:22:ec:07:98 haul type=2 vap_mode:0
[onewifi_em_agent] 09/16/2025 - 05:38:22.040792 :em_configuration.cpp:814: INFO: BSSID=00:00:00:00:00:00 haul type=1 vap_mode:1
send_topology_response_msg:1053: Testing topo, frame length: 683
setting state to em_state_agent_topo_synchronized
[onewifi_em_agent] 09/16/2025 - 05:38:22.043734 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:30:ec:07:94 is in incorrect state state=5
onewifi_cb:1326 Found SubDocName: private
analyze_onewifi_vap_cb:285 Private subdoc decode success
commit_config:170 Commit radio=02:02:30:ec:07:94
commit_config:178 BSS 02:02:30:ec:07:94 configuration updated
[onewifi_em_agent] 09/16/2025 - 05:38:22.676771 :dm_easy_mesh.cpp:193: INFO: Number of AP MLDs to commit : 0
analyze_onewifi_vap_cb:323 02:02:30:ec:07:94 in owconfig
em candidates created for em_cmd_type_onewifi_cb
submitted command for orchestration
[onewifi_em_agent] 09/16/2025 - 05:38:23.044245 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:30:ec:07:94 is in incorrect state state=5
find_em_for_msg_type:1526: Received channel preference query recv, found existing radio:02:02:10:ec:07:92
build_candidates:439 em_cmd_type_channel_pref_query build candidate MAC=02:02:10:ec:07:92
handle_channel_pref_query:208 send success
[onewifi_em_agent] 09/16/2025 - 05:38:24.044253 :em_agent.cpp:1509: INFO: em_msg_type_topo_query :em mac=02:02:30:ec:07:94 is in incorrect state state=5
find_em_for_msg_type:1526: Received channel preference query recv, found existing radio:02:02:20:ec:07:93
build_candidates:439 em_cmd_type_channel_pref_query build candidate MAC=02:02:20:ec:07:93
handle_channel_pref_query:208 send success
find_em_for_msg_type:1506: Received topo query, found existing radio:02:02:30:ec:07:94
send_topology_response_msg:934: Testing topo, number of radios: 3, bss: 8
first tlv_len in em_configuration_t::create_operational_bss_tlv = 1
print_ap_operational_bss_tlv:1332 Number of radios: 1
print_ap_operational_bss_tlv:1335: Radio: 02:02:30:ec:07:94
print_ap_operational_bss_tlv:1338 Number of bss: 1
print_ap_operational_bss_tlv:1341: BSS:02:02:30:ec:07:94 SSID:private_ssid, SSID Length: 13
first tlv_len in em_configuration_t::create_custom_operational_bss_tlv = 0
[onewifi_em_agent] 09/16/2025 - 05:38:25.045207 :em_configuration.cpp:806: INFO: Number of radios: 1
[onewifi_em_agent] 09/16/2025 - 05:38:25.045253 :em_configuration.cpp:809: INFO: Radio: 02:02:30:ec:07:94
[onewifi_em_agent] 09/16/2025 - 05:38:25.045265 :em_configuration.cpp:811: INFO: Number of bss: 1
[onewifi_em_agent] 09/16/2025 - 05:38:25.045276 :em_configuration.cpp:814: INFO: BSSID=02:02:30:ec:07:94 haul type=0 vap_mode:0
send_topology_response_msg:1053: Testing topo, frame length: 592
setting state to em_state_agent_topo_synchronized
send_channel_pref_report_msg:1251: Channel Preference Report send success
process_state:1968 channel_pref_report_msg send
send_channel_pref_report_msg:1251: Channel Preference Report send success
process_state:1968 channel_pref_report_msg send
find_em_for_msg_type:1526: Received channel preference query recv, found existing radio:02:02:30:ec:07:94
build_candidates:439 em_cmd_type_channel_pref_query build candidate MAC=02:02:30:ec:07:94
handle_channel_pref_query:208 send success
find_em_for_msg_type:1549: Received em_msg_type_channel_sel_req, found existing radio:02:02:10:ec:07:92
handle_channel_sel_req:1682 Received channel selection request
analyze_channel_sel_req:414 No of opclass=1 tx=0
refresh_onewifi_subdoc:976 Radio subdoc encode success {
"Version": "1.0",
"SubDocName": "radio_2.4G",
"WifiRadioConfig": [{
"WifiRadioSetup": {
"RadioIndex": 0,
"VapMap": [{
"VapName": "private_ssid_2g",
"VapIndex": 0
}, {
"VapName": "mesh_backhaul_2g",
"VapIndex": 12
}, {
"VapName": "iot_ssid_2g",
"VapIndex": 2
}]
},
"RadioName": "radio1",
"Enabled": true,
"FreqBand": 1,
"AutoChannelEnabled": true,
"Channel": 6,
"NumSecondaryChannels": 0,
"SecondaryChannelsList": " ",
"ChannelWidth": 1,
"HwMode": 268,
"CsaBeaconCount": 100,
"Country": "US",
"RegDomain": 0,
"OperatingEnvironment": "I",
"DFSEnable": false,
"DfsEnabledBootup": false,
"ChannelAvailability": "1:1,2:1,3:1,4:1,5:1,6:1,7:1,8:1,9:1,10:1,11:1,12:1,13:1,14:1",
"radarInfo": "last_channel:0,num_detected:0,time:0",
"DcsEnabled": false,
"DtimPeriod": 1,
"OperatingClass": 81,
"BasicDataTransmitRates": 656,
"OperationalDataTransmitRates": 8112,
"FragmentationThreshold": 2346,
"GuardInterval": 16,
"TransmitPower": 100,
"BeaconInterval": 100,
"RtsThreshold": 2347,
"FactoryResetSsid": false,
"RadioStatsMeasuringRate": 0,
"RadioStatsMeasuringInterval": 0,
"CtsProtection": false,
"ObssCoex": true,
"StbcEnable": true,
"GreenFieldEnable": false,
"UserControl": 0,
"AdminControl": 0,
"ChanUtilThreshold": 90,
"ChanUtilSelfHealEnable": false,
"EcoPowerDown": false,
"Tscan": 0,
"Nscan": 0,
"Tidle": 0,
"DfsTimer": 30,
"RadarDetected": " ",
"Amsdu_Tid": "0,0,0,0,0,0,0,0",
"NumberOfOpClass": 3,
"OperatingClasses": [{
"NumberOfNonOperChan": 2,
"Class": 81,
"MaxTxPower": -30,
"NonOperable": [12, 13]
}, {
"NumberOfNonOperChan": 0,
"Class": 83,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 2,
"Class": 84,
"MaxTxPower": -30,
"NonOperable": [12, 13]
}],
"CurrentOperatingClasses": [{
"Class": 81,
"Channel": 6
}]
}]
}
find_em_for_msg_type:1549: Received em_msg_type_channel_sel_req, found existing radio:02:02:20:ec:07:93
handle_channel_sel_req:1682 Received channel selection request
refresh_onewifi_subdoc:993 Radio subdoc send successfull
analyze_channel_sel_req:414 No of opclass=1 tx=0
refresh_onewifi_subdoc:976 Radio subdoc encode success {
"Version": "1.0",
"SubDocName": "radio_5G",
"WifiRadioConfig": [{
"WifiRadioSetup": {
"RadioIndex": 1,
"VapMap": [{
"VapName": "private_ssid_5g",
"VapIndex": 1
}, {
"VapName": "mesh_backhaul_5g",
"VapIndex": 13
}, {
"VapName": "iot_ssid_5g",
"VapIndex": 3
}, {
"VapName": "mesh_sta_5g",
"VapIndex": 15
}]
},
"RadioName": "radio2",
"Enabled": true,
"FreqBand": 2,
"AutoChannelEnabled": true,
"Channel": 36,
"NumSecondaryChannels": 0,
"SecondaryChannelsList": " ",
"ChannelWidth": 4,
"HwMode": 425,
"CsaBeaconCount": 100,
"Country": "US",
"RegDomain": 0,
"OperatingEnvironment": "I",
"DFSEnable": false,
"DfsEnabledBootup": false,
"ChannelAvailability": "36:1,40:1,44:1,48:1,52:2,56:2,60:2,64:2,100:2,104:2,108:2,112:2,116:2,120:2,124:2,128:2,132:2,136:2,140:2,144:2,149:1,153:1,157:1,161:1,165:1,169:1,173:1,177:1",
"radarInfo": "last_channel:0,num_detected:0,time:0",
"DcsEnabled": false,
"DtimPeriod": 1,
"OperatingClass": 115,
"BasicDataTransmitRates": 656,
"OperationalDataTransmitRates": 8112,
"FragmentationThreshold": 2346,
"GuardInterval": 16,
"TransmitPower": 100,
"BeaconInterval": 100,
"RtsThreshold": 2347,
"FactoryResetSsid": false,
"RadioStatsMeasuringRate": 0,
"RadioStatsMeasuringInterval": 0,
"CtsProtection": false,
"ObssCoex": true,
"StbcEnable": true,
"GreenFieldEnable": false,
"UserControl": 0,
"AdminControl": 0,
"ChanUtilThreshold": 90,
"ChanUtilSelfHealEnable": false,
"EcoPowerDown": false,
"Tscan": 63,
"Nscan": 8,
"Tidle": 5,
"DfsTimer": 30,
"RadarDetected": " ",
"Amsdu_Tid": "0,0,0,0,0,0,0,0",
"NumberOfOpClass": 16,
"OperatingClasses": [{
"NumberOfNonOperChan": 0,
"Class": 115,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 116,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 117,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 118,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 119,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 120,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 121,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 122,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 123,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 124,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 2,
"Class": 125,
"MaxTxPower": -30,
"NonOperable": [169, 173]
}, {
"NumberOfNonOperChan": 0,
"Class": 126,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 1,
"Class": 127,
"MaxTxPower": -30,
"NonOperable": [169]
}, {
"NumberOfNonOperChan": 0,
"Class": 128,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 129,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 130,
"MaxTxPower": -30,
"NonOperable": "[]"
}],
"CurrentOperatingClasses": [{
"Class": 115,
"Channel": 36
}]
}]
}
refresh_onewifi_subdoc:993 Radio subdoc send successfull
onewifi_cb:1331 Found SubDocName: radio
analyze_onewifi_radio_cb:361 Radio subdoc decode success
commit_config:129 Radio 02:02:10:ec:07:92 configuration updated
commit_config:146 op class=81 already exist so updated
commit_config:146 op class=83 already exist so updated
commit_config:146 op class=84 already exist so updated
commit_config:155 op class=12 already exist so updated ID = 1
build_candidates:454 Operating Channel Report build candidate MAC=02:02:10:ec:07:92
submitted command for orchestration
send_channel_pref_report_msg:1251: Channel Preference Report send success
process_state:1968 channel_pref_report_msg send
send_operating_channel_report_msg:895 Operating Channel Report msg send for 02:02:10:ec:07:92
process_state:1976 operating_channel_report_msg send
onewifi_cb:1331 Found SubDocName: radio
analyze_onewifi_radio_cb:361 Radio subdoc decode success
commit_config:129 Radio 02:02:20:ec:07:93 configuration updated
commit_config:146 op class=115 already exist so updated
commit_config:146 op class=116 already exist so updated
commit_config:146 op class=117 already exist so updated
commit_config:146 op class=118 already exist so updated
commit_config:146 op class=119 already exist so updated
commit_config:146 op class=120 already exist so updated
commit_config:146 op class=121 already exist so updated
commit_config:146 op class=122 already exist so updated
commit_config:146 op class=123 already exist so updated
commit_config:146 op class=124 already exist so updated
commit_config:146 op class=125 already exist so updated
commit_config:146 op class=126 already exist so updated
commit_config:146 op class=127 already exist so updated
commit_config:146 op class=128 already exist so updated
commit_config:146 op class=129 already exist so updated
commit_config:146 op class=130 already exist so updated
commit_config:155 op class=1 already exist so updated ID = 1
build_candidates:454 Operating Channel Report build candidate MAC=02:02:20:ec:07:93
submitted command for orchestration
send_operating_channel_report_msg:895 Operating Channel Report msg send for 02:02:20:ec:07:93
process_state:1976 operating_channel_report_msg send
find_em_for_msg_type:1549: Received em_msg_type_channel_sel_req, found existing radio:02:02:30:ec:07:94
handle_channel_sel_req:1682 Received channel selection request
analyze_channel_sel_req:414 No of opclass=1 tx=0
refresh_onewifi_subdoc:976 Radio subdoc encode success {
"Version": "1.0",
"SubDocName": "radio_6G",
"WifiRadioConfig": [{
"WifiRadioSetup": {
"RadioIndex": 2,
"VapMap": [{
"VapName": "private_ssid_6g",
"VapIndex": 16
}]
},
"RadioName": "radio3",
"Enabled": true,
"FreqBand": 16,
"AutoChannelEnabled": true,
"Channel": 1,
"NumSecondaryChannels": 0,
"SecondaryChannelsList": " ",
"ChannelWidth": 8,
"HwMode": 384,
"CsaBeaconCount": 100,
"Country": "US",
"RegDomain": 0,
"OperatingEnvironment": "I",
"DFSEnable": false,
"DfsEnabledBootup": false,
"ChannelAvailability": "1:1,5:1,9:1,13:1,17:1,21:1,25:1,29:1,33:1,37:1,41:1,45:1,49:1,53:1,57:1,61:1,65:1,69:1,73:1,77:1,81:1,85:1,89:1,93:1,97:1,101:1,105:1,109:1,113:1,117:1,121:1,125:1,129:1,133:1,137:1,141:1,145:1,149:1,153:1,157:1,161:1,165:1,169:1,173:1,177:1,181:1,185:1,189:1,193:1,197:1,201:1,205:1,209:1,213:1,217:1,221:1,225:1,229:1,233:1",
"radarInfo": "last_channel:0,num_detected:0,time:0",
"DcsEnabled": false,
"DtimPeriod": 1,
"OperatingClass": 135,
"BasicDataTransmitRates": 656,
"OperationalDataTransmitRates": 8112,
"FragmentationThreshold": 2346,
"GuardInterval": 16,
"TransmitPower": 100,
"BeaconInterval": 100,
"RtsThreshold": 2347,
"FactoryResetSsid": false,
"RadioStatsMeasuringRate": 0,
"RadioStatsMeasuringInterval": 0,
"CtsProtection": false,
"ObssCoex": true,
"StbcEnable": true,
"GreenFieldEnable": false,
"UserControl": 0,
"AdminControl": 0,
"ChanUtilThreshold": 90,
"ChanUtilSelfHealEnable": false,
"EcoPowerDown": false,
"Tscan": 0,
"Nscan": 0,
"Tidle": 0,
"DfsTimer": 30,
"RadarDetected": " ",
"Amsdu_Tid": "0,0,0,0,0,0,0,0",
"NumberOfOpClass": 6,
"OperatingClasses": [{
"NumberOfNonOperChan": 0,
"Class": 131,
"MaxTxPower": 23,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 132,
"MaxTxPower": 23,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 133,
"MaxTxPower": 23,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 1,
"Class": 134,
"MaxTxPower": 23,
"NonOperable": [169]
}, {
"NumberOfNonOperChan": 0,
"Class": 135,
"MaxTxPower": -30,
"NonOperable": "[]"
}, {
"NumberOfNonOperChan": 0,
"Class": 136,
"MaxTxPower": 23,
"NonOperable": "[]"
}],
"CurrentOperatingClasses": [{
"Class": 135,
"Channel": 1
}]
}]
}
refresh_onewifi_subdoc:993 Radio subdoc send successfull
translate_and_decode_onewifi_subdoc:928: Enter
translate_associated_clients_to_easymesh_sta_info:616: client_state: 0
get_sta_info:2428: key=02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
get_sta_info:2431: sta: 02:02:23:fe:44:5f not found in Assoc Map
put_sta_info:2467: Put sta key=02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
translate_and_decode_onewifi_subdoc:948 Assoc clients decode success
build_candidates:376 pcmd radio mac=02:02:10:ec:07:92
get_sta_info:2428: key=02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
get_sta_info:2431: sta: 02:02:23:fe:44:5f not found in Consolidated Map
Consolidated map new addition with key: 02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
build_candidates:376 pcmd radio mac=02:02:20:ec:07:93
get_sta_info:2428: key=02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
get_sta_info:2435: sta: 02:02:23:fe:44:5f found in Consolidated Map
Consolidated Map, sta exists; updating with key: 02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
build_candidates:376 pcmd radio mac=02:02:30:ec:07:94
get_sta_info:2428: key=02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
get_sta_info:2435: sta: 02:02:23:fe:44:5f found in Consolidated Map
Consolidated Map, sta exists; updating with key: 02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
analyze_sta_list submit complete
handle_policy_cfg_req:486 Recvd policy for radio 02:02:10:ec:07:92
refresh_onewifi_subdoc:976 Policy subdoc encode success {
"Version": "1.0",
"SubDocName": "Easymesh Config",
"WifiEMConfig": [{
"Policy": {
"AP Metrics Reporting Policy": {
"Interval": 60,
"Managed Client Marker": ""
},
"Local Steering Disallowed Policy": {
"Disallowed STA": []
},
"BTM Steering Disallowed Policy": {
"Disallowed STA": []
},
"Backhaul BSS Configuration Policy": {
"BSSID": "",
"Profile-1 bSTA Disallowed": false,
"Profile-2 bSTA Disallowed": true
},
"Channel Scan Reporting Policy": {
"Report Independent Channel Scans": 0
},
"Radio Specific Metrics Policy": [{
"ID": "02:02:10:ec:07:92",
"STA RCPI Threshold": 120,
"STA RCPI Hysteresis": 5,
"AP Utilization Threshold": 60,
"STA Traffic Stats": true,
"STA Link Metrics": true,
"STA Status": false
}]
}
}]
}
refresh_onewifi_subdoc:993 Policy subdoc send successfull
handle_policy_cfg_req:486 Recvd policy for radio 02:02:20:ec:07:93
refresh_onewifi_subdoc:976 Policy subdoc encode success {
"Version": "1.0",
"SubDocName": "Easymesh Config",
"WifiEMConfig": [{
"Policy": {
"AP Metrics Reporting Policy": {
"Interval": 60,
"Managed Client Marker": ""
},
"Local Steering Disallowed Policy": {
"Disallowed STA": []
},
"BTM Steering Disallowed Policy": {
"Disallowed STA": []
},
"Backhaul BSS Configuration Policy": {
"BSSID": "",
"Profile-1 bSTA Disallowed": false,
"Profile-2 bSTA Disallowed": true
},
"Channel Scan Reporting Policy": {
"Report Independent Channel Scans": 0
},
"Radio Specific Metrics Policy": [{
"ID": "02:02:20:ec:07:93",
"STA RCPI Threshold": 120,
"STA RCPI Hysteresis": 5,
"AP Utilization Threshold": 60,
"STA Traffic Stats": true,
"STA Link Metrics": true,
"STA Status": false
}]
}
}]
}
refresh_onewifi_subdoc:993 Policy subdoc send successfull
send_topology_notification_by_client:165 Create topology notification msg successful, len:50
send_topology_notification_by_client:178: Topology notification Send Successful
onewifi_cb:1331 Found SubDocName: radio
analyze_onewifi_radio_cb:361 Radio subdoc decode success
commit_config:129 Radio 02:02:30:ec:07:94 configuration updated
commit_config:146 op class=131 already exist so updated
commit_config:146 op class=132 already exist so updated
commit_config:146 op class=133 already exist so updated
commit_config:146 op class=134 already exist so updated
commit_config:146 op class=135 already exist so updated
commit_config:146 op class=136 already exist so updated
commit_config:155 op class=134 already exist so updated ID = 1
build_candidates:454 Operating Channel Report build candidate MAC=02:02:30:ec:07:94
submitted command for orchestration
send_operating_channel_report_msg:895 Operating Channel Report msg send for 02:02:30:ec:07:94
process_state:1976 operating_channel_report_msg send
handle_channel_scan_params:669: Scan Parameters received
[onewifi_em_agent] 09/16/2025 - 05:38:42.065302 :em_agent.cpp:693: INFO: Radio: 02:02:10:ec:07:92 Num of Op Classes: 3
Op Class: 81 Channels: 3 6 9
Op Class: 115 Channels: 36 40 44 48 149 153 157 161 165
Op Class: 135 Channels: 1
[onewifi_em_agent] 09/16/2025 - 05:38:42.065376 :em_agent.cpp:728: INFO: Sending channel scan request to: Device.WiFi.EM.ChannelScanRequest
[onewifi_em_agent] 09/16/2025 - 05:38:42.066739 :em_agent.cpp:734: INFO: Sent channel scan request to bus
handle_channel_scan_params:669: Scan Parameters received
[onewifi_em_agent] 09/16/2025 - 05:38:42.066790 :em_agent.cpp:693: INFO: Radio: 02:02:20:ec:07:93 Num of Op Classes: 3
Op Class: 81 Channels: 3 6 9
Op Class: 115 Channels: 36 40 44 48 149 153 157 161 165
Op Class: 135 Channels: 1
[onewifi_em_agent] 09/16/2025 - 05:38:42.066810 :em_agent.cpp:728: INFO: Sending channel scan request to: Device.WiFi.EM.ChannelScanRequest
[onewifi_em_agent] 09/16/2025 - 05:38:42.067638 :em_agent.cpp:734: INFO: Sent channel scan request to bus
handle_policy_cfg_req:486 Recvd policy for radio 02:02:30:ec:07:94
refresh_onewifi_subdoc:976 Policy subdoc encode success {
"Version": "1.0",
"SubDocName": "Easymesh Config",
"WifiEMConfig": [{
"Policy": {
"AP Metrics Reporting Policy": {
"Interval": 60,
"Managed Client Marker": ""
},
"Local Steering Disallowed Policy": {
"Disallowed STA": []
},
"BTM Steering Disallowed Policy": {
"Disallowed STA": []
},
"Backhaul BSS Configuration Policy": {
"BSSID": "",
"Profile-1 bSTA Disallowed": false,
"Profile-2 bSTA Disallowed": true
},
"Channel Scan Reporting Policy": {
"Report Independent Channel Scans": 0
},
"Radio Specific Metrics Policy": [{
"ID": "02:02:30:ec:07:94",
"STA RCPI Threshold": 120,
"STA RCPI Hysteresis": 5,
"AP Utilization Threshold": 60,
"STA Traffic Stats": true,
"STA Link Metrics": true,
"STA Status": false
}]
}
}]
}
refresh_onewifi_subdoc:993 Policy subdoc send successfull
handle_channel_scan_params:669: Scan Parameters received
[onewifi_em_agent] 09/16/2025 - 05:38:45.077228 :em_agent.cpp:693: INFO: Radio: 02:02:30:ec:07:94 Num of Op Classes: 3
Op Class: 81 Channels: 3 6 9
Op Class: 115 Channels: 36 40 44 48 149 153 157 161 165
Op Class: 135 Channels: 1
[onewifi_em_agent] 09/16/2025 - 05:38:45.077289 :em_agent.cpp:728: INFO: Sending channel scan request to: Device.WiFi.EM.ChannelScanRequest
[onewifi_em_agent] 09/16/2025 - 05:38:45.078301 :em_agent.cpp:734: INFO: Sent channel scan request to bus
find_em_for_msg_type:1578: Received client cap query: found radio for bss:02:02:21:ec:07:97
[onewifi_em_agent] 09/16/2025 - 05:38:47.065576 :em_capability.cpp:383: INFO: send_client_cap_report_msg for controller mac address:02:01:00:ec:07:9e
send_client_cap_report_msg:453: Client Capablity report Send Successful for sta:02:02:23:fe:44:5f
find_em_for_msg_type:1578: Received client cap query: found radio for bss:02:02:21:ec:07:97
[onewifi_em_agent] 09/16/2025 - 05:38:47.067133 :em_capability.cpp:383: INFO: send_client_cap_report_msg for controller mac address:02:01:00:ec:07:9e
send_client_cap_report_msg:453: Client Capablity report Send Successful for sta:02:02:23:fe:44:5f
find_em_for_msg_type:1578: Received client cap query: found radio for bss:02:02:21:ec:07:97
[onewifi_em_agent] 09/16/2025 - 05:38:47.077407 :em_capability.cpp:383: INFO: send_client_cap_report_msg for controller mac address:02:01:00:ec:07:9e
send_client_cap_report_msg:453: Client Capablity report Send Successful for sta:02:02:23:fe:44:5f
find_em_for_msg_type:1578: Received client cap query: found radio for bss:02:02:21:ec:07:97
[onewifi_em_agent] 09/16/2025 - 05:38:48.065597 :em_capability.cpp:383: INFO: send_client_cap_report_msg for controller mac address:02:01:00:ec:07:9e
send_client_cap_report_msg:453: Client Capablity report Send Successful for sta:02:02:23:fe:44:5f
find_em_for_msg_type:1578: Received client cap query: found radio for bss:02:02:21:ec:07:97
[onewifi_em_agent] 09/16/2025 - 05:38:48.077529 :em_capability.cpp:383: INFO: send_client_cap_report_msg for controller mac address:02:01:00:ec:07:9e
send_client_cap_report_msg:453: Client Capablity report Send Successful for sta:02:02:23:fe:44:5f
analyze_ap_metrics_report:868: Enter
translate_and_decode_onewifi_subdoc:928: Enter
translate_and_decode_onewifi_subdoc:948 AP Metrics Report decode success
Submitted AP Metrics report cmd for orch
is_cmd_type_renew_in_progress:268: Command of type: 43 actively executing
analyze_ap_metrics_report:868: Enter
translate_and_decode_onewifi_subdoc:928: Enter
get_sta_info:2428: key=02:02:23:fe:44:5f@02:02:21:ec:07:97@02:02:20:ec:07:93
get_sta_info:2435: sta: 02:02:23:fe:44:5f found in Consolidated Map
translate_and_decode_onewifi_subdoc:948 AP Metrics Report decode success
Submitted AP Metrics report cmd for orch
create_ap_metrics_tlv:1264 Creating ap response for bssid: 02:02:10:ec:07:92
create_ap_metrics_tlv:1264 Creating ap response for bssid: 02:02:11:ec:07:95
create_ap_metrics_tlv:1264 Creating ap response for bssid: 02:02:12:ec:07:96
send_ap_metrics_response:989: AP Metrics Response send success
create_ap_metrics_tlv:1264 Creating ap response for bssid: 02:02:20:ec:07:93
create_ap_metrics_tlv:1264 Creating ap response for bssid: 02:02:21:ec:07:97
create_ap_metrics_tlv:1264 Creating ap response for bssid: 02:02:22:ec:07:98
create_ap_metrics_tlv:1264 Creating ap response for bssid: 00:00:00:00:00:00
Failed TLV [1]: 17.2.73 of Wi-Fi Easy Mesh 5.0
send_ap_metrics_response:980: AP Metrics Response validation failed for
�
send_ap_metrics_response:989: AP Metrics Response send success
analyze_ap_metrics_report:868: Enter
translate_and_decode_onewifi_subdoc:928: Enter
translate_and_decode_onewifi_subdoc:948 AP Metrics Report decode success
Submitted AP Metrics report cmd for orch
create_ap_metrics_tlv:1264 Creating ap response for bssid: 02:02:30:ec:07:94
send_ap_metrics_response:989: AP Metrics Response send success
find_em_for_msg_type:1459: Found existing AL MAC:02:01:00:ec:07:ae_al
analyze_autoconfig_renew:191 Renew Radiomac = 02:02:10:ec:07:92
build_candidates:365 Renew 02:02:10:ec:07:92 added
find_em_for_msg_type:1459: Found existing AL MAC:02:01:00:ec:07:ae_al
is_cmd_type_renew_in_progress:268: Command of type: 21 actively executing
analyze_autoconfig_renew:191 Renew Radiomac = 02:02:20:ec:07:93
build_candidates:365 Renew 02:02:20:ec:07:93 added
find_em_for_msg_type:1459: Found existing AL MAC:02:01:00:ec:07:ae_al
is_cmd_type_renew_in_progress:268: Command of type: 21 actively executing
analyze_autoconfig_renew:191 Renew Radiomac = 02:02:30:ec:07:94
build_candidates:365 Renew 02:02:30:ec:07:94 added
Op Class 0: 81, max_tx_eirp: -30, channels.num: 2
cap->op_classes[0].op_class: 81, cap->op_classes[0].max_tx_eirp 226, cap->op_classes[0].channels.num 2
Op Class 1: 83, max_tx_eirp: -30, channels.num: 0
cap->op_classes[1].op_class: 12, cap->op_classes[1].max_tx_eirp 13, cap->op_classes[1].channels.num 83
Op Class 2: 84, max_tx_eirp: -30, channels.num: 2
cap->op_classes[2].op_class: 226, cap->op_classes[2].max_tx_eirp 0, cap->op_classes[2].channels.num 84
[onewifi_em_agent] 09/16/2025 - 05:39:49.203325 :em.cpp:951: INFO: Created AP Radio Basic Cap TLV for Radio:02:02:10:ec:07:92, num_bss:3, op_class_num:3, len:21
[onewifi_em_agent] 09/16/2025 - 05:39:49.203388 :em_configuration.cpp:2353: INFO: WPS Auth Flags: 0x0000
handle_state_autoconfig_renew:5228: autoconfig wsc m1 send success
find_em_for_msg_type:1459: Found existing AL MAC:02:01:00:ec:07:ae_al
find_em_for_msg_type:1471: Found matching band0 but incorrect em state 4
find_em_for_msg_type:1459: Found existing AL MAC:02:01:00:ec:07:ae_al
is_cmd_type_renew_in_progress:268: Command of type: 21 actively executing
is_cmd_type_renew_in_progress:278: Command of type: 21 actively executing for 02:02:20:ec:07:93
handle_autoconfig_renew in progress
find_em_for_msg_type:1459: Found existing AL MAC:02:01:00:ec:07:ae_al
is_cmd_type_renew_in_progress:268: Command of type: 21 actively executing
is_cmd_type_renew_in_progress:278: Command of type: 21 actively executing for 02:02:30:ec:07:94
handle_autoconfig_renew in progress
Op Class 4: 115, max_tx_eirp: -30, channels.num: 0
cap->op_classes[4].op_class: 0, cap->op_classes[4].max_tx_eirp 0, cap->op_classes[4].channels.num 0
Op Class 5: 116, max_tx_eirp: -30, channels.num: 0
cap->op_classes[5].op_class: 32, cap->op_classes[5].max_tx_eirp 47, cap->op_classes[5].channels.num 230
Op Class 6: 117, max_tx_eirp: -30, channels.num: 0
cap->op_classes[6].op_class: 145, cap->op_classes[6].max_tx_eirp 127, cap->op_classes[6].channels.num 0
Op Class 7: 118, max_tx_eirp: -30, channels.num: 0
cap->op_classes[7].op_class: 0, cap->op_classes[7].max_tx_eirp 0, cap->op_classes[7].channels.num 116
Op Class 8: 119, max_tx_eirp: -30, channels.num: 0
cap->op_classes[8].op_class: 7, cap->op_classes[8].max_tx_eirp 155, cap->op_classes[8].channels.num 149
Op Class 9: 120, max_tx_eirp: -30, channels.num: 0
cap->op_classes[9].op_class: 127, cap->op_classes[9].max_tx_eirp 0, cap->op_classes[9].channels.num 0
Op Class 10: 121, max_tx_eirp: -30, channels.num: 0
cap->op_classes[10].op_class: 0, cap->op_classes[10].max_tx_eirp 48, cap->op_classes[10].channels.num 0
Op Class 11: 122, max_tx_eirp: -30, channels.num: 0
cap->op_classes[11].op_class: 0, cap->op_classes[11].max_tx_eirp 136, cap->op_classes[11].channels.num 127
Op Class 12: 123, max_tx_eirp: -30, channels.num: 0
cap->op_classes[12].op_class: 0, cap->op_classes[12].max_tx_eirp 0, cap->op_classes[12].channels.num 0
Op Class 13: 124, max_tx_eirp: -30, channels.num: 0
cap->op_classes[13].op_class: 192, cap->op_classes[13].max_tx_eirp 103, cap->op_classes[13].channels.num 230
Op Class 14: 125, max_tx_eirp: -30, channels.num: 2
cap->op_classes[14].op_class: 145, cap->op_classes[14].max_tx_eirp 127, cap->op_classes[14].channels.num 0
Op Class 15: 126, max_tx_eirp: -30, channels.num: 0
cap->op_classes[15].op_class: 0, cap->op_classes[15].max_tx_eirp 0, cap->op_classes[15].channels.num 46
Op Class 16: 127, max_tx_eirp: -30, channels.num: 1
cap->op_classes[16].op_class: 78, cap->op_classes[16].max_tx_eirp 6, cap->op_classes[16].channels.num 0
Op Class 17: 128, max_tx_eirp: -30, channels.num: 0
cap->op_classes[17].op_class: 0, cap->op_classes[17].max_tx_eirp 0, cap->op_classes[17].channels.num 0
Op Class 18: 129, max_tx_eirp: -30, channels.num: 0
cap->op_classes[18].op_class: 0, cap->op_classes[18].max_tx_eirp 200, cap->op_classes[18].channels.num 0
Op Class 19: 130, max_tx_eirp: -30, channels.num: 0
cap->op_classes[19].op_class: 0, cap->op_classes[19].max_tx_eirp 0, cap->op_classes[19].channels.num 0
[onewifi_em_agent] 09/16/2025 - 05:39:50.215395 :em.cpp:951: INFO: Created AP Radio Basic Cap TLV for Radio:02:02:20:ec:07:93, num_bss:4, op_class_num:16, len:59
[onewifi_em_agent] 09/16/2025 - 05:39:50.215476 :em_configuration.cpp:2353: INFO: WPS Auth Flags: 0x0000
handle_state_autoconfig_renew:5228: autoconfig wsc m1 send success
update_scan_results:2791 creating new scan result
analyze_scan_result:782 scanner mac: 02:02:30:ec:07:94 - analyze_scan_result subdoc decode success
Op Class 21: 131, max_tx_eirp: 23, channels.num: 0
cap->op_classes[21].op_class: 0, cap->op_classes[21].max_tx_eirp 16, cap->op_classes[21].channels.num 172
Op Class 22: 132, max_tx_eirp: 23, channels.num: 0
cap->op_classes[22].op_class: 149, cap->op_classes[22].max_tx_eirp 127, cap->op_classes[22].channels.num 0
Op Class 23: 133, max_tx_eirp: 23, channels.num: 0
cap->op_classes[23].op_class: 0, cap->op_classes[23].max_tx_eirp 0, cap->op_classes[23].channels.num 136
Op Class 24: 134, max_tx_eirp: 23, channels.num: 1
cap->op_classes[24].op_class: 104, cap->op_classes[24].max_tx_eirp 101, cap->op_classes[24].channels.num 145
Op Class 25: 135, max_tx_eirp: -30, channels.num: 0
cap->op_classes[25].op_class: 127, cap->op_classes[25].max_tx_eirp 0, cap->op_classes[25].channels.num 0
Op Class 26: 136, max_tx_eirp: 23, channels.num: 0
cap->op_classes[26].op_class: 0, cap->op_classes[26].max_tx_eirp 24, cap->op_classes[26].channels.num 0
[onewifi_em_agent] 09/16/2025 - 05:39:51.226856 :em.cpp:951: INFO: Created AP Radio Basic Cap TLV for Radio:02:02:30:ec:07:94, num_bss:1, op_class_num:6, len:27
[onewifi_em_agent] 09/16/2025 - 05:39:51.226911 :em_configuration.cpp:2353: INFO: WPS Auth Flags: 0x0000
iw dev sample o/p from ctrl and Remote Agent
root@Filogic-GW:~# iw dev phy#0 Interface wifi1.1.sta1 ifindex 31 wdev 0xa addr 02:02:21:ec:07:97 type AP/VLAN channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz 4addr: on Radios: 0 1 2 Interface mld0 ifindex 30 wdev 0x9 addr 02:02:30:ec:07:95 ssid private_ssid type AP multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 MLD with links: - link ID 1 link addr 02:02:20:ec:07:93 channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz txpower 23.00 dBm Radios: 0 1 2 Interface wifi2 ifindex 29 wdev 0x8 addr 02:02:30:ec:07:94 ssid private_ssid type AP channel 1 (5955 MHz), width: 160 MHz, center1: 6025 MHz txpower 12.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi1.3 ifindex 28 wdev 0x7 addr 02:02:23:ec:07:99 type managed txpower 27.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 4addr: on Radios: 0 1 2 Interface wifi1.2 ifindex 27 wdev 0x6 addr 02:02:22:ec:07:98 ssid iot_ssid type AP channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz txpower 23.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi1.1 ifindex 26 wdev 0x5 addr 02:02:21:ec:07:97 ssid mesh_backhaul type AP channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz txpower 23.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi1 ifindex 25 wdev 0x4 addr 02:02:20:ec:07:93 type AP multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi0.2 ifindex 24 wdev 0x3 addr 02:02:12:ec:07:96 ssid iot_ssid type AP channel 6 (2437 MHz), width: 20 MHz, center1: 2437 MHz txpower 27.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi0.1 ifindex 23 wdev 0x2 addr 02:02:11:ec:07:95 ssid mesh_backhaul type AP channel 6 (2437 MHz), width: 20 MHz, center1: 2437 MHz txpower 27.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi0 ifindex 22 wdev 0x1 addr 02:02:10:ec:07:92 ssid private_ssid type AP channel 6 (2437 MHz), width: 20 MHz, center1: 2437 MHz txpower 27.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 root@Filogic-GW:~#
root@Filogic-GW:~# iw dev phy#0 Interface mld0 ifindex 22 wdev 0x9 addr 02:02:30:fe:44:5b ssid private_ssid type AP multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 MLD with links: - link ID 1 link addr 02:02:20:fe:44:59 channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz txpower 23.00 dBm Radios: 0 1 2 Interface wifi2 ifindex 21 wdev 0x8 addr 02:02:30:fe:44:5a ssid private_ssid type AP channel 5 (5975 MHz), width: 160 MHz, center1: 6025 MHz txpower 12.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi1.3 ifindex 20 wdev 0x7 addr 02:02:23:fe:44:5f ssid mesh_backhaul type managed channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz txpower 23.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 4addr: on Radios: 0 1 2 Interface wifi1.2 ifindex 19 wdev 0x6 addr 02:02:22:fe:44:5e ssid iot_ssid type AP channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz txpower 23.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi1.1 ifindex 18 wdev 0x5 addr 02:02:21:fe:44:5d ssid mesh_backhaul type AP channel 36 (5180 MHz), width: 80 MHz, center1: 5210 MHz txpower 23.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi1 ifindex 17 wdev 0x4 addr 02:02:20:fe:44:59 type AP multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi0.2 ifindex 16 wdev 0x3 addr 02:02:12:fe:44:5c ssid iot_ssid type AP channel 6 (2437 MHz), width: 20 MHz, center1: 2437 MHz txpower 27.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi0.1 ifindex 15 wdev 0x2 addr 02:02:11:fe:44:5b ssid mesh_backhaul type AP channel 6 (2437 MHz), width: 20 MHz, center1: 2437 MHz txpower 27.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 Interface wifi0 ifindex 14 wdev 0x1 addr 02:02:10:fe:44:58 ssid private_ssid type AP channel 6 (2437 MHz), width: 20 MHz, center1: 2437 MHz txpower 27.00 dBm multicast TXQ: qsz-byt qsz-pkt flows drops marks overlmt hashcol tx-bytes tx-packets 0 0 0 0 0 0 0 0 0 Radios: 0 1 2 root@Filogic-GW:~#
Create following file to get onewifi debug and info logs and check corresponding files in /tmp folder.
touch /nvram/wifiHalDbg touch /nvram/wifiCtrlDbg touch /nvram/wifiMgrDbg touch /nvram/wifiLibhostapDbg touch /nvram/wifiWebConfigDbg touch /nvram/wifiPasspointDbg touch /nvram/wifiDMCLI touch /nvram/wifiDbDbg touch /nvram/wifiPsm touch /nvram/wifiHalStatsDbg
EasyMesh(unified-wifi-mesh) Build instructions and Validation steps - Kirkstone
DISCLAIMER: Please note that the use of the RDK Wiki is subject to its Privacy Policy & Terms of Use. In addition, this Wiki may be accessed by all RDK licensees and their contractors.
Powered by a free Atlassian Confluence Open Source Project License granted to RDKCentral. Evaluate Confluence today.
1 Comment
Chandrakanth Pokuru
Jul 22, 2025logic-GW:/mnt/chandra/maria# mysql -u root -p -e "CREATE USER 'bpi'@'localhost' IDENTIFIED BY 'root';"
Enter password:
root@Filogic-GW:/mnt/chandra/maria#
root@Filogic-GW:/mnt/chandra/maria# mysql -u root -p -e "ALTER USER 'bpi'@'localhost' IDENTIFIED BY 'root';"
Enter password:
root@Filogic-GW:/mnt/chandra/maria# mysql -u root -p -e "GRANT ALL PRIVILEGES ON *.* TO 'bpi'@'localhost' IDENTIFIED BY 'root';"
Enter password:
root@Filogic-GW:/mnt/chandra/maria# mysql -u root -p -e "FLUSH PRIVILEGES;"
Enter password:
root@Filogic-GW:/mnt/chandra/maria# mysql -u root -p -e "SELECT User, Host, plugin FROM mysql.user WHERE User = 'bpi';"
Enter password:
+------+-----------+-----------------------+
| User | Host | plugin |
+------+-----------+-----------------------+
| bpi | localhost | mysql_native_password |
+------+-----------+-----------------------+
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p -e "SELECT USER(), CONNECTION_ID();"
Enter password:
ERROR 1045 (28000): Access denied for user 'bpi'@'localhost' (using password: NO)
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p -e "SELECT USER(), CONNECTION_ID();"
Enter password:
+---------------+-----------------+
| USER() | CONNECTION_ID() |
+---------------+-----------------+
| bpi@localhost | 17 |
+---------------+-----------------+
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p -e "CREATE DATABASE OneWifiMesh;"
Enter password:
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p -e "SHOW DATABASES;"
Enter password:
ERROR 1045 (28000): Access denied for user 'bpi'@'localhost' (using password: NO)
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p -e "SHOW DATABASES;"
Enter password:
+--------------------+
| Database |
+--------------------+
| OneWifiMesh |
| ecommerce_db |
| information_schema |
| my_test_db |
| mysql |
| performance_schema |
| sys |
| test |
+--------------------+
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p -e "USE OneWifiMesh; SHOW TABLES; SELECT DATABASE();"
Enter password:
+-------------+
| DATABASE() |
+-------------+
| OneWifiMesh |
+-------------+
root@Filogic-GW:/mnt/chandra/maria#
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p -e "SHOW DATABASES;"
Enter password:
+--------------------+
| Database |
+--------------------+
| OneWifiMesh |
| ecommerce_db |
| information_schema |
| my_test_db |
| mysql |
| performance_schema |
| sys |
| test |
+--------------------+
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p OneWifiMesh -e "SELECT DATABASE(); SHOW TABLES;"
Enter password:
ERROR 1045 (28000): Access denied for user 'bpi'@'localhost' (using password: NO)
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p OneWifiMesh -e "SELECT DATABASE(); SHOW TABLES;"
Enter password:
+-------------+
| DATABASE() |
+-------------+
| OneWifiMesh |
+-------------+
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -p -e "SHOW GRANTS FOR 'bpi'@'localhost';"
Enter password:
+---------------------------------------------------------------------------------------------------------------------+
| Grants for bpi@localhost |
+---------------------------------------------------------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO `bpi`@`localhost` IDENTIFIED BY PASSWORD '*81F5E21E35407D884A6CD4A731AEBFB6AF209E1B' |
+---------------------------------------------------------------------------------------------------------------------+
root@Filogic-GW:/mnt/chandra/maria#
--------to bypass password
6:44Chandrakanth Pokuru
ia#
root@Filogic-GW:/mnt/chandra/maria# export MYSQL_PWD=root
root@Filogic-GW:/mnt/chandra/maria#
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -e "SHOW DATABASES;"
+--------------------+
| Database |
+--------------------+
| OneWifiMesh |
| ecommerce_db |
| information_schema |
| my_test_db |
| mysql |
| performance_schema |
| sys |
| test |
+--------------------+
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi -e "USE OneWifiMesh; SHOW TABLES;"
root@Filogic-GW:/mnt/chandra/maria# mysql -u bpi OneWifiMesh -e "SELECT DATABASE(); SHOW TABLES;"
+-------------+
| DATABASE() |
+-------------+
| OneWifiMesh |
+-------------+
root@Filogic-GW:/mnt/chandra/maria#
add a script file and invoke it as pre_init in controller side