02-60-8C = 0000 0010 0110 0000 1000 1110
AA-AA-03 = 1010 1010 1010 1010 0000 0011
Neither of these have "1" as the 2nd bit. So I'm misunderstanding
either the text or the proper way to convert Hex addresses to
binary. What am I not getting?
thanks
Mark
Second from the right. Though most CS people would number starting
from 0 at the right, or 0 at the left...
-- glen
In case Glen's answer was too cryptic, they are referring to the bit
order as it is transferred across the wire over an Ethernet interface.
Over Ethernet, each byte (octet) is transmitted least significant bit
first. So in both of those examples, the second bit over the wire is
in fact set to 1.
Bert
That makes it crystal clear. Thank you both for the info.