2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【RaspberryPi】Wi-Fi接続設定

Last updated at Posted at 2020-08-02

#はじめに
私はIoT開発を主とした部署に所属しています。
RaspberryPiで簡単なIoTシステムの構築し、検証をしています。

使い始めてある程度システムが構築できたので、無線でデータ収集しようとした思ったが、つながらない。。。

調べると起動後に自動でWi-Fiに接続できてない。
あーそういうこと。勝手に記録してくれないのね。

今後設定を忘れないように記事にしておきます。

#Wi-Fi設定
ターミナルで「wpa_supplicant.conf」を修正。

sudo nano /boot/wpa_supplicant.conf

下記を追記する。

ctrl_interface=DIR=/var/run/wpa_supplicant
GROUP=netdev
update_config=1
country=JP
network={
	ssid="接続したいSSID"
	psk="SSIDのパスワード"
}

再起動。はいこれだけ。

※2020/08/06追記
平文でパスワードを記載しとくのはまずいですね。
暗号化して登録しましょう。

wpa_passphraseコマンドでパスワードを暗号化する。
出力された暗号化パスワードをpskに記載する。

wpa_passphrase "SSID" "パスワード"

#IP固定化
ついでにIPの固定化もする。
「dhcpcd.conf」を修正。

sudo nano /etc/dhcpcd.conf

最終行に下記を追加する。IPは適当な値を記載しています。
※wlan0:無線用 eth0:有線用

interface wlan0 
static ip_address=192.168.1.45/24
static routers=192.168.1.1 
static domain_name_servers=192.168.1.1

interface eth0 
static ip_address=192.168.1.45/24
static routers=192.168.1.1 
static domain_name_servers=192.168.1.1

再起動。

#最後に
これだけで色々見返して時間食ったな~
つまらない記事で申し訳ないです。
頑張ろう。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?