私はRaspberry Piを使って組み込みシステムを構築し、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
*
>