建立密钥对
# 密钥锁码可输入指定密码,如果不输入就直接回车
ssh-keygen
在服务器上安装公钥
cd ~/.ssh/
cat id_rsa.pub >> ~/.ssh/authorized_keys
chmod 600 authorized_keys
chmod 700 ~/.ssh
SSH服务设置
# 编辑SSH配置文件
sudo vim /etc/ssh/sshd_config
# 密钥验证支持
RSAAuthentication yes
PubkeyAuthentication yes
# Root用户是否能通过SSH登录
PermitRootLogin no
# 关闭密码验证通道
PasswordAuthentication no
# 关闭DNS
UseDNS no
重启SSH服务
service sshd restart