如果我做 :
$ scp -l 1024 remote1:/path/to/file remote2:/path/to/destination
我可以看到,在remote1上使用nload,scp使用的带宽并不像我想象的那样限制为1024 kbits/s。
我找到了一个解决方法:
$ ssh remote1 'scp -l 1024 /path/to/file remote2:/path/to/destination'
但为了了解知识,我的第一个命令中的带宽限制不起作用是正常行为吗?