モニタを無しでraspberryPIを使う場合、リモート元のPCからraspberryPIのIPアドレスを知る必要があります。そんな時はarpを利用してraspberryPIのIPアドレスを取得しましょう。
[linux] arp-scanを使う
linuxの場合は、arp-scanをインストールします。
apt install arp-scan
arp-scanを実行します。
arp-scan -l
192.168.1.1 58:52:8a:60:fe:98 Mitsubishi Electric Corporation
192.168.1.15 b8:27:eb:5c:c9:3f Rasberry Pi Foundation
raspberryPIはb8:27:eb〜が含まれているので特定しやすいです。
[Mac] arpを使う
Macの場合は、linuxと少し異なりますがarpコマンドを使用します。
arp -a
? (192.168.1.1) at 58:52:8a:60:fe:98 on en0 ifscope [ethernet]
? (192.168.1.15) at b8:27:eb:5c:c9:3f on en0 ifscope [ethernet]
linuxの時と同じく、raspberryPIはb8:27:eb〜が含まれているのでraspberryPIのプライベートIPは192.168.1.15だということがわかりますね。