赞
踩
1.生成RSA秘钥
#ssh-keygen -t rsa
2.在服务器上安装公钥
#cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys
3.设置权限
#chmod 600 /root/.ssh/authorized_keys
#chmod 700 /root/.ssh/
4.编辑SSH配置文件,打开秘钥登录,关闭密码登录(建议测试秘钥登录成功再关闭)
#vim /etc/ssh/sshd_config
RSAAuthentication yes #RSA身份验证:yes开启no关闭
PubkeyAuthentication yes #公钥身份验证:yes开启no关闭
PermitRootLogin yes #允许root登录:yes开启no关闭
PasswordAuthentication no #密码登录方式:yes开启no关闭
5.使用lrzsz把秘钥从服务器下载保存到本地
#yum install -y lrzsz #安装lrzsz
#sz .ssh/id_rsa #sz下载文件到默认下载位置,rz上传文件到服务器
5.重启ssh服务
#systemctl restart sshd
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。