diff --git a/libs/tip_2x/controller.py b/libs/tip_2x/controller.py index 50daf1390..50cbf88aa 100644 --- a/libs/tip_2x/controller.py +++ b/libs/tip_2x/controller.py @@ -2641,20 +2641,20 @@ class UProfileUtility: base_radio_config_2g = { "band": "2G", "country": "US", - "channel-mode": "HE", + "channel-mode": "EHT", "channel": "auto" } base_radio_config_5g = { "band": "5G", "country": "US", "allow-dfs": False, - "channel-mode": "HE", + "channel-mode": "EHT", "channel": "auto" } base_radio_config_6g = { "band": "6G", "country": "US", - "channel-mode": "HE", + "channel-mode": "EHT", "channel": "auto" } for band in radio_config: diff --git a/libs/tip_2x/tip_2x.py b/libs/tip_2x/tip_2x.py index 3742d9179..d1d2c87bb 100644 --- a/libs/tip_2x/tip_2x.py +++ b/libs/tip_2x/tip_2x.py @@ -681,11 +681,13 @@ class tip_2x: else: band = "6G" iwinfo_bssid_data[o[i - 1]] = [o[i + 1].replace('"', ''), o[i + 4], band] + logging.info(f"iwinfo_bssid_data:{iwinfo_bssid_data}") for p in iwinfo_bssid_data: for q in ssid_info_sdk: if iwinfo_bssid_data[p][0] == q[0] and iwinfo_bssid_data[p][2] == q[3]: q.append(iwinfo_bssid_data[p][1]) ssid_info_sdk.append(channel_info) + logging.info(f"ssid_info_sdk:{ssid_info_sdk}") return ssid_info_sdk def get_dut_version(self): diff --git a/tests/e2e/basic/dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py b/tests/e2e/basic/dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py index 972dad525..09b5bb45a 100644 --- a/tests/e2e/basic/dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py +++ b/tests/e2e/basic/dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py @@ -21,7 +21,7 @@ setup_params_general1 = { "band": "5G", "country": "US", "allow-dfs": True, - "channel-mode": "VHT", + "channel-mode": "EHT", "channel-width": 80, "channel": 52 } @@ -78,7 +78,7 @@ setup_params_general2 = { "band": "5G", "country": "US", "allow-dfs": True, - "channel-mode": "VHT", + "channel-mode": "EHT", "channel-width": 80, "channel": 100 } @@ -135,7 +135,7 @@ setup_params_general11 = { "band": "5G", "country": "US", "allow-dfs": True, - "channel-mode": "VHT", + "channel-mode": "EHT", "channel-width": 80, "channel": 132 } diff --git a/tests/e2e/basic/performance_tests/AX_capacity/wpa2_personal/test_bridge_mode.py b/tests/e2e/basic/performance_tests/AX_capacity/wpa2_personal/test_bridge_mode.py index 60111f37e..d5c4b4d9e 100644 --- a/tests/e2e/basic/performance_tests/AX_capacity/wpa2_personal/test_bridge_mode.py +++ b/tests/e2e/basic/performance_tests/AX_capacity/wpa2_personal/test_bridge_mode.py @@ -17,6 +17,7 @@ setup_params_general_5G = { "5G": { "band": "5G", "channel-width": 80, + "channel-mode": "HE", "channel": 36 } }, @@ -208,6 +209,7 @@ setup_params_general_2G = { "2G": { "band": "2G", "channel-width": 20, + "channel-mode": "HE", "channel": 6 } }, diff --git a/tests/e2e/basic/performance_tests/peak_throughput_tests/bridge_mode/wpa3_personal_encryption/test_peak_throughput_wpa3_160Mhz_6g.py b/tests/e2e/basic/performance_tests/peak_throughput_tests/bridge_mode/wpa3_personal_encryption/test_peak_throughput_wpa3_160Mhz_6g.py index 1a45404e8..0d215dd32 100644 --- a/tests/e2e/basic/performance_tests/peak_throughput_tests/bridge_mode/wpa3_personal_encryption/test_peak_throughput_wpa3_160Mhz_6g.py +++ b/tests/e2e/basic/performance_tests/peak_throughput_tests/bridge_mode/wpa3_personal_encryption/test_peak_throughput_wpa3_160Mhz_6g.py @@ -22,7 +22,9 @@ setup_params_general = { "rf": { "6G": { 'band': '6G', - 'channel-width': 160} + 'channel-width': 160, + 'channel-mode':'HE' + } }, "radius": False }