Computer Networks Prof. Ashok K Agrawala

3y ago
25 Views
2 Downloads
2.11 MB
84 Pages
Last View : 1m ago
Last Download : 3m ago
Upload by : Joanna Keil
Transcription

CSMC 417Computer NetworksProf. Ashok K Agrawala 2015 Ashok AgrawalaSet 42015CMSC417 Set 41

The Data Link LayerChapter 3– Data Link Layer Design Issues– Error Detection and Correction– Elementary Data Link Protocols– Sliding Window Protocols– Example Data Link ProtocolsRevised: August 2011CMSC417 Set 4

The Data Link LayerResponsible for deliveringframes of information overa single link– Handles transmission errorsand regulates the flow ofdataCMSC417 Set 4ApplicationTransportNetworkLinkPhysical

Data Link Layer Design Issues– Frames »– Possible services »– Framing methods »– Error control »– Flow control »CMSC417 Set 4

FramesLink layer accepts packets from the networklayer, and encapsulates them into framesthat it sends using the physical layer;reception is the opposite processNetworkLinkVirtual data pathPhysicalActual data pathCMSC417 Set 4

Functions of the Data Link Layer Provide service interface to the network layer Dealing with transmission errors Regulating data flow Slow receivers not swamped by fast senders2015CMSC417 Set 46

Possible ServicesUnacknowledged connectionless service– Frame is sent with no connection / errorrecovery– Ethernet is exampleAcknowledged connectionless service– Frame is sent with retransmissions if needed– Example is 802.11Acknowledged connection-oriented service– Connection is set up; rareCMSC417 Set 4

Services Provided to Network Layer2015(a) Virtual communication.(b) Actual communication.CMSC417 Set 48

Services Provided to Network Layer (2)Placement of the data link protocol.2015CMSC417 Set 49

Framing Methods– Byte count »– Flag bytes with byte stuffing »– Flag bits with bit stuffing »– Physical layer coding violations Use non-data symbol to indicate frameCMSC417 Set 4

Framing – Bit OrientedBit stuffing(a) The original data.(b) The data as they appear on the line.(c) The data as they are stored in receiver’s memory afterdestuffing.2015CMSC417 Set 411

Bit Oriented Protocols Frame – a collection of bits– No Byte boundary SDLC – Synchronous Data Link Control– IBM HDLC – High-Level Data Link Control– ISO StandardHDLC Frame Format2015CMSC417 Set 412

Framing – Bit stuffingStuffing done at the bit level:– Frame flag has six consecutive 1s (not shown)– On transmit, after five 1s in the data, a 0 isadded–DataOn bitsreceive, a 0 after five 1s is deletedTransmitted bitswith stuffingCMSC417 Set 4

Framing Break sequence of bits into a frame– Typically implemented by the network adaptor Sentinel-based– Delineate frame with special pattern (e.g., 01111110)01111110Frame contents01111110– Problem: what if special patterns occurs within frame?– Solution: escaping the special characters E.g., sender always inserts a 0 after five 1s and receiver always removes a 0 appearing after five 1s Bit Stuffing– Similar to escaping special characters in C programs2015CMSC417 Set 414

Byte-Oriented Protocols Frame – a collection of bytes. Examples– BISYNC – Binary Synchronous Communication – IBM– DDCMP – Digital Data Communication Message Protocol– PPP – Point-to-Point Sentinel Based – Use special character as marker– BISYNC SYN and SOH STX and ETX DLE as escape character. - Character Stuffing2015CMSC417 Set 415

Framing(a) A frame delimited by flag bytes.(b) Four examples of byte sequences before and after stuffing.2015CMSC417 Set 416

Frame StructurePPP Frame FormatBISYNC Frame Format2015CMSC417 Set 417

Framing (Continued) Counter-based– Include the payload length in the header– instead of putting a sentinel at the end– Problem: what if the count field gets corrupted? Causes receiver to think the frame ends at a different place– Solution: catch later when doing error detection And wait for the next sentinel for the start of a new frameDDCMP Frame Format2015CMSC417 Set 418

