3.4-1 Principles of Reliable Data Transfer (Part 1)

Поделиться
HTML-код
  • Опубликовано: 19 май 2024
  • Video presentation: "Transport layer: Principles of Reliable Data Transfer (Part 1)." Protocol mechanisms for reliable data transfer (rdt). Building an rdt protocol.
    Computer networks class.
    Jim Kurose
    Textbook reading: Section 3.1, Computer Networking: a Top-Down Approach (8th edition), J.F. Kurose, K.W. Ross, Pearson, 2020.
    See gaia.cs.umass.edu/kurose_ross for more open student resources.

Комментарии • 53

  • @fsnaps
    @fsnaps Месяц назад +7

    Jim always smiling, makes the lessons so much more interesting

  • @abcde9421
    @abcde9421 Год назад +51

    17:21
    Worth listening to for a 100 times.

    • @jaronajohnson4412
      @jaronajohnson4412 Год назад +4

      always makes me laugh :D

    • @eDog377
      @eDog377 3 месяца назад

      worth the wait

    • @VikasSharma05
      @VikasSharma05 3 месяца назад

      Really worth the wait. Don't know why, jar jar binks just flashed in my mind.

    • @sheesshoaib3816
      @sheesshoaib3816 Месяц назад

      Its like chandler bing's blah balh blahh

  • @ahmedalhallag3338
    @ahmedalhallag3338 2 года назад +78

    I can't believe that the father of all computer networks papers and courses has only 1.1k subscribers :(

    • @vishweshgk6752
      @vishweshgk6752 Год назад +1

      Ong 😩

    • @daroboro5137
      @daroboro5137 7 месяцев назад

      10k after 1 year, so it's not so bad

    • @alkskillz7335
      @alkskillz7335 2 месяца назад

      Your generation were just lacking. Dw GenZs here to fix yall 😂

  • @asjadsalahuddin5918
    @asjadsalahuddin5918 3 года назад +38

    Made it so easy to understand , great work.

  • @Felipe-53
    @Felipe-53 10 месяцев назад +14

    Thank you for blessing us with such well crafted lessons!

  • @MayCodeGuide
    @MayCodeGuide 10 месяцев назад +11

    if anyone like me looking for a summery: The video discusses the challenges of reliable communication over an unreliable channel, exploring simple and increasingly realistic channel models. It goes on to explain the development of a reliable data transfer protocol, including the use of checksums and sequence numbers, and differentiates between unidirectional and bidirectional communication. The protocol's finite state machines and operations are also illustrated.

  • @ricp
    @ricp Год назад +2

    Excellent lesson, thanks a lot, Professor!

  • @t.sathwik5708
    @t.sathwik5708 Год назад +2

    explained the concepts of the text book in a fun and easy manner

  • @PenguinMaths
    @PenguinMaths 3 года назад +3

    Great series!

  • @hitarthmukundraykanakia3137
    @hitarthmukundraykanakia3137 3 года назад +33

    This is pure gold!! Thank you so much Professor Ross :)

  • @starless9
    @starless9 10 месяцев назад +6

    21:48 when receiver is in "wait for 1 from below" state and receives a packet from sender with sequence 0 it means... that the sender was looking for the ACK sequence 0 packet from receiver but it was corrupted in transmission. So the sender resends the sequence 0 packet and on receiving it uncorrupted receiver will resend the ACK sequence 0 packet so sender can move on to "wait for 0 from below"

    • @erayatsz3801
      @erayatsz3801 6 месяцев назад

      Thanks bro that was very helpful

    • @LK-xq2jy
      @LK-xq2jy Месяц назад

      you are smart

    • @jianminglin4155
      @jianminglin4155 Месяц назад

      Thanks for the explaining. Not sure if I got it right, but I think your last sentence should be "So the sender resends the sequence 0 packet and on receiving it uncorrupted, the receiver will resend the ACK sequence 0 packet so the sender can move on to "wait for 1 from above"". (The event notcorrupt(rcvpkt) && isACK(rcvpkt) occurs, so the sender moves on from the "wait for ACK or NAK 0" state to the "wait for call 1 from above" state.)

  • @SahilKumar-tj5lk
    @SahilKumar-tj5lk Год назад

    awesome !! Thanks a lot Professor

  • @compscienthusiast
    @compscienthusiast 11 месяцев назад +1

    I really appreciate breaking this down into FSMs and getting a better understanding of this process.
    However, I'm wondering how the receiver would know that the checksum is valid, and what would determine a non-corrupt checksum. I've used a checksum comparison in python before in the past but that relied on the sender receiving a packet back and then comparing that the sent and received packets have the same checksum.
    Using that logic, I'm wondering how we can determine that a packet is valid with a checksum if we don't know what to compare the checksum against. What would I be missing?

    • @starless9
      @starless9 10 месяцев назад

      Granted I'm new to this topic but I'd think the checksum would be generated independently on the receiver side to compare against the checksum in the packet from sender. This could be done using a hash function similar to what is used with hash tables, applied on the data in the entire packet. With large enough prime numbers used in the hash function so the probability that an uncorrupted packet and corrupted packet will generate the same hash value/checksum will be very low. There is the possibility that the checksum in the packet from sender will be corrupted but that just causes a retransmit...

  • @SantoshKumar-lz2ti
    @SantoshKumar-lz2ti Год назад

    Question:
    at 13:40, for the sender fsm when the sender goes from 'wait for nak or ack' to 'wait for call from above' there is a event rat_rcv(rcvpkt),, does this mean the receiver sends a ACK/NAk messgae in the form of pkt ??

    • @christio02
      @christio02 Год назад

      Yes, from the state "sender is waiting for ACK/NAK" from receiver, it only goes to "wait for call from above" when it receives an ACK from the receiver. If it receives a NAK, it will send a packet to the receiver and still be in in the "waiting for ACK/NAK" until it gets an ACK

  • @janetan9620
    @janetan9620 2 года назад +8

    3.4-2: ruclips.net/video/vxgH6r-II2Q/видео.html

  • @hayotkamchiev
    @hayotkamchiev 5 месяцев назад +1

    He has great taste in movies :)

  • @SantoshKumar-lz2ti
    @SantoshKumar-lz2ti Год назад

    ar 22:03
    if it sends ACK , then the receiver will be like, now i should send next pkt so 1 is lost....is the sequnece 01010101?

  • @zakariaabdi1818
    @zakariaabdi1818 2 года назад

    How can bits be flipped ; Error with the hardware link layer(fibre optic for example)?

    • @abcde9421
      @abcde9421 Год назад

      During link transmission , and during storage in router memory

  • @nitheshravikumar9462
    @nitheshravikumar9462 7 месяцев назад

    why do we send the packet through the unreliable channel ?

    • @bryan0x05
      @bryan0x05 6 месяцев назад +2

      We can't just hope the channel is reliable every time, we need to be prepared to deal with an unreliable channel. This is how you compensate for that.

  • @ashishroy4326
    @ashishroy4326 4 месяца назад +1

    Hi GIT students, one night before exam

  • @LeeLee-vk2dz
    @LeeLee-vk2dz Год назад

    Save my life

  • @mario999kart
    @mario999kart Год назад

    In refer to important digital reliable data transfer, like digital money, value and important information (documents, ownership rights) exchange in the same setting, doesn't blockchain and PoW fit in here perfectly?

  • @nadiahalmutairy5350
    @nadiahalmutairy5350 2 года назад +1

    UDP is reliable protocol or not?

    • @DigaDupSuck
      @DigaDupSuck 2 года назад

      unreliable

    • @thinkos6730
      @thinkos6730 2 года назад +1

      The Protocol itself is unreliable. But you can make adjustments just as in the video on the application Layer Level to implement a reliable Service

  • @vishweshgk6752
    @vishweshgk6752 Год назад

    Sir I am big fan 🥰

  • @dev_jun
    @dev_jun Год назад

    🥰

  • @cby1189
    @cby1189 Год назад

    goat

  • @delee8450
    @delee8450 Месяц назад

    i hope i find it earlier

  • @devmahad
    @devmahad 6 месяцев назад

    rdt 1 - 2

  • @coolalgorithms
    @coolalgorithms 3 месяца назад

    NAK or NACK? I thought it was NACK

  • @karanpreetsingh5966
    @karanpreetsingh5966 2 года назад +4

    Chemistry is you touching my arm and setting fire to my mind.

  • @youtuberemo9241
    @youtuberemo9241 Год назад

    :)

  • @user-wg4ms3xk3p
    @user-wg4ms3xk3p 4 месяца назад

    ruclips.net/video/nyUHUtmxWg0/видео.html

  • @SantoshKumar-lz2ti
    @SantoshKumar-lz2ti Год назад

    ar 22:03
    if it sends ACK , then the receiver will be like, now i should send next pkt so 1 is lost....is the sequnece 01010101?

  • @SantoshKumar-lz2ti
    @SantoshKumar-lz2ti Год назад

    ar 22:03
    if it sends ACK , then the receiver will be like, now i should send next pkt so 1 is lost....is the sequnece 01010101?