Redhat

在 RHEL 上使用 udev 獲取 mac 地址?

  • February 16, 2012

不知何故,我伺服器上 eth0 和 eth1 的 ifcfg 腳本中包含相同的 HWAddr:

# Intel Corporation 82571EB Gigabit Ethernet Controller
DEVICE=eth0
SLAVE=yes
MASTER=bond0
HWADDR=00:1b:21:ac:ae:d2
ONBOOT=no
BOOTPROTO=none
TYPE=Ethernet

# Intel Corporation 82571EB Gigabit Ethernet Controller
DEVICE=eth1
SLAVE=yes
MASTER=bond0
HWADDR=00:1b:21:ac:ae:d2
ONBOOT=no
BOOTPROTO=none
TYPE=Ethernet

如何使用 udev 從硬體獲取正確的 MAC?

啟動後執行 DMESG 以查看正確的 MAC 地址,然後編輯 eth0 & eth1; ifconfig eth0 hw ether xx:xx:xx:xx:xx

引用自:https://serverfault.com/questions/360959