生成密钥
ssh-keygen -t rsa
生成完毕后会有以下两个文件
-rw------- 1 wangtao staff 2.6K 8 16 20:03 id_rsa -rw-r--r-- 1 wangtao staff 561B 8 16 20:03 id_rsa.pub
服务器配置
有两种办法:
- 手动将id_rsa.pub写入到主机的/root/.ssh/authorized_keys中。
- 在生成了密钥的设备上使用ssh-copy-id -i id_rsa.pub路径 username@ip进行写入
禁用密码登陆
修改 /etc/ssh/sshd_config,并将PasswordAuthentication yes 改为PasswordAuthentication no即可
评论前必须登录!
注册