1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Debian 12系Raspberry Pi OSでIPアドレスを固定する

Posted at

はじめに

比較的新しいRaspberry PI OSを使ったところ、IPアドレスの固定化の方法が変わっていたのでメモです。

設定ファイルの修正

今までは無線LANでIPアドレスを固定する場合、dhcpcd.confでIP固定の設定をしていたかと思いますが、/etc/NetworkManager/system-connections/preconfigured.nmconnection ファイルに変わっています。

ipv4セクションを下記の内容に修正します

[ipv4]
# method=auto
address1=<固定IP>/<ネットマスク(例24>,<デフォルトゲートウェイ>
dns=<DNSサーバアドレス>;
method=manual

設定の反映

設定を再読み込みさせ、コネクションをアップします。
ここで指定しているpreconfiguredは設定ファイルのファイル名です。
複数のWifiで同じ設定をする場合などはファイルごとに行う必要があります。

$ sudo nmcli connection reload
$ sudo nmcli connection up preconfigured
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?