![]() |
What is the hexadecimal equivalent of the ethernet address 010111010 00010001 01010101 00011000 10101010 00001111? |
[Edit] |
Answer
This should be an invalid MAC address because the first octet is 9 bytes long. However it converts out to BA:11:55:18:AA:F. However this is not a real MAC address since the OUI (first three octets are not registered to any corporation.)
Here are the results of your search through the public section of the IEEE Standards OUI database report for BA:11:55:
Sorry!
The public OUI listing contains no match for the query BA:11:55
If you want to know the math behind it it becomes tricky. Hex is a 16 base system. We're used to a 10 base system 0-9. Hex runs 0-16 so it counts like this
0=0
1=1
2=2
3=3
4=4
5=5
6=6
7=7
8=8
9=9
A=10
B=11
C=12
D=13
E=14
F=15
So to count by Hex 0F would =15
Then 10 would = 16. You cannot look at it like a ten, it is a one, zero. that's one group of 16 and 0 ones. So 20 (two zero) would equal 32 (two sixteens)
With the basics of hex we can convert the binary to decimal.
To count by binary we once again have to thing a bit differently. while they look like a bunch of ones and zeros they each stand for a different number with each place multiplying the previous number by 2. So it counts 1,2,4,8,16,32,64,128. Only it is read right to left 128,64,32,16,8,4,2,1
The binary number 10101010 can be calculated like this
128 64 32 16 8 4 2 1
1 0 1 0 1 0 1 0 So that is one of each 128,32,8,2
128+32+8+2=170
to convert this 170 to hex we can devide it by 16 170/16=10.625
That gives us 10 full groups of 16 which is a Hexidecimal (A) or 160. This leaves us with a remainder of 10, which we know is another (A). So the Hex for 10101010 = AA
First answer by Jrcorray. Last edit by Jrcorray. Contributor trust: 30 [recommend contributor]. Question popularity: 9 [recommend question]
|
Research your answer: |
- Which is the best relation to sequencing ait work with tcp at layer 4 bit work with udp at layer 4 cit deal with ip at layer 4 dit only deal with HTTP?
- Can you leverage on IT for human security threats?
- How many wires are in a cat 5 cable?
- If a TCP server were to support n simultaneous connections each from a different client host how many sockets would the TCP server need?





