0
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?

More than 1 year has passed since last update.

ローカルIPアドレスとMACアドレスの確認

Posted at

デバイスに割り当てられたIPアドレスの確認

先日、使おうとしたIPアドレスがエアコンにとられていて困りましたので、
IPアドレス確認に関する備忘録。

結論:arp -a

arpテーブルを見る前にpingをおくるのを忘れずに。
確認したいセグメント宛てに、一気にpingをおくります。

for /l %i in (0,1,255) do (ping -w 1 -n 1 192.168.XXX.%i)

からの

arp -a

これで、確認完了~!

以上

0
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
0
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?