帮我分析下,存在什么问题:root@ZOWIEBOX:/mnt/appsconfig# hostapd ./hostapd.conf wlan1: interface state UNINITIALIZED->COUNTRY_UPDATE ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel [ 2936.073666] [dhd] [wlan1] wl_cfg80211_del_station : Disconnect STA : ff:ff:ff:ff:ff:ff scb_val.val 3 wlan1: IEEE 802.11 Configured channel (0) or frequency (0) (secondary_channel=1) not found from the channel list of the current mode (1) IEEE 802.11g wlan1: IEEE 802.11 Hardware does not support configured channel Could not select hw_mode and channel. (-3) wlan1: interface state COUNTRY_UPDATE->DISABLED wlan1: AP-DISABLED wlan1: interface state DISABLED->DISABLED wlan1: AP-DISABLED wlan1: CTRL-EVENT-TERMINATING hostapd_free_hapd_data: Interface wlan1 wasn't started nl80211: deinit ifname=wlan1 d[ 2936.122737] [dhd] [wlan1] wl_cfg80211_add_del_bss : wl bss 2 bssidx:1 isabled_11b_rates=0
时间: 2024-03-10 17:43:25 浏览: 264
Errno 14 curl#37 - "Couldn't open file /mnt/repodata/repomd.xml
主要问题出现在以下两行错误信息中:
```
wlan1: IEEE 802.11 Configured channel (0) or frequency (0) (secondary_channel=1) not found from the channel list of the current mode (1) IEEE 802.11g
wlan1: IEEE 802.11 Hardware does not support configured channel Could not select hw_mode and channel. (-3)
```
这两行错误信息表明,hostapd 无法找到被配置的信道或频率,并且硬件也不支持被配置的信道或频率。这可能是因为 hostapd.conf 中设置的信道与硬件不兼容。你可以尝试修改 hostapd.conf 中的信道设置,或者检查硬件是否支持所需的信道。另外,ACS 被禁用也可能导致此问题。如果你需要使用 ACS,你需要重新构建 hostapd 并启用 CONFIG_ACS。
阅读全文