首頁 > 軟體

如何在 CentOS / RHEL 上設定 SSH 免密碼登入

2020-06-16 17:46:55

作為系統管理員,你計劃在 Linux 上使用 OpenSSH,完成日常工作的自動化,比如檔案傳輸、備份資料庫轉儲檔案到另一台伺服器等。為實現該目標,你需要從主機 A 能自動登入到主機 B。自動登入也就是說,要在 shell 指令碼中使用ssh,而無需要輸入任何密碼。

本文會告訴你怎樣在 CentOS/RHEL 上設定 SSH 免密碼登入。自動登入設定好以後,你可以通過它使用 SSH (Secure Shell)和安全複製 (SCP)來移動檔案。

SSH 是開源的,是用於遠端登入的最為可靠的網路協定。系統管理員用它來執行命令,以及通過 SCP 協定在網路上向另一台電腦傳輸檔案。

通過設定 SSH 免密碼登入,你可以享受到如下的便利:

  • 用指令碼實現日常工作的自動化。
  • 增強 Linux 伺服器的安全性。這是防範虛擬專用伺服器(VPS)遭受暴力破解攻擊的一個推薦的方法,SSH 金鑰單憑暴力破解是幾乎不可攻破的。

 

什麼是 ssh-keygen

ssh-keygen 是一個用來生成、建立和管理 SSH 認證用的公私鑰的工具。通過 ssh-keygen 命令,使用者可以建立支援SSH1 和 SSH2 兩個協定的金鑰。ssh-keygen 為 SSH1 協定建立 RSA 金鑰,SSH2 則可以是 RSA 或 DSA。

 

什麼是 ssh-copy-id

ssh-copy-id 是用來將本地公鑰拷貝到遠端的 authorizedkeys 檔案的指令碼命令,它還會將身份標識檔案追加到遠端機器的 ~/.ssh/authorizedkeys 檔案中,並給遠端主機的使用者主目錄適當的的許可權。

 

SSH 金鑰

SSH 金鑰為登入 Linux 伺服器提供了更好且安全的機制。執行 ssh-keygen 後,將會生成公私金鑰對。你可以將公鑰放置到任意伺服器,從持有私鑰的用戶端連線到伺服器的時,會用它來解鎖。兩者匹配時,系統無需密碼就能解除鎖定。

 

在 CentOS 和 RHEL 上設定免密碼登入 SSH

以下步驟在 CentOS 5/6/7、RHEL 5/6/7 和 Oracle Linux 6/7 上測試通過。

節點1 : 192.168.0.9 節點2 : 192.168.l.10

 

步驟1 :

測試節點1到節點2的連線和存取:

  1. [root@node1 ~]#ssh root@192.168.0.10
  2. The authenticity of host '192.168.0.10 (192.168.0.10)' can't be established.
  3. RSA key fingerprint is 6d:8f:63:9b:3b:63:e1:72:b3:06:a4:e4:f4:37:21:42.
  4. Are you sure you want to continue connecting (yes/no)? yes
  5. Warning: Permanently added '192.168.0.10' (RSA) to the list of known hosts.
  6. root@192.168.0.10's password:
  7. Lastlogin:ThuDec1022:04:552015from192.168.0.1
  8. [root@node2 ~]#

 

步驟二:

使用 ssh-key-gen 命令生成公鑰和私鑰,這裡要注意的是可以對私鑰進行加密保護以增強安全性。

  1. [root@node1 ~]#ssh-keygen
  2. Generatingpublic/private rsa key pair.
  3. Enterfilein which to save the key (/root/.ssh/id_rsa):
  4. Enter passphrase (emptyforno passphrase):
  5. Enter same passphrase again:
  6. Your identification has been saved in/root/.ssh/id_rsa.
  7. Yourpublic key has been saved in/root/.ssh/id_rsa.pub.
  8. The key fingerprint is:
  9. b4:51:7e:1e:52:61:cd:fb:b2:98:4b:ad:a1:8b:31:6d root@node1.ehowstuff.local
  10. The key's randomart image is:
  11. +--[ RSA 2048]----+
  12. | . ++ |
  13. | o o o |
  14. | o o o . |
  15. | . o + .. |
  16. | S . . |
  17. | . .. .|
  18. | o E oo.o |
  19. | = ooo. |
  20. | . o.o. |
  21. +-----------------+

 

步驟三:

用 ssh-copy-id 命令將公鑰複製或上傳到遠端主機,並將身份標識檔案追加到節點2的 ~/.ssh/authorized_keys 中:

  1. [root@node1 ~]#ssh-copy-id-i ~/.ssh/id_rsa.pub 192.168.0.10
  2. root@192.168.0.10's password:
  3. Now try logging into the machine, with "ssh '192.168.0.10'", and check in:
  4. .ssh/authorized_keys
  5. to make sure we haven't added extra keys that you weren't expecting.

 

步驟四:

驗證免密碼 SSH 登入節點2:

  1. [root@node1 ~]#ssh root@192.168.0.10
  2. Lastlogin:SunDec1314:03:202015from www.ehowstuff.local

我希望這篇文章能幫助到你,為你提供 SSH 免密碼登入 CentOS / RHEL 的基本認知和快速指南。

下面關於SSH相關的文章您也可能喜歡,不妨參考下:

Ubuntu 下設定 SSH服務全過程及問題解決 http://www.linuxidc.com/Linux/2011-09/42775.htm

Ubuntu 14.04 下安裝Samba 及SSH ???務端的方法 http://www.linuxidc.com/Linux/2015-01/111971.htm

SSH服務遠端存取Linux伺服器登陸慢 http://www.linuxidc.com/Linux/2011-08/39742.htm

提高Ubuntu的SSH登陸認證速度的辦法 http://www.linuxidc.com/Linux/2014-09/106810.htm

開啟SSH服務讓Android手機遠端存取 Ubuntu 14.04  http://www.linuxidc.com/Linux/2014-09/106809.htm

如何為Linux系統中的SSH新增雙重認證 http://www.linuxidc.com/Linux/2014-08/105998.htm

在 Linux 中為非 SSH 使用者設定 SFTP 環境 http://www.linuxidc.com/Linux/2014-08/105865.htm

Linux 上SSH 服務的設定和管理 http://www.linuxidc.com/Linux/2014-06/103627.htm


原載: http://www.ehowstuff.com/ssh-login-without-password-centos/

作者:skytech 譯者:fw8899 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出

本文永久更新連結地址http://www.linuxidc.com/Linux/2016-01/127525.htm


IT145.com E-mail:sddin#qq.com