自動ssh 為版本 2 生成 RSA 鑰匙對

heming96發表於2008-07-20
為版本 2 生成 RSA 鑰匙對 使用下列步驟來為 SSH 協議的版本 2 生成 RSA 鑰匙對。從 OpenSSH 2.9 開始,它已成為預設設定。[@more@]

15.3.4.1. 為版本 2 生成 RSA 鑰匙對

使用下列步驟來為 SSH 協議的版本 2 生成 RSA 鑰匙對。從 OpenSSH 2.9 開始,它已成為預設設定。

  1. 要生成 RSA 鑰匙對與協議的版本 2 合作,在 shell 提示下鍵入下列命令:

    ssh-keygen -t rsa

    接受 ~/.ssh/id_rsa 的預設位置。輸入一個與你的帳號口令不同的口令句,再輸入一次來確認。

    公鑰被寫入 ~/.ssh/id_rsa.pub。金鑰被寫入 ~/.ssh/id_rsa。決不能把金鑰出示給任何人。

  2. 使用 chmod 755 ~/.ssh 命令改變你的 .ssh 目錄的許可許可權。

  3. ~/.ssh/id_rsa.pub 的內容複製到你想連線的機器上的 ~/.ssh/authorized_keys 檔案中。如果 ~/.ssh/authorized_keys 不存在,你可以把 ~/.ssh/id_rsa.pub 檔案複製到那個機器上的 ~/.ssh/authorized_keys 檔案中。 注意每臺客戶端只能一行,不能分行,否則就提示 connect is closed 不能連線

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9614263/viewspace-1007522/,如需轉載,請註明出處,否則將追究法律責任。

相關文章