FramingA character stream.(a) Without errors.(b) With one error.2015CMSC417 Set 419

Clock-Based Framing (SONET) Clock-based– Make each frame a fixed size– No ambiguity about start and end of frame– But, may be wasteful Synchronous Optical Network (SONET)– Slowest speed link STS-1 – 51.84 Mbps ( 810*8*8K)– Frame – 9 rows of 90 bytes First 3 bytes of each row are overhead First two bytes of a frame contain a special bit pattern – to markthe start of the frame – check for it every 810 bytes2015CMSC417 Set 420

Sonet Frame2015CMSC417 Set 421

Three STS-1 frames to one STS-3 frame2015CMSC417 Set 422

Flow ControlPrevents a fast sender from out-pacing a slowreceiver– Receiver gives feedback on the data it canaccept– Rare in the Link layer as NICs run at “wirespeed” Receiver can take data as fast as it can be sentFlow control is a topic in the Link andTransport layers.CMSC417 Set 4

Sliding Window Protocols– Sliding Window concept »– One-bit Sliding Window »– Go-Back-N »– Selective Repeat »CMSC417 Set 4

Sliding Window concept (1)Sender maintains window of frames it cansend– Needs to buffer them for possibleretransmission– Window advances with nextacknowledgementsReceiver maintains window of frames it canreceive– Needs to keep buffer space for arrivals– Window advances with in-order arrivalsCMSC417 Set 4

Go-Back-N (1)Receiver only accepts/acks frames that arrive inorder:– Discards frames that follow a missing/errored frame– Sender times out and resends all outstanding framesCMSC417 Set 4

Go-Back-N (2)Tradeoff made for Go-Back-N:– Simple strategy for receiver; needs only 1frame– Wastes link bandwidth for errors with largewindows; entire window is retransmittedImplemented as p5 (see code in book)CMSC417 Set 4

Selective Repeat (1)Receiver accepts frames anywhere in receivewindow– Cumulative ack indicates highest in-order frame– NAK (negative ack) causes sender retransmission of amissing frame before a timeout resends windowCMSC417 Set 4

Selective Repeat (2)Tradeoff made for Selective Repeat:– More complex than Go-Back-N due tobuffering at receiver and multiple timers atsender– More efficient use of link bandwidth as onlylost frames are resent (with low error rates)Implemented as p6 (see code in book)CMSC417 Set 4

Selective Repeat (3)For correctness, we require:– Sequence numbers (s) at least twice the window (w)Error case (s 8, w 7) – toofew sequence numbersOriginalsCorrect (s 8, w 4) – enoughsequence numbersRetransmitsNew receive window overlapsold – retransmits ambiguousCMSC417 Set 4OriginalsRetransmitsNew and old receive windowdon’t overlap – no ambiguity

Sliding Window Protocolshttp://www.site.uottawa.ca/ elsaddik/abedweb/applets/Applets/Sliding Window/sliding window.htmlhttp://www.cs.stir.ac.uk/ tir.ac.uk/ s.udel.edu/ amer/450/TransportApplets/GBN/GBNindex.htmlCMSC417 Set 4

Error ControlError control repairs frames that are receivedin error– Requires errors to be detected at the receiver– Typically retransmit the unacknowledgedframes– Timer protects against lost acknowledgementsDetecting errors and retransmissions are nexttopics.CMSC417 Set 4

Error Detection and CorrectionError codes add structured redundancy to dataso errors can be either detected, or corrected.Error correction codes:– Hamming codes »– Binary convolutional codes »– Reed-Solomon and Low-Density Parity Check codes Mathematically complex, widely used in real systemsError detection codes:– Parity »– Checksums »– Cyclic redundancy codes »CMSC417 Set 4

Error Detection Errors are unavoidable– Electrical interference, thermal noise, etc. Error detection––––Transmit extra (redundant) informationUse redundant information to detect errorsExtreme case: send two copies of the dataTrade-off: accuracy vs. overhead Techniques for detecting errors– Parity checking– Checksum– Cyclic Redundancy Check (CRC)2015CMSC417 Set 434

