scp的风险意识

本文得到枯荣长老的大力指点,在此表示感谢。

 

man scp 
     -l limit
             Limits the used bandwidth, specified in Kbit/s


 

[root@rhel63single arch]# scp 1_143_807882551.dbf  192.168.80.175:/home/oracle/
The authenticity of host '192.168.80.175 (192.168.80.175)' can't be established.
RSA key fingerprint is 3e:0c:4b:33:6a:d4:d6:86:c1:14:41:79:b9:f1:78:34.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.80.175' (RSA) to the list of known hosts.
[email protected]'s password: 
Permission denied, please try again.
[email protected]'s password: 
1_143_807882551.dbf                                           100%   39MB  19.5MB/s   00:02  

然后在scp时加上速度限制:-l 1024 ,这个意思是说1024Kbit/s,也就是128KB/s

[root@rhel63single arch]# scp -l 1024  1_143_807882551.dbf  192.168.80.175:/home/oracle/
[email protected]'s password: 
1_143_807882551.dbf                                           100%   39MB 127.5KB/s   05:14    
[root@rhel63single arch]# 


 

你可能感兴趣的:(scp的风险意识)