1 chapter 6 errors, error detection, and error control data communications and computer networks: a...

40
1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

Post on 21-Dec-2015

233 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

1

Chapter 6

Errors, Error Detection, and Error Control

Data Communications andComputer Networks: A Business User’s Approach

Page 2: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

2

Data Communications and Computer Networks Chapter 6

IntroductionNoise is always present.

If a communications line experiences too much noise, the signal will be lost or corrupted.

Communication systems should check for transmission errors.

Once an error is detected, a system may perform some action.

Some systems perform no error control, but simply let the data in error be discarded.

Page 3: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

3

Data Communications and Computer Networks Chapter 6

Noise and Errors – White NoiseAlso known as thermal or Gaussian noise

Relatively constant and can be reduced.

If white noise gets to strong, it can completely disrupt the signal.

Page 4: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

4

Data Communications and Computer Networks Chapter 6

Page 5: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

5

Data Communications and Computer Networks Chapter 6

Noise and Errors – Impulse NoiseOne of the most disruptive forms of noise.

Random spikes of power that can destroy one or more bits of information.

Difficult to remove from an analog signal because it may be hard to distinguish from the original signal.

Impulse noise can damage more bits if the bits are closer together (transmitted at a faster rate).

Page 6: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

6

Data Communications and Computer Networks Chapter 6

Page 7: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

7

Data Communications and Computer Networks Chapter 6

Page 8: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

8

Data Communications and Computer Networks Chapter 6

Noise and Errors - CrosstalkUnwanted coupling between two different signal paths.

For example, hearing another conversation while talking on the telephone.

Relatively constant and can be reduced with proper measures.

Page 9: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

9

Data Communications and Computer Networks Chapter 6

Page 10: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

10

Data Communications and Computer Networks Chapter 6

Noise and Errors - EchoThe reflective feedback of a transmitted signal as the signal moves through a medium.

Most often occurs on coaxial cable.

If echo bad enough, it could interfere with original signal.

Relatively constant, and can be significantly reduced.

Page 11: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

11

Data Communications and Computer Networks Chapter 6

Page 12: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

12

Data Communications and Computer Networks Chapter 6

Noise and Errors - JitterThe result of small timing irregularities during the transmission of digital signals.

Occurs when a digital signal is repeater over and over.

If serious enough, jitter forces systems to slow down their transmission.

Steps can be taken to reduce jitter.

Page 13: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

13

Data Communications and Computer Networks Chapter 6

Page 14: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

14

Data Communications and Computer Networks Chapter 6

Noise and Errors – Delay DistortionOccurs because the velocity of propagation of a signal through a medium varies with the frequency of the signal. Can be reduced.

Attenuation

The continuous loss of a signal’s strength as it travels through a medium.

Page 15: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

15

Data Communications and Computer Networks Chapter 6

Error PreventionTo prevent errors from happening, several techniques may be applied:

- Proper shielding of cables to reduce interference

- Telephone line conditioning or equalization

- Replacing older media and equipment with new, possibly digital components

- Proper use of digital repeaters and analog amplifiers

- Observe the stated capacities of the media

Page 16: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

16

Data Communications and Computer Networks Chapter 6

Page 17: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

17

Data Communications and Computer Networks Chapter 6

Error DetectionDespite the best prevention techniques, errors may still happen.

To detect an error, something extra has to be added to the data/signal. This extra is an error detection code.

Let’s examine two basic techniques for detecting errors: parity checking, and cyclic redundancy checksum.

Page 18: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

18

Data Communications and Computer Networks Chapter 6

Parity ChecksSimple parity - If performing even parity, add a parity bit such that an even number of 1s are maintained.

If performing odd parity, add a parity bit such that an odd number of 1s are maintained.

For example, send 1001010 using even parity

For example, send 1001011 using even parity

Page 19: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

19

Data Communications and Computer Networks Chapter 6

Parity Checks

What happens if the character 10010101 is sent and the first two 0s accidentally become two 1s?

Thus, the following character is received: 11110101.

Will there be a parity error?

Problem: Simple parity only detects odd numbers of bits in error.

Page 20: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

20

Data Communications and Computer Networks Chapter 6

Parity ChecksLongitudinal parity adds a parity bit to each character then adds a row of parity bits after a block of characters.

The row of parity bits is actually a parity bit for each “column” of characters.

The row parity bits plus the column parity bits add a great amount of redundancy to a block of characters.

Page 21: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

