修改方法:
修改/etc/hosts.allow文件,加入 sshd:ALL,然后重启sshd服务.
修改/etc/hosts.deny, 将 ALL: ALL 注释掉.
重启sshd
sh /etc/rc.d/init.d/ssh restart
或者 sh /etc/rc.d/init.d/sshd restart
[root@vm-10-xxx-xxx-xxx etc]# sh /etc/rc.d/init.d/sshd restart
Stopping sshd: [ OK ]
Starting sshd: [ OK ]
---------------------------------------------------------------------------
方法二:在/etc/hosts.allow 文件中加上 ----增加机器的白名单
sshd : 10.154.156.223 //ip 是要拷贝的源虚机地址
在运行 sh /etc/rc.d/init.d/sshd restart
就可以远程拷贝了
评论