LoginSignup
0
3

More than 5 years have passed since last update.

VMware仮想マシンのNICのMACアドレスベンダーコード

Posted at
以下の通り。

自動生成するか、手動生成するかで、プレフィックスが異なるらしい。

No. type MAC Address
1 auto 00:0C:29:xx:xx:xx
2 manual 00:50:56:xx:xx:xx
VMware上にCentOS7をデプロイする時なんかは、以下snippetを。
if (ip addr | egrep -i "00:0C:29:.+:.+:.+ |00:50:56:.+:.+:.+" --quiet) && (! rpm -q open-vm-tools --quiet)
then
    yum -y install open-vm-tools
fi
おわり。
0
3
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
3