21

Data Communications and Computer Networks Chapter 6

Page 22: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

22

Data Communications and Computer Networks Chapter 6

Page 23: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

23

Data Communications and Computer Networks Chapter 6

Parity ChecksBoth simple parity and longitudinal parity do not catch all errors.

Simple parity only catches odd numbers of bit errors.

Longitudinal parity is better at catching errors but requires too many check bits added to a block of data.

We need a better error detection method. What about cyclic redundancy checksum?

Page 24: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

24

Data Communications and Computer Networks Chapter 6

Cyclic Redundancy ChecksumThe CRC error detection method treats the packet of data to be transmitted as a large polynomial.

The transmitter takes the message polynomial and using polynomial arithmetic, divides it by a given generating polynomial.

The quotient is discarded but the remainder is “attached” to the end of the message.

Page 25: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

25

Data Communications and Computer Networks Chapter 6

Cyclic Redundancy ChecksumThe message (with the remainder) is transmitted to the receiver.

The receiver divides the message and remainder by the same generating polynomial.

If a remainder not equal to zero results, there was an error during transmission.

If a remainder of zero results, there was no error during transmission.

Page 26: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

26

Data Communications and Computer Networks Chapter 6

Page 27: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

27

Data Communications and Computer Networks Chapter 6

Error ControlOnce an error is detected, what is the receiver going to do?

1. Do nothing

2. Return an error message to the transmitter

3. Fix the error with no further help from the transmitter

Page 28: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

28

Data Communications and Computer Networks Chapter 6

Error ControlDo nothing

Seems like a strange way to control errors but some newer systems such as frame relay perform this type of error control.

Return a message has three basic formats:

1. Stop-and-wait ARQ

2. Go-back-N ARQ

3. Selective-reject ARQ

Page 29: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

29

Data Communications and Computer Networks Chapter 6

Error ControlStop-and-wait ARQ is the simplest of the error control protocols.

A transmitter sends a frame then stops and waits for an acknowledgment.

If a positive acknowledgment (ACK) is received, the next frame is sent.

If a negative acknowledgment (NAK) is received, the same frame is transmitted again.

Page 30: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

30

Data Communications and Computer Networks Chapter 6

Page 31: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

31

Data Communications and Computer Networks Chapter 6

Error ControlGo-back-N ARQ and selective reject are more efficient protocols.

They assume that multiple frames are in transmission at one time (sliding window).

A sliding window protocol allows the transmitter to send up to the window size frames before receiving any acknowledgments.

When a receiver does acknowledge receipt, the returned ack contains the number of the frame expected next.

Page 32: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

32

Data Communications and Computer Networks Chapter 6

Page 33: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

33

Data Communications and Computer Networks Chapter 6

Error ControlUsing the go-back-N ARQ protocol, if a frame arrives in error, the receiver can ask the transmitter to go back to the Nth frame and retransmit it.

After the Nth frame is retransmitted, the sender resends all subsequent frames.

Page 34: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

34

Data Communications and Computer Networks Chapter 6

Error ControlSelective-reject ARQ is the most efficient error control protocol.

If a frame is received in error, the receiver asks the transmitter to resend ONLY the frame that was in error.

Subsequent frames following the Nth frame are not retransmitted.

Figure 6-10 shows a normal transmission of frames with no errors, while Figures 6-11 and 6-12 show examples of errors.

Page 35: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

35

Data Communications and Computer Networks Chapter 6

Page 36: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

36

Data Communications and Computer Networks Chapter 6

Page 37: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

37

Data Communications and Computer Networks Chapter 6

Page 38: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

38

Data Communications and Computer Networks Chapter 6

Page 39: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

39

Data Communications and Computer Networks Chapter 6

Error ControlFor a receiver to correct the error with no further help from the transmitter requires a large amount of redundant information accompany the original data.

This redundant information allows the receiver to determine the error and make corrections.

This type of error control is often called forward error correction.

Page 40: 1 Chapter 6 Errors, Error Detection, and Error Control Data Communications and Computer Networks: A Business User’s Approach

40

Data Communications and Computer Networks Chapter 6

Error Detection and Error Control in ActionAsynchronous transfer mode (ATM) incorporates many types of error detection and error control.

ATM inserts a CRC into the data frame (the cell), which checks only the header and not the data.

This CRC is also powerful enough to perform simple error correction on the header.

A second layer of ATM applies a CRC to the data, with varying degrees of error control.