If I understand it correctly, then MAC address 00-27-C7-38-42-11
- Has 00 as the most significant byte.
- Has 0 (zero) set in its least significant bit of the most significant byte -- 00 Hex is 0000 0000 in binary.
- And therefore it's universally administered.
É o segundo bit menos significativo , não o bit menos significativo. Ainda é 0. Portanto, é de fato universalmente administrado (globalmente único).
While MAC address A9-5E-4C-22-AF-17:
- Has A9 as the most significant byte.
- Has 1 (one) set in its least significant bit of the most significant byte -- D9 Hex is 1010 1001 in binary.
- And therefore it's locally administered.
Você quer dizer A9, não D9. Sim, A9 é 101010 * 0 * 1 em binário.
Novamente, é o segundo bit menos significativo. Que ainda é 0 (marquei entre os asteriscos acima). É administrado universalmente (globalmente único).
The the above MAC addresses are all 6 bytes and contain no unicast/multicast bit field. Is this correct?
Ambos contêm o bit Unicast / Multicast, naturalmente. Este é o lugar onde o bit menos significativo do octeto mais significativo (byte) entra em jogo.
- O primeiro endereço é unicast. O bit menos significativo do octeto mais significativo é 0.
- O segundo endereço é multicast. 1010100 * 1 * tem 1 como o bit menos significativo.
Espero que isso ajude.