SSH 金鑰生成

SSH 金鑰生成

所以我知道這是一個愚蠢的問題,但這只是我不知道正確術語的問題。

當您透過 ssh 登入 Amazon EC2 執行個體時,您需要提供一個具有下列參數-i的金鑰檔案:ssh

ssh -i mykeyfile.pem [email protected]

如何為內部伺服器產生金鑰文件,以便我可以透過產生的金鑰文件將腳本 ssh 到電腦中?

或者,如果密鑰檔案這個詞不正確,那麼技術術語是什麼mykeyfile.pem

答案1

您需要使用它ssh-keygen來產生 SSH 公鑰和私鑰。

您將私鑰(您ssh透過提供的檔案-i)保留在電腦上,並將公鑰推送到伺服器。

引用man ssh

 -i identity_file
             Selects a file from which the identity (private key) for public key authentication is read.

相關內容