Error Detection Techniques Parity check– Add an extra bit to a 7-bit code– Odd parity: ensure an odd number of 1s E.g., 0101011 becomes 01010111– Even parity: ensure an even number of 1s E.g., 0101011 becomes 01010110 Two Dimensional Parity2015CMSC417 Set 435

Error Bounds – Hamming distanceCode turns data of n bits into codewords of n kbitsHamming distance is the minimum bit flips toturn one valid codeword into any other validone.– Example with 4 codewords of 10 bits (n 2, k 8): 0000000000, 0000011111, 1111100000, and1111111111 Hamming distance is 5Bounds for a code with distance:– 2d 1 – can correct d errors (e.g., 2 errors above)– d 1 – can detect d errors (e.g., 4 errors above)CMSC417 Set 4

Error Detection – Parity (1)Parity bit is added as the modulo 2 sum of data bits– Equivalent to XOR; this is even parity– Ex: 1110000 11100001– Detection checks if the sum is wrong (an error)Simple way to detect an odd number of errors–––––Ex: 1 error, 11100101; detected, sum is wrongEx: 3 errors, 11011001; detected sum is wrongEx: 2 errors, 11101101; not detected, sum is right!Error can also be in the parity bit itselfRandom errors are detected with probability ½CMSC417 Set 4

Error Detection – Parity (2)Interleaving of N parity bits detects burst errors upto N– Each parity sum is made over non-adjacent bits– An even burst of up to N errors will not cause it to failCMSC417 Set 4

Two Dimensional Parity2015CMSC417 Set 439

Error Detection – ChecksumsChecksum treats data as N-bit words and adds Ncheck bits that are the modulo 2N sum of thewords– Ex: Internet 16-bit 1s complement checksumProperties:––––Improved error detection over parity bitsDetects bursts up to N errorsDetects random errors with probability 1-2NVulnerable to systematic errors, e.g., added zerosCMSC417 Set 4

Checksum Checksum– Treat data as a sequence of 16-bit words– Compute a sum of all the 16-bit words, with no carries– Transmit the sum along with the packet2015CMSC417 Set 441

Internet Checksum Algorithm Consider data as a sequence of 16-bit integers Add them together using 16-bit one’s complementarithmetic Take 1’s complement of the sum That is the checksum2015CMSC417 Set 442

Cyclic Redundancy Check Have to maximize the probability ofdetecting the errors using a smallnumber of additional bits. Based on powerful mathematicalformulations – theory of finite fields Consider (n 1) bits as n degreepolynomialC ( x) x3 x 2 1 Message M(x) represented as7431M(x) x x x xpolynomial Divisor C(x) of degree k Send P(x) as (n 1) bits k bits such thatP(x) is exactly divisible by C(x)2015CMSC417 Set 443

CRC Basis Use modulo 2 arithmetic Any Polynomial B(x) can be divided by a divisorpolynomial C(x) if B(x) is of higher degree than C(x) Any polynomial B(x) can be divided once by a divisorpolynomial C(x) if they are of the same degree The remainder obtained when B(x) is divided by C(x)is obtained by subtracting C(x) from B(x) To subtract C(x) from B(x) we simply perform theexclusive-OR operation on each pair of matchingcoefficients.2015CMSC417 Set 444

CRC Basis1. Multiply M(x) by xk , i.e. add kzeros at the end of the message.Call this T(x)2. Divide T(x) by C(x)3. Subtract the remainderfrom T(x) Message sent –1001101010 1012015CMSC417 Set 445

Cyclic Redundancy Check All single bit errors – if xk and x0 terms are nonzero All double-bit errors – as long as C(x) has a factorwith at least three terms Any odd number of errors as long as C(x) has (x 1) asa factor Any burst error of length k bits2015CMSC417 Set 446

