Top Banner
HDLC – High-Level Data Link Control The Data Link Layer in the Internet
11
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Hdlc

HDLC – High-Level Data Link Control

The Data Link Layer in the Internet

Page 2: Hdlc

Frame format for bit-oriented protocols

All HDLC frames begin with the HDLC flag 01111110, which is byte stuffed if occurs in the rest of the frame. The address field : on lines with multiple terminals, the address field is used to identify one of the terminalsThe control field: used for sequence numbers, acknowledgements and other purposes.The data field: may contain any information. It can have any length, although the efficiency of the checksum falls down with increasing frame length, due to the probability of occurrence of multiple burst errors.

CRC – checksum obtained with techniques we have described.End of frame (same as start of frame)

Page 3: Hdlc

Control field of (a) An information frame.(b) A supervisory frame.(c) An unnumbered frame.

Page 4: Hdlc

SEQ – 3 bits sequence numbers are used NEXT – used for piggybacking acknowledge

◦ All of the HDLC protocols adhere to the convention that instead of sending the sequence number for the frame that has been received correctly, the acknowledgement contains the sequence number of the next frame that is expected (not received yet).

The P/F bit stands for Pool/Final and it is used when a computer is polling a group of terminals. ◦ When used as P, the computer is inviting the

terminals to send data. All the frames from the terminal, except the final one, have the P/F flag set to P. The final one is F.

◦ The F flag is sometimes used to force the other machine to send a supervisory frame immediately, without waiting for reverse traffic where to piggyback the window information.

Page 5: Hdlc

Various kinds of SUPERVISORY frames are distinguished by the type filed:◦ Type 0 is an acknowledgement frame (called

RECEIVE READY), used to indicate the next frame expected

◦ Type 1 is a negative acknowledgement frame (called REJECT), used to indicate an error. The NEXT field indicates the first frame in sequence that has not been received correctly. The sender is requested to send all frames beginning at NEXT

◦ Type 2 is RECEIVE NOT READY. It acknowledges all frames up to but not including the NEXT one. It also tells the sender to stop sending. When the receiver is ready again, it sends a RECEIVE READY.

◦ Type 3 is a SELECTIVE REJECT. It calls for retransmission of only the frame specified. Thus, if a receiver wants to buffer out of sequence frames, it can force the retransmission of a specific frame by using a selective reject.

Page 6: Hdlc

UNNUMBERED FRAME is used for control and to carry data when unreliable connectionless service is required.

Using this frame, a number of commands can be sent:◦ DISConect – allows a machine to announce its

intention to bring down the connection◦ SABM (Set Asynchronous Balanced Mode) – resets

the line◦ FRMR (Frame Reject) – indicates that a frame with

correct checksum but incorrect semantics has arrived

More control frames are actually available for initialization, polling and status reporting.

Page 7: Hdlc

A home personal computer acting as an internet host.

Page 8: Hdlc

Provides three features◦ A framing method; the frame format also handles

error detection◦ A link control protocol called LCP (Link Control

Protocol)◦ A way to negotiate network specific options in a

way that is independent of the network layer protocol to be used. The method chosen is to have a different NCP (Network Control Protocol) for each network layer supported

Page 9: Hdlc

The PPP full frame format for unnumbered mode operation.

All PPP frames start with standard HDLC flag 01111110, which is byte stuffed if occurs in the rest of the frame. The Address field is always set to 11111111 to indicate that all stations are to accept the frame. Using this value solves the issue of assigning data link layer addresses.

The Control field default value is 00000011 , which indicates an unnumbered frame (doesn’t provide by default reliable transmission using sequence numbers and acknowledgements).

The Protocol field specifies what kind of packet is in the payload field. Codes are defined for LCP, NCP, IP, IPX, AppleTalk and other protocols. Protocols starting with zero are network layer protocols (IP, IPX, etc). Those starting with 1 are used to negotiate other protocols. These include LCP and a different NCP for each network layer protocol supported.

Payload – variable length data, up to some negotiated maximum. If no negotiated maximum value, a default 1500 value is used. Checksum field is default 2 bytes, but it can be negotiated to 4 bytes.

Page 10: Hdlc

A simplified phase diagram for bring a line up and down.

Page 11: Hdlc

The LCP frame types.