8

非常に遅延の大きいリンクを介して通常の (可能な限り通常の) ネットワーク操作 (電子メール、DNS、HTML など) を許可するように設計された、実験的なプロトコル、システムなどはありますか? 数分から1時間、あるいは2時間程度を考えています。太陽系のスケールでの光速度の遅れを考えてみてください。


補足として、時間単位から日単位のコミュニケーション遅延の社会的影響に関する調査または推測は興味深いでしょう。現在の傾向では、数秒から数分の遅延が発生する傾向があり (さらに、電子メールに気付くまでに時間がかかります)、電話前の時間は数日から数週間になる傾向がありますが、時間の範囲で最小の時間遅延を持つものは考えられません.

4

2 に答える 2

4

惑星間インターネットの概念に興味があるかもしれません。可能性のある基盤となるテクノロジーの 1 つはDelay-Tolerant ネットワーキングであり、これにはRFC 4838RFC 5050という 2 つの公開された RFC があります。

于 2010-05-12T22:59:25.853 に答える
2

tcp_timer.cから:

     /* Increase the timeout each time we retransmit.  Note that
      * we do not increase the rtt estimate.  rto is initialized
      * from rtt, but increases here.  Jacobson (SIGCOMM 88) suggests
      * that doubling rto each time is the least we can get away with.
      * In KA9Q, Karn uses this for the first few times, and then
      * goes to quadratic.  netBSD doubles, but only goes up to *64,
      * and clamps at 1 to 64 sec afterwards.  Note that 120 sec is
      * defined in the protocol as the maximum possible RTT.  I guess
      * we'll have to use something other than TCP to talk to the
      * University of Mars.
      *
      * PAWS allows us longer timeouts and large windows, so once
      * implemented ftp to mars will work nicely. We will have to fix
      * the 120 second clamps though!
      */

于 2010-05-12T22:56:49.083 に答える