1
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.

ラズパイの引っ越し。wifi設定を変更する。

Posted at

ルータを変えるときの作業録。今後の引っ越しとかの時に絶対困るのでメモ。
もしかしたら最初の作業は有線つないでからでもいいのかも

まずは既存のwifiに繋いでる状態でsshでラズパイちゃん(3B)に侵入し、以下からwifiの設定を変更する。(sudo権限必要)

/etc/wpa_supplicant/wpa_supplicant.conf
country=JP
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
    ssid="新しいssid"
    psk="新しいpasswd"
}

旧wifiを終了し、有線LANでラズパイとルータを繋ぐ。

sshする側のterminal
$ arp -a

arpはipアドレスとMACアドレスを紐付けるテーブル。

ここからラズパイのipを割り出し、sshで侵入。無線LANでのIPを確認。

sshする側のterminal
$ ssh -p ポート番号 ユーザ名@x.x.x.x
ラズパイちゃん
$ ifconfig

wlan0inetに対応するipがそれに当たる。(eth0は有線。)

有線を抜き、無線接続に切り替わるので上記でわかったipにsshで入る。

sshする側のterminal
$ ssh -p ポート番号 ユーザ名@x.x.x.x
1
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
1
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?