Common CRC PolynomialsCRCC(x)CRC-8x8 x2 X1 1CRC-10x10 x9 x5 x4 x1 1CRC-12x12 x11 x3 x2 1CRC-16x16 x15 x2 1CRC-CCITTx16 x12 x5 1CRC-32x32 x26 x23 x22 x16 x12 x11 x10 x8 x7 x5 x4 x2 x1 12015CMSC417 Set 447

Error Detection – CRCs (1) Adds bits so that transmitted frame viewed as a polynomial isevenly divisible by a generator polynomialStart by adding0s to frameand try dividingOffset by any reminderto make it evenlydivisible2015CMSC417 Set 448

Error Detection – CRCs (2)Based on standard polynomials:– Ex: Ethernet 32-bit CRC is defined by:– Computed with simple shift/XOR circuitsStronger detection than checksums:– E.g., can detect all double bit errors– Not vulnerable to systematic errorsCMSC417 Set 4

Error Correction – Hamming codeHamming code gives a simple way to add check bitsand correct up to a single bit error:– Check bits are parity over subsets of the codeword– Recomputing the parity sums (syndrome) gives theposition of the error to flip, or 0 if there is no error(11, 7) Hamming code adds 4 check bits and can correct 1 errorCMSC417 Set 4

Error-Correcting CodesUse of a Hamming code to correct burst errors.2015CMSC417 Set 451

Error Correction – Convolutional codesOperates on a stream of bits, keeping internal state– Output stream is a function of all preceding input bits– Bits are decoded with the Viterbi algorithm 0 1 11 0 1 111Popular NASA binary convolutional code (rate ½) used in 802.11CMSC417 Set 4

Link-Layer Services Encoding– Representing the 0s and 1s Framing– Encapsulating packet into frame, adding header, trailer– Using MAC addresses, rather than IP addresses Error detection– Errors caused by signal attenuation, noise.– Receiver detecting presence of errors Error correction– Receiver correcting errors without retransmission Flow control– Pacing between adjacent sending and receiving nodes2015CMSC417 Set 453

Adaptors Communicatingdatagramlink layer protocolframesendingnodeadapterframeadapter receivingnode Link layer implemented in adaptor (network interface card)– Ethernet card, PCMCI card, 802.11 card Sending side:– Encapsulates datagram in a frame– Adds error checking bits, flow control, etc. Receiving side– Looks for errors, flow control, etc.– Extracts datagram and passes to receiving node54

Elementary Data Link Protocols– Link layer environment »– Utopian Simplex Protocol »– Stop-and-Wait Protocol for Error-freechannel »– Stop-and-Wait Protocol for Noisy channel »CMSC417 Set 4

Link layer environment (1)Commonly implemented as NICs and OSdrivers; network layer (IP) is often OSsoftwareCMSC417 Set 4

Link layer environment (2) Link layer protocol implementations use library functions– See code (protocol.h) for more detailsGroupLibrary FunctionDescriptionNetworklayerfrom network layer(&packet)to network layer(&packet)enable network layer()disable network layer()Take a packet from network layer to sendDeliver a received packet to network layerLet network cause “ready” eventsPrevent network “ready” eventsPhysicallayerfrom physical layer(&frame)to physical layer(&frame)Get an incoming frame from physical layerPass an outgoing frame to physical layerEvents &timerswait for event(&event)start timer(seq nr)stop timer(seq nr)start ack timer()stop ack timer()Wait for a packet / frame / timer eventStart a countdown timer runningStop a countdown timer from runningStart the ACK countdown timerStop the ACK countdown timer2015CMSC417 Set 457

Protocol DefinitionsContinued Some definitions needed in the protocols to follow.These are located in the file protocol.h.2015CMSC417 Set 458

ProtocolDefinitions(ctd.)Some definitionsneeded in theprotocols to follow.These are located inthe file protocol.h.2015CMSC417 Set 459

ABTimeBTimeATransmission SequenceSend2015ReceiveCMSC417 Set 460

