Skip to content
Home » Complete Detail About The Error And Flow Control In Data Link Layer (Dll)? Best 16 Answer

Complete Detail About The Error And Flow Control In Data Link Layer (Dll)? Best 16 Answer

Are you looking for an answer to the topic “Complete Detail About the Error and Flow Control in Data Link Layer (DLL)“? We answer all your questions at the website Chambazone.com in category: 40+ Marketing Blog Topics & Ideas. You will find the answer right below.

Keep Reading


Table of Contents

14 – ERROR CONTROL (DATA LINK LAYER) – COMPUTER NETWORKS

14 – ERROR CONTROL (DATA LINK LAYER) – COMPUTER NETWORKS
14 – ERROR CONTROL (DATA LINK LAYER) – COMPUTER NETWORKS

Images related to the topic14 – ERROR CONTROL (DATA LINK LAYER) – COMPUTER NETWORKS

14 - Error Control (Data Link Layer) - Computer Networks
14 – Error Control (Data Link Layer) – Computer Networks

Any eal network must be able to guarantee the error-free transmission of data to the destination host in DLL.  For most of the applications, a system must guarantee that the data received is entical to the data transmitted. There are many factors that eventually alter the data and can corrupt the transmitted bits. Data can be corrupted during transmission. Some applications generally require that the errors be detected and corrected . Some applications can tolerate a small fraction of error. For instance, random errors in audio or video transmissions may be tolerable but the same is not acceptable in case of a text message. Let us first understand the type of errors that may get introduced during transmission : Single-Bit Error : The term single-bit error means that only 1 bit of a given data unit (such as a byte, character, or packet) is changed from 1 to 0 or from 0 to 1. Burst Error : The term burst error simply means that 2 or more bits in the data unit have changed from 1 to 0 or from 0 to 1. For example,  0100010001000011 was sent, but 0101110101100011 was received. Note that any burst error does not necessarily mean that the errors occur in consecutive bits. .

Process of Error control in DLL

The process begins with the receiver sending back feedback (positive or negative) to convey information about whether it received the frame or not. A positive acknowledgment (feedback) ACK indicates the successful and error-free transmission of the frame. While a negative acknowledgment (NAK) means that something went wrong and a specific frame needs to be retransmitted. Frames may disappear completely due to the presence of noise bursts. The receiver doesn’t receive anything and nothing happens (no acknowledgment). This problem is overcome by introducing a timer in the data link layer. The function of this timer is as follows.

Error Detection and Correction in DLL

When digital signal transmission occurs between two systems (such as computers), the signal can be contaminated by the addition of “noise”. Noise can introduce errors in bits migrating from one system to another. That is, a 0 can become a 1, or a 1 can become a 0. Correcting mistakes is harder than finding them. With error detection, we only look to see if there is an error. The answer is simple, yes or no. The main concept for detecting or correcting errors is redundancy. In order to detect or correct errors, we need to send some extra bits in the data. In error correction, we need to know the exact number of corrupted bits and, more importantly, their exact location in the message. The number of errors and the size of the message are important factors.

Forward Error Correction (FEC) Versus Retransmission in DLL

There are two main error correction methods. Forward Error Correction is basically the process by which the receiver tries to guess the message by using redundant bits. This is possible when the number of errors is small. Retransmission correction is a technique in which the receiver first detects the occurrence of an error and requests the sender to resend the message. Data is resent until a message arrives that the receiver thinks is error free (often not all errors are detectable).

Checksum for error detection

As each word is transmitted, it is added to the previously transmitted word, and the sum is reserved by the sender. The last carry is ignored. In this way each subsequent word is added to the previous total. At the end of the transfer, the sum of the transfers up to that point (called the checksum). Errors usually occur in bursts. In this case, parity techniques are not useful in detecting errors. Checksum error detection methods can be successfully used to detect such errors. With this method, a “checksum” is transmitted for each block of data bytes. This method uses an 8-bit accumulator to add the 8-bit bytes of the data block to find the “checksum byte”. Therefore, the carry from the MSB (most significant bit) is ignored when determining the checksum byte. Cyclic Redundancy Check (CRC) This is a polynomial code in which the sequence of bits is represented as a polynomial with only 0 and 1 coefficients. Polynomial arithmetic uses modulo 2 arithmetic; H. Addition and subtraction are the same as EXOR. For CRC codes, sender and receiver should agree on the generator polynomial, ie. H. G(x). A codeword can be generated for a given dataword (message) polynomial M(x) using long division. CRC works by binary division. A redundant bit sequence, called the CRC or CRC remainder, is appended to the end of the message. We will refer to this word as the additional message word. At the receiver, this codeword is dived by the same generated word corresponding to G(x). If the remainder of this division is zero, there is no error. But a non-zero remainder indicates an error in the received codeword.

