February 14, 2010

A closer look at the Data-Link layer

The Data-Link layer provides physical transmission of the data and handles error notifications, network topology, and flow control.

Lets take a closer look at it’s function

  1. Ensures messages are delivered to the proper device on LAN using hardware addresses and will translate messages from the Network layer to transmit.
  2. Transmit messages into pieces called a data frame and adds a customized header containing the hardware destination and source address.
  3. Data-Link uses binary values and hexadecimal values.

Binary Values

Nibble Values Byte Values
8  4  2  1 128  64  32  16  8  4  2  1

Binary to Decimal Chart

Binary Value Decimal Value
10000000 128
11000000 192
11100000 224
11110000 240
11111000 248
11111100 252
11111110 254
11111111 255

Hexadecimals

Hex is short for hexadecimal, which is a numbering system that uses the first six letters of the alphabet (A through F) to extend beyond the available ten digits in the decimal system. Hexadecimal has a total of sixteen digits.

Hex to Binary to Decimal Chart

Hexadecimal Binary Decimal
0 0000 0
1 0001 1
2 0010 2
3 0011 3
4 0100 4
5 0101 5
6 0110 6
7 0111 7
8 1000 8
9 1001 9
A 1010 10
B 1011 11
C 1100 12
D 1101 13
E 1110 14
F 1111 15

No comments:

Post a Comment