ftp 和 rsync 上传速度受限

ftp 和 rsync 上传速度受限

我通过 rsync 上传文件,发现我的上传速度比 ISP 允许的速度慢 10 倍:

rsync -a --info=progress2 --human-readable --rsh="sshpass -p pass ssh -l me8" folder username@host:~/public_html/

我尝试添加 -c arcfour 选项来降低加密级别,但没有成功:

rsync -a --info=progress2 --human-readable --rsh="sshpass -p pass ssh -c arcfour -l me8" folder username@host:~/public_html/

我也尝试使用 ncftp 因为我真的不需要加密,但我仍然得到相同的限制:

ncftpput -u username -p pass -R host /public_html/ ./folder/

现在,如果我通过浏览器上传文件,或者在“速度测试”网站上测试我的连接,我将获得 ISP 允许的完整上传速度。

请注意,我在虚拟机上运行 Ubuntu 16.04,主机是 Windows 机器,并且我在这台 Windows 机器上发现了同样的问题:上传速度在 Filezilla 中受到限制,但在浏览器中不受限制。

我现在不知道要检查什么,有什么想法吗?

相关内容