Closed. This question is off-topic. It is not currently accepting answers. Learn more
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
我试图强制WiFi适配器在连接到同时支持2.4GHz和5GHz(WPA身份验证)的接入点时使用特定通道
我正在使用以下配置
操作系统:raspbian
型号:覆盆子PI2型号B
WiFi适配器:-EDIMAX EW-7811UTC
司机:8812AU
也尝试使用不同的WiFi适配器
WiFi适配器:华硕USB-N53
驱动器RT2800
尝试使用iwconfig,它给出SET failed on device wlan0 ; Operation not supported
也尝试过wpa_supplicant
需要为wpa_cliwpa_supplicant实用程序提供哪些额外参数,以便它只连接到特定的频带?

最佳答案

寻找你的界面

sudo iwconfig

看看你的频道
sudo iwlist {interface} channel

关闭WiFi
sudo iwconfig {interface} power off

设置所需频道
sudo iwconfig {interface} channel {channel, ex. "23"}

设置所需频率
sudo iwconfig {interface} freq {frequency, ex. "5.00G"}

打开WiFi
sudo iwconfig {interface} power on

10-08 07:56