我使用树莓派构建了一个嵌入式系统,并使用 buildroot 构建了一个自定义 Linux,我使用 wpa_supplicant 来管理 Wi-Fi 网络。一切正常,但我在获取配置文件中存储的 psk 密钥时遇到问题。当我执行命令来获取 psk 密钥时,唯一返回的是“*”
wpa_supplicant.conf:
ctrl_interface=/var/run/wpa_supplicant
update_config=1
#mem_only_psk=0
network={
ssid="Net1"
psk="12345678"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
pbss=2
auth_alg=OPEN
}
network={
ssid="Net2"
psk="12345678"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}
我尝试过的:
# wpa_cli
wpa_cli v2.6
Copyright (c) 2004-2016, Jouni Malinen <[email protected]> and contributors
This software may be distributed under the terms of the BSD license.
See README for more details.
Selected interface 'wlan0'
Interactive mode
> get_network 0 psk
*
>