TCP end to end principle implementation on basis of IP

king99

king99

@king99-bh2V1z Oct 13, 2024
😕😕End to End principle 😔😔😔😔
According to the end-to-end principle, protocol features are only justified in the lower layers of a system if they are a performance optimization, hence, (TCP) retransmission for reliability is still justified, but efforts to improve TCP reliability should stop after peak performance has been reached. (WIKI defination )

Can some one illustrate scenarios where end to end argument is not effective as a solution w.r.t current internet usage

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • durga ch

    durga ch

    @durga-TpX3gO Apr 12, 2011

    There is something called as TCP window. When TCP observes that most of the packets are being delayed /dropped , it understands there is something wrong with the network. Hence starts reducing the window size straight to half a peak load, it slowly starts incrementing the window size till the point it faces the dropping of packet.
    the below daigram might help you

    [​IMG]


    URL:#-Link-Snipped-#

    as you can see, the window size has been reduced to half when there is a bottleneck
  • king99

    king99

    @king99-bh2V1z Apr 12, 2011

    Thanks for the information , it helped me in understanding concept !!