15
12

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 5 years have passed since last update.

Raspberry Pi 3 で固定IPアドレスを設定する(Wifi)

Posted at

RaspberryPi3にてWifiでネットワークに接続しているときの固定IPアドレスの設定方法

[RaspberryPi IPアドレス 設定]とかで検索してそのままコピペ的にやったけど上手く行かったので、一応メモ。

まずは、/etc/dhcpcd.confを開きます

$ sudo nano /etc/dhcpcd.conf

nanoのかわりにviなどでもいいですが、直感的に編集できるので。。

それで、ファイルの一番下に以下を追記

/etc/dhcpcd.conf
interface wlan0
static ip_address=192.168.1.255/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1

ip_address 設定したいIPアドレス
routers ルータのIPアドレス
domain_name_server こちらはDNSアドレス(8.8.8.8)などでもOKだと思う。

再起動
$ sudo reboot

以上です。

ifconfig などで確認いただければと思います。

今回の掲載した経緯

一般的にラズベリーパイのIPアドレスの設定方法を検索すると有線LANでの設定方法が出てくるのですが
RaspberryPi3だとWifiで繋げることが多いと思うので、そのままやると上手く行きません。
まあ、一番最初の行の interface のところを変更するだけなんですけどね。。
ちゃんと読めばわかるんですが、コピペでそのままやろうとして失敗してしまいました。。
コピペでやるとダメな見本ですね。

15
12
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
15
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?