Locating the MAC/Physical Address of an Amazon Dot, Echo, FireTV or Tap using the Alexa app Step 1: Download the Alexa app from the Apple App store or Google Play store. You can search for Alexa on either app store or use the QR codes below. Apple App Store Google Play Store.
For example, this TI PHY chip DP83630 has two MAC addresses that can be used as destination and source MAC addresses for PHY control frames. (page 72 and 94)
Does this means all PHY chips will have the same MAC or am I missing something?
3 Answers
$begingroup$(promoted from comment to answer)
These addresses are used for PHY CONTROL frames only, not for normal data frames. As far as I understand such frames they are not destined for a particular node. I suspect that the actual address is unimportant, and the choice of two addresses is only for debugging and testing (so you can see from which of two sides a frame is sent).
Wouter van OoijenWouter van OoijenMany PHYs do not have MAC addresses, in particular the cheapest ones as you need to pay for a block of MAC addresses and they leave that up to consumer.
Example: the popular (at least among hobbyists) ENC28J60 does not have a pre-programmed MAC.
m.AlinMac Address From Chip Id Manual Optional 2017
MAC addresses have nothing to do with the PHY layer. These are relevant in the MAC layer, which is of course why they are called 'MAC' addresses in the first place.
Every ethernet MAC is supposed to have a globally unique 48 bit address. I suppose it would be possible for a manufacturer to create MACs with built-in addresses and then serialize them in production. However, I am not aware of that being done for bare MACs or MAC/PHYs. Some module do this since they have their own processor and EEPROM.
Mac Address From Chip Id Manual Optional Download
Ususally the MAC has registers that are programmed with the MAC address by the controller during system initialization. That controller typically reads its assigned MAC address from some sort of non-volatile memory that is customized during production.
Olin LathropOlin Lathrop