14
15

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のIPが変わった時に何事もなかったかのようにsshする方法

Posted at

nmapが超便利です。

port 22番でsshする設定にしているなら

nmap -p22 192.168.0.1/24

でリストが出ます。

MacならインストールはHomebrewで簡単。

brew install nmap

もしひとつしかないなら以下のようにしてもいいかもですね。

ssh pi@`nmap -p22 192.168.0.1/24 | grep -B4 open | grep Nmap | cut -d' ' -f5`
14
15
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
14
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?