Error Correction Methods in DLL

In error correction techniques, a code is generated at the transmitter by adding a set of parity bits or parity bits. Sources create data (messages) in binary notation. The encoder takes these bits and adds check bits (parity bits) to them to create a codeword. These codewords are sent to the receiver. Decoders use parity bits to detect and correct errors. Now let’s look at two error correction techniques (methods):.

Forward error correction (FEC) 

. Using FEC, the receiver searches for the most likely correct codeword. If any errors are detected, the distance between the received inval codeword and all possible val codewords is obtained. The next val codeword (the one with the smallest distance) is the most likely correct version of the received codeword. Now let’s look at the FEC method: 2. Linear block code: To generate a (n,k) block code, the encoder accepts information in blocks of consecutive “k” bits. At the end of each such block (k message bits), it adds (n – k) parity bits. Because these bits do not contain any information, they are called “redundant” bits. An important property of these codes is that any two codewords of a linear code can be added in a modulo-2 adder to produce the third codeword in the code. Nonlinear codes do not have such properties. All codes actually used are linear codes. In any linear block code, the exclusive OR (XOR) of any two val codewords produces another val codeword. 3. Hamming code: Hamming code is basically a linear block named after its inventor. One of the core concepts present in error control coding is the concept of Hamming distance. is the error correction code. Parity bits are inserted between data bits. Typically a 7-digit Hamming code is used, but the concept can be extended to any number of digits. The Hamming distance between any two words (of the same size) is the number of differences between the corresponding bits. We denote the Hamming distance between two words x and y as d(x, y). If the codeword is corrupted during transmission, the Hamming distance between the transmitted and received codeword is the number of bits affected by the error. In other words, the Hamming distance between the received codeword and the transmitted codeword is the number of bits corrupted during transmission. To ensure that “s” errors are detected in all cases, the minimum Hamming distance in the block code must be D(min) = s + 1. 4. Cyclic codes: Cyclic codes are special linear block codes with additional properties. In cyclic codes, if any codeword is cyclically shifted (rotated), the result is another codeword. For example, if 1011000 is a codeword and a cyclic left shift, then 0110001 is also a codeword. We have discussed the CRC method above. Please refer to it. Cyclic codes generally have very good performance in detecting single-bit errors, double errors, odd errors, and burst errors. They can be easily implemented in hardware and software. They are especially fast when implemented in hardware.

ARQ Technique of Error Detection (automatic repeat request)

In an error-controlled ARQ system, when an error is detected, retransmission of the signal is requested. Therefore, a back channel is required to send retransmission requests. In ARQ systems, a smaller number of parity bits (parity bits) must be sent. This increases the ratio of (n,k) block codes when transmitted using an ARQ system. Retransmission paths and additional hardware are required to implement codeword retransmission. The bit rate of the relay transmission must take into account the reverse retransmission transmission. The reverse transmission bit rate including retransmission of the ACK/NAK signal is lower compared to the forward transmission bit rate. Therefore, the error probability of retransmission is small enough to be ignored. In order to detect and correct corrupted frames, we need to add redundant bits to the data frame. Error correction in ARQ is done by keeping a copy of the transmitted frame and retransmitting the frame when a timer expires. In the next article, we will learn more about the different types of ARQ techniques. So stay tuned. report this ad


What is flow control and error in data link layer?

Flow control is meant only for the transmission of data from sender to receiver. Error control is meant for the transmission of error free data from sender to receiver. 2. For Flow control there are two approaches : Feedback-based Flow Control and Rate-based Flow Control.

What are the ways to control flow control at DLL?

In data link layer, flow control restricts the number of frames the sender can send before it waits for an acknowledgment from the receiver.
  1. Approaches of Flow Control. Flow control can be broadly classified into two categories −
  2. Flow Control Techniques in Data Link Layer. …
  3. Stop and Wait. …
  4. Sliding Window.

What is flow control in link layer?

Flow control is design issue at Data Link Layer. It is technique that generally observes proper flow of data from sender to receiver. It is very essential because it is possible for sender to transmit data or information at very fast rate and hence receiver can receive this information and process it.