Utopian Simplex ProtocolAn optimistic protocol (p1) to get us started– Assumes no errors, and receiver as fast as sender– Considers one-way data transfer}Sender loops blasting framesReceiver loops eating frames– That’s it, no error or flow control CMSC417 Set 4

TimeTimeAFlowControlBACMSC417 Set 4B

Reliable Transmission Transfer frames without errors– Error Correction– Error Detection– Discard frames with error Acknowledgements and Timeouts Retransmission ARQ – Automatic Repeat Request2015CMSC417 Set 463

Stop and Wait with 1-bit Seq No2015CMSC417 Set 464

Stop and Wait Protocols Simple Low Throughput– One Frame per RTT Increase throughput by having more frames in flight– Sliding Window Protocol2015CMSC417 Set 465

Stop and WaitDuplicateFrames2015CMSC417 Set 466

Stop and Wait Protocol http://www.cs.stir.ac.uk/ kjt/software/comms/jasper/ABP.html http://www.cs.stir.ac.uk/ kjt/software/comms/jasper/ABRA.html2015CMSC417 Set 467

Stop-and-Wait – Error-free channelProtocol (p2) ensures sender can’t outpace receiver:– Receiver returns a dummy frame (ack) when ready– Only one frame out at a time – called stop-and-wait– We added flow control!Sender waits to for ack afterpassing frame to physical layerCMSC417 Set 4Receiver sends ack after passingframe to network layer

Stop-and-Wait – Noisy channel (1)ARQ (Automatic Repeat reQuest) adds errorcontrol– Receiver acks frames that are correctly delivered– Sender sets timer and resends frame if no ack)For correctness, frames and acks must benumbered– Else receiver can’t tell retransmission (due to lostack or early timer) from new frame– For stop-and-wait, 2 numbers (1 bit) are sufficientCMSC417 Set 4

