Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ssh/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在不稳定的internet连接中使用SSH?_Ssh_Connection_Udp - Fatal编程技术网

如何在不稳定的internet连接中使用SSH?

如何在不稳定的internet连接中使用SSH?,ssh,connection,udp,Ssh,Connection,Udp,有时,我被迫在不稳定的internet连接上使用ssh ping some.doma.in PING some.doma.in (x.x.x.x): 56 data bytes Request timeout for icmp_seq 0 Request timeout for icmp_seq 1 Request timeout for icmp_seq 2 64 bytes from x.x.x.x: icmp_seq=3 ttl=44 time=668.824 ms Request tim

有时,我被迫在不稳定的internet连接上使用ssh

ping some.doma.in
PING some.doma.in (x.x.x.x): 56 data bytes
Request timeout for icmp_seq 0
Request timeout for icmp_seq 1
Request timeout for icmp_seq 2
64 bytes from x.x.x.x: icmp_seq=3 ttl=44 time=668.824 ms
Request timeout for icmp_seq 4
Request timeout for icmp_seq 5
Request timeout for icmp_seq 6
Request timeout for icmp_seq 7
64 bytes from x.x.x.x: icmp_seq=8 ttl=44 time=719.034 ms
有没有办法使用工具来提高tcp连接的可靠性(首先是ssh)

我想象一个类似SSH代理的东西,它运行在一台连接良好的机器上,它将接收UDP数据包,使用更高的网络层协议对它们进行排序,使用SSH将它们转发到目标服务器,并回复到源服务器

或者是否有任何ssh命令行开关来启用更多的数据冗余或其他任何东西来避免“断管”

或者可能是一个客户端-服务器应用程序,它使用bittorrent网络分发数据包,并允许将命令来回转发到ssh。(=高延迟但高可靠性)

//我试过屏幕之类的东西,但有时连接太不可靠,无法有效工作


干杯,预祝你好运

经过更多的研究和一些运气,我偶然发现了莫斯


太神奇了。使用UDP和许多小东西(如回声预测)的客户机-服务器实现。每个人都应该使用它。

只是要指出,SSH实际上并不使用SSL/TLS。(你的问题表明你相信这可能是真的。)谢谢布鲁诺,我学到了一些东西并修改了课文!:)顺便说一下,我找到了我想要的东西。。。让我看看。