Linux服务器配置秘钥对连接
生活随笔
收集整理的這篇文章主要介紹了
Linux服务器配置秘钥对连接
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
[root@check2 ~]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): #回車(chē)即可
Enter passphrase (empty for no passphrase): #回車(chē)即可
Enter same passphrase again: #回車(chē)即可
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
3e:78:02:ef:b6:84:62:8e:52:4a:aa:39:64:cb:a1:96 root@check2
The key's randomart image is:
+--[ RSA 2048]----+
| |
| |
| |
| |
| . S |
| =. + o |
|Bo* . = + |
|*E . o.o . |
|B.. .o. |
+-----------------+
[root@check2 ~]# cd .ssh/
[root@check2 .ssh]# cat id_rsa.pub >> authorized_keys
[root@check2 .ssh]# chmod 600 authorized_keys
[root@check2 .ssh]# chmod 700 ~/.ssh
編輯sshd配置文件
[root@check2 .ssh]# vim /etc/ssh/sshd_config 47 RSAAuthentication yes48 PubkeyAuthentication yes42 PermitRootLogin yes61 IgnoreRhosts yes66 PasswordAuthentication no122 UseDNS no[root@check2 .ssh]# service sshd restart 停止 sshd: [確定] 正在啟動(dòng) sshd: [確定][root@check2 .ssh]# sz id_rsa導(dǎo)出后將id_rsa改個(gè)名字,然后導(dǎo)入Xshell
打開(kāi)Xshell,使用快捷鍵 Alt+T+U(alt鍵按著不松,依次按T,U)
導(dǎo)入剛才的文件
登錄遠(yuǎn)程機(jī)器
選擇剛才導(dǎo)入的文件確定即可
?
轉(zhuǎn)載于:https://www.cnblogs.com/LuckWJL/p/9050571.html
總結(jié)
以上是生活随笔為你收集整理的Linux服务器配置秘钥对连接的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: C中结构体的存储分配
- 下一篇: Linux,没你想象的那么安全!