Pegue o endereço MAC usando o udev no RHEL?

1

De alguma forma, o script ifcfg para eth0 e eth1 no meu servidor tem o mesmo 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

Como posso usar o udev para obter o MAC correto do hardware?

    
por Lukasz 16.02.2012 / 20:49

1 resposta

1

Após o boot, rode o DMESG para ver o addy MAC correto e edite eth0 & eth1; ifconfig eth0 hw ether xx: xx: xx: xx: xx

    
por 16.02.2012 / 21:16