What is the need of error control at the data link layer when the transport layer provides error control what is the difference between the two error controls?

error control at transport layer is must require while error control at data link layer is for optimization purpose. In transport layer acknowledgement is sent for whole message. if you only provide error control at transport layer then, there is no way u can detect error at particular frame.

What is error control explain it briefly?

Error control is the technique of detecting and correcting blocks of data during communication. In other words, it checks the reliability of characters both at the bit level and packet level.

What is flow control?

Flow control is the management of data flow between computers or devices or between nodes in a network so that the data can be handled at an efficient pace. Too much data arriving before a device can handle it causes data overflow, meaning the data is either lost or must be retransmitted.

What are the three steps in flow control and their functions?

Flow of control through any given function is implemented with three basic types of control structures:
  • Sequential: default mode. …
  • Selection: used for decisions, branching — choosing between 2 or more alternative paths. …
  • Repetition: used for looping, i.e. repeating a piece of code multiple times in a row.

What is flow control Example?

Xon-Xoff is an example of a flow control protocol that sync the sender with the receiver. It transmits a transmit off signal when the receiver no longer has space in its buffer and a transmit on signal when the receiver can resume taking data.

What are the different types of flow control?

The most common valve types in flow control industries include:
  • Gate valves.
  • Globe valves.
  • Pinch valves.
  • Diaphragm valves.
  • Needle valves.

Why is flow control needed?

Flow control is important because it is possible for a sending computer to transmit information at a faster rate than the destination computer can receive and process it.

Why is flow control required at both the data link and transport layers?

Flow control in transport layer ensures the delivery of the message globally, as the two points of connection over this protocol are logically connected. Whereas in data-link layer, the concern is to deliver message locally, as the two points of connection over this protocol are physically connected.

What are the three phases of error control?

Phases in Error Control

Acknowledgement: If any error is detected the receiver sends a negative acknowledgement(NACK) to the receiver. Retransmission: When the sender receives a negative acknowledgement or if any acknowledgement is not received from the receiver sender retransmits the data again.

What are the different types of errors in data link layer?

Errors can be of three types, namely single bit errors, multiple bit errors, and burst errors. Single bit error − In the received frame, only one bit has been corrupted, i.e. either changed from 0 to 1 or from 1 to 0. Multiple bits error − In the received frame, more than one bits are corrupted.

What are the main features of error control?

5 Characteristics of Quality Error Handling Systems
  • 1) Usable and used in every loop. An important part of understanding errors is knowing where they occurred. …
  • 2) Clear, concise, and meaningful error messages. …
  • 3) Does not block resolving the error condition. …
  • 4) Ignores recurrent errors while resolving. …
  • 5) Logs errors.

See some more details on the topic Complete Detail About the Error and Flow Control in Data Link Layer (DLL) here:

Error and Flow Control in Data Link Layer (DLL)

In this post i.e. Error and Flow Control in Data Link Layer (DLL) , you can get complete detail about the error detection and correction …

+ Read More Here

Types of Data Link Layer Services – eduCBA

Flow Control: There is a limited amount of packet buffering capacity on each se of the link. · Error Detection: Errors can be introduced very easily while …

+ View More Here

Computer Network | Data Link Controls – javatpoint

Flow Control; Error Control. Data Link Controls. Line Discipline. Line Discipline is a functionality of the Data link layer that proves the coordination among …

+ Read More Here

Flow and Error Control Important Techniques and best Study …

Flow Control Techniques: Stop-and-wait, and Sling Window. Error Control: Error control in the data link layer is based on ARQ (automatic …

+ Read More Here

Related searches to Complete Detail About the Error and Flow Control in Data Link Layer (DLL)

  • network layer in osi model
  • what is flow control
  • arq protocol
  • ARQ protocol
  • data link layer
  • define framing and the reason for its need
  • What is flow control
  • sliding window protocol in computer networks
  • Sliding window protocol
  • Network layer in OSI model
  • Transport layer error control
  • sliding window protocol
  • transport layer error control
  • Data link layer

Information related to the topic Complete Detail About the Error and Flow Control in Data Link Layer (DLL)

Here are the search results of the thread Complete Detail About the Error and Flow Control in Data Link Layer (DLL) from Bing. You can read more if you want.


You have just come across an article on the topic Complete Detail About the Error and Flow Control in Data Link Layer (DLL). If you found this article useful, please share it. Thank you very much.

Leave a Reply

Your email address will not be published. Required fields are marked *