托管在 Qualcomm Atheros QCA61x4A 上的网络

托管在 Qualcomm Atheros QCA61x4A 上的网络

我有一个名为 Qualcomm Atheros QCNFA364A 的新模块。我一直试图激活托管网络,但到目前为止没有成功!以下是我所做的:

netsh wlan set hostednetwork mode=allow ssid=MYONE key=12345678

The hosted network mode has been set to allow.
->The SSID of the hosted network has been successfully changed.
The user key passphrase of the hosted network has been successfully changed.
netsh wlan start hostednetwork
->The hosted network couldn't be started.
The group or resource is not in the correct state to perform the requested operation.

因此我使用 2018 版本更新了驱动程序:在此处输入图片描述

但还是没有变化!

所有网络适配器均处于活动状态,包括 Microsoft 虚拟适配器:

在此处输入图片描述

ntsh wlan show drivers output is as follow:

在此处输入图片描述

是的,我知道托管适配器不受支持。

我的问题是,为什么 Windows 的热点功能可以正常工作,因为硬件支持热点功能?

有人有任何暗示吗?

提前致谢 !

答案1

“托管网络”样式的软 AP 不再受支持。但它已被 Windows 上新的 Wi-Fi Direct 支持中的类似功能所取代,这些更新的驱动程序支持该功能。看起来您不能只使用命令来启用它netsh,而是需要一个小程序来启用它。

整个功能现在被称为“Wi-Fi Direct 传统 AP 模式”,这里有一个可启用此功能的程序的示例代码:https://github.com/microsoft/Windows-classic-samples/tree/master/Samples/WiFiDirectLegacyAP

如果您不想自己重建,您可以从这里获取一些预先构建的二进制文件:https://github.com/govert/WiFiDirectLegacyAPDemo/releases/tag/v1.0

相关内容