Is there any fast method to read the onboards NIC mac address
"faster"?
ip l sh eth0|grep link/ether|awk '{print $2}'
I know that this is possible via commands on the shell, but you can't be sure that you select the onboard NIC with that method, because when a second NIC is used in that board on PCI this one could also be eth0, and therefore you could end up with the wrong one getting copied.
I thought you could tell the vendor by looking at the MAC Address.
Thanks, Myles