关于计算机网络的问题。
假设在分组交换网络上,数据发送方发送数据的速度远快于数据接收方接收数据的速度?
原因是什么?以及,如何解决问题?
我的想法:发送者和接收者之间的路由拥塞。
另一个问题:
如何验证两个节点之间的链路有问题?例如断开的链接?我的想法:使用 tcproute 做测试
任何帮助,将不胜感激 !
谢谢 !
关于计算机网络的问题。
假设在分组交换网络上,数据发送方发送数据的速度远快于数据接收方接收数据的速度?
原因是什么?以及,如何解决问题?
我的想法:发送者和接收者之间的路由拥塞。
另一个问题:
如何验证两个节点之间的链路有问题?例如断开的链接?我的想法:使用 tcproute 做测试
任何帮助,将不胜感激 !
谢谢 !
Suppose on a packet switch network, a data sender send data much faster than the speed of receiving data on the data receiver.
What are the reasons?
One reason could be that the receiver has less bandwidth than the sender
how to solve the problem ?
if TCP is used, TCP's congestion control mechanism will solve this problem (the sender will adapt its sending rate to the bottleneck of the complete path to the receiver)
How to verify the link between two nodes have a problem ? such as a broken link ?
You can use ping or traceroute to check if there is a route between two hosts
假设在分组交换网络上,数据发送方发送数据的速度远快于数据接收方接收数据的速度?
原因是什么?以及,如何解决问题?
我的想法:发送者和接收者之间的路由拥塞。
两端处理速度的差异。解决:见TCP“窗口”
另一个问题:
如何验证两个节点之间的链路有问题?例如断开的链接?我的想法:使用 tcproute 做测试
使用 ping 或 traceroute 了解详细信息。