使用 hostapd 进行 WiFi 循环

使用 hostapd 进行 WiFi 循环

我正在使用 hostapd 来广播我的无线网络。我正在循环浏览配置文件列表。我第一次能够创建无线网络,但是当我尝试循环到下一个网络时,它会出现以下错误:

root@RaspberryPi:~# hostapd -B /tmp/hostapd.conf
Configuration file: /tmp/hostapd.conf
Failed to update rate sets in kernel module
Using interface wlan0 with hwaddr 4e:53:50:4f:4f:4e and ssid 'WiFi'
ctrl_iface exists and seems to be in use - cannot override it
Delete 'wlan0/wlan0' manually if it is not used anymore
Failed to setup control interface
wlan0: Unable to setup interface.

这里是广播停止的地方。我总是遇到内核模块错误,但它第一次运行时没有问题。所以一定是另一部分。不幸的是我不明白这个错误ctrl_iface exists and seems to be in use - cannot override it以及它之后会发生什么。我很难找到答案,所以希望你们能帮助我。如何成功循环浏览配置文件列表?

答案1

我找到了解决方案。它工作的唯一要求是在给出下一个 hostapd 命令之前执行以下命令:

pkill -15 hostapd

相关内容