Stop-and-Wait – Noisy channel (2){Sender loop (p3):Send frame (or retransmission)Set timer for retransmissionWait for ack or timeoutIf a good ack then set up for thenext frame to send (else the oldframe will be retransmitted)CMSC417 Set 4

Stop-and-Wait – Noisy channel (3)Receiver loop (p3):Wait for a frameIf it’s new then takeit and advanceexpected frameAck current frameCMSC417 Set 4

Example Data Link Protocols– Packet over SONET »– PPP (Point-to-Point Protocol) »– ADSL (Asymmetric Digital Subscriber Loop)»CMSC417 Set 4

Packet over SONETPacket over SONET is the method used tocarry IP packets over SONET optical fiberlinks– Uses PPP (Point-to-Point Protocol) for framingPPP frames may be splitover SONET payloadsProtocol stacksCMSC417 Set 4

Packet over SONET (1)Packet over SONET. (a) A protocol stack. (b)Frame relationships2015CMSC417 Set 474

Packet over SONET (2)PPP Features1.Separate packets, error detection2.Link Control Protocol3.Network Control Protocol2015CMSC417 Set 475

PPP (1)PPP (Point-to-Point Protocol) is a general method fordelivering packets across links– Framing uses a flag (0x7E) and byte stuffing– “Unnumbered mode” (connectionless unacknowledged service) is used to carry IP packets– Errors are detected with a checksum0x21 for IPv4CMSC417 Set 4IP packet

PPP (2)A link control protocol brings the PPP link up and downState machine for link controlCMSC417 Set 4

PPP – Point to Point Protocol (3)The LCP frame types.2015CMSC417 Set 478

ADSL (1)Widely used for broadband Internet overlocal loops– ADSL runs from modem (customer) to DSLAM(ISP)– IP packets are sent over PPP and AAL5/ATM(over)CMSC417 Set 4

ADSL (2)PPP data is sent in AAL5 frames over ATMcells:– ATM is a link layer that uses short, fixed-sizecells (53 bytes); each cell has a virtual circuitidentifier– AAL5 is a format to send packets over ATM– PPP frame is converted to a AAL5 frame(PPPoA)AAL5 frame is divided into 48 byte pieces, each ofwhich goes into one ATM cell with 5 header bytesCMSC417 Set 4

High-Level Data Link ControlFrame format for bit-oriented protocols.2015CMSC417 Set 481

High-Level Data Link Control (2)2015Control field of(a) An information frame.(b) A supervisory frame.(c) An unnumbered frame.CMSC417 Set 482

The Data Link Layer in the InternetA home personal computer acting as an internet host.2015CMSC417 Set 483

EndChapter 3CMSC417 Set 4201584

Sliding Window concept (1) CMSC417 Set 4. Sender maintains window of frames it can send – Needs to buffer them for possible retransmission – Window advances with next acknowledgements. Receiver maintains window of frames it can receive – Needs to keep buffer space for arrivals – Window advances with in-order arrivals

Related Documents:

Prof. Hassan Soliman Prof. Hisham Abou Grida Prof. Hossam El Wakil Prof. Hossam Tawfik Prof. Ihab Nabil Prof. Mohamed El-Heneidy Prof. Mosaad Soliman Prof. Omar El Kasheif Prof. Sameh Zarad Prof. Sherif Moamen Prof. Tarek Radwan Prof. Usama El Nahas Prof. Wassila Taha Alphabetical Organizin

Dr. Intekhab Ahmed Prof. Bahram H. Arjmandi Prof. David A. Arnall Dr. Vivek Bhalla Prof. Bertrand Cariou Prof. Dmitry A. Chistyakov Prof. Fernando Cordido Prof. Franco Battista Ennio Folli Prof. Paul Albert Fournier Dr. Bruce H. Francis Dr. Xianxin Hua Prof. Joaquin Lado-Abeal Dr. Hongyun Lu Dr. Abbas A

dr Stanko Boboš (Serbia), Prof. dr Ljiljana Nešić (Serbia), Prof. dr Petar Sekulić (Novi Sad), Prof. dr Mirjana Milošević (Serbia), Prof. dr Cvijan Mekić (Serbia), Prof. MVD Juraj Pivko, DSc. (Slovakia), Prof. dr Šandor Šomođi (Hungary), Prof. dr

28. Ashok Kumar Singh, G. Bhattacharjee, Manendra Singh and Sudeshna Chandra A new macrocyclic polystyrene based sensor for zinc. Electroanalysis, 9 (1997) 1005. 29. Ashok Kumar Singh, G. Bhattacharjee, Manendra Singh and Sudeshna Chandra A new macrocyclic ligand based sensor for

T. Ashok kumar, S. Priya and Varghese Paul, “Automatic Detection of Vasculature from Images of Human Retina Using CLAHE and Bitplane Decomposition”, American Journal of Biomedical Imaging, Vol 1, August, 2013, Article ID 20130133, pp. 1-12. 3. S Priya4., T. Ashok kumar

DCAP406 COMPUTER NETWORKS Sr. No. Description 1. Introduction to Computer Networks: uses of computer networks, 2. Network hardware, network software, Reference models, Example networks 3. Physical Layer : Theoretical Basis for Data Communication, Guided Transmission Media, Wireless Transmission, Communication Satellites 4.

Chinchu Mohan Debajit Datta Dileep Chandran Padinjare Muttikkal . Prof Goutam Das Prof Jayanta Mukhopadhyay Prof Madan Kumar Jha Prof Prasad K Bhaskaran Prof Rintu Banerjee Prof Sudeshna Sarkar Indian Institute of Science . cover and have also signi cantly a ected hydrology. Food requirements of the growing global popula-

DOCUMENTO FINALE DEL PERCORSO FORMATIVO Anno scolastico 2018/2019 Classe V Sez. A Indirizzo: AFM Numero alunni: 24 MATERIE E DOCENTI DEL CONSIGLIO DI CLASSE Materia Docente DIRITTO Prof. Elisa Barro ECONOMIA AZIENDALE Prof. Donatella Buttignol ECONOMIA POLITICA Prof. Elisa Barro FRANCESE Prof. Elena Trevet IRC Prof. Alice Paro INGLESE Prof .