3
2

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.

ネットワーク内にいるMACアドレスを取得する。

Last updated at Posted at 2018-09-19

社内で出勤管理したくて、社内ネットワーク内にいるMACアドレスを掻き集めたい。

やったこと

MACのターミナルで下記を実行
arp -a

おぉ、取れた。

でも、MACアドレスを収集したいのはこのマシンではなく、Linuxをいれたラズパイ。
このコマンド使えない…

なので、下記を実行

ip n

おぉ、取れん…
nはneigh(neighbor:隣の方)の略。
MACでipコマンドを使う場合はインストールが必要。

brew tap brona/iproute2mac
brew install iproute2mac

Homebrewが入ってる前提。

あとはこのコマンドをpythonで実行して結果をリストにいれてぐるぐるしつつsplitすれば…
できると思われる。

3
2
3

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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?