AI Tools from Intel
Find answers to your toolkit installation, configuration, and get-started questions.

How to modify the channel/bandwidth/protocal settings on AX210

Zack1991
Beginner
727 Views

Hi Developers,

 

I am a newbie here, I am helping customers to set up their testbed to test Wi-Fi 6 with Intel AX210 card.

 

One of their requirements is to fix the 802.11 mode, for example, I would like to test 11ac or 11n with a Wi-Fi 6 AP on AX210, the OS I am using is Ubuntu22.04, is anyone know how to do that with command?

 

Also the same question for Channel/Bandwidth settings.

 

Please let me know if you have any question.

 

Thank you for the help~~~

 

0 Kudos
4 Replies
TylerZach900
New Contributor I
553 Views

Hi Zack

Welcome to the community! It's great to see you're helping customers with their Wi-Fi 6 setups. To fix the 802.11 mode and set the channel/bandwidth on an Intel AX210 card running on Ubuntu 22.04, you can use the iw command, which is a powerful tool for managing wireless devices.

 

Here's how you can set the 802.11 mode for testing:

  1. Check the current settings:
    • iw dev wlan0 info
  2. Set the Wi-Fi mode (replace wlan0 with your actual Wi-Fi interface name):
    • For 802.11ac:
      • iw dev wlan0 set type managed
        iw wlan0 set freq <frequency> HT40+
    • For 802.11n:
      • iw dev wlan0 set type managed
        iw wlan0 set freq <frequency> HT20

Replace <frequency> with the frequency corresponding to the channel you want to use.

 

  1. For channel and bandwidth settings, you can specify the channel width alongside the frequency:
    • 20 MHz bandwidth (HT20):
      • iw wlan0 set freq <frequency> HT20
    • 40 MHz bandwidth (HT40+ or HT40-);
      • iw wlan0 set freq <frequency> HT40+

        or

        iw wlan0 set freq <frequency> HT40-

    • 80 MHz bandwidth (VHT80):
      • iw wlan0 set freq <frequency> VHT80

 

Please keep in mind that you'll need to replace <frequency> with the specific frequency for the channel you're testing. Also, make sure that the channel and frequency are supported by the AX210 card and are legal in your region.

 

Remember to check the regulatory settings and ensure they match the requirements for the channels you're testing. You can view the current regulatory domain with:

> iw reg get

And set it with:

> sudo iw reg set <country_code>

Replace <country_code> with the appropriate ISO country code.

 

I hope this helps you set up the testbed for your customers. 

 

Tyler

0 Kudos
Zack1991
Beginner
541 Views

Thank you Tyler for the responses, I will try them out and keep you posted.

 

Zack

Best Regards

0 Kudos
그래요ITech
New Contributor I
510 Views

Hello there Zack and Tyler

 

I have the same concern setting up the Wi-Fi 6 with Intel AX210 card. 

I tried these steps given by Tyler'

Set the Wi-Fi mode:

  • For 802.11ac:
    • iw dev wlan0 set type managed
      iw wlan0 set freq <frequency> HT40+
  • For 802.11n:
    • iw dev wlan0 set type managed
      iw wlan0 set freq <frequency> HT20

 

This setting properly configures my WiFi card.

 

Thanks

Max

 

0 Kudos
BobOne
Beginner
453 Views

hello,Zack and Tyler and Max

I try to change the mode of STA by following these steps,(Ubuntu23.10,Intel BE200 NIC)

------------------------

Set the Wi-Fi mode:

  • For 802.11ac:
    • iw dev wlan0 set type managed
      iw wlan0 set freq <frequency> HT40+
  • For 802.11n:
    • iw dev wlan0 set type managed
      iw wlan0 set freq <frequency> HT20

--------------------------

“iw wlan0 set freq <frequency> HT40+”,this command  was fail and return "device busy":

 

root@xxxxx:~# iw wlp8s0f0 set freq 2412 HT20
command failed: Device or resource busy (-16)

 

I try to stop the wpa_supplicant/networkmanaged /shutdown the wifi, All have no effect.

Do any of you have any suggestions to solve the problem?

 

Thanks

Bob

0 Kudos
Reply