最終更新:2015-12-22 (火) 10:46:51 (3379d)
OpenSSH
Top / OpenSSH
開発者とか
- OpenSSH is developed by a few developers of the OpenBSD Project and made available under a BSD-style license.
鍵の形式
- RSA1鍵(ssh version1)
% ssh-keygen -t rsa1 -C "任意のコメント" 作成される秘密鍵: ~/.ssh/identity 作成される公開鍵: ~/.ssh/identity.pub
- RSA鍵(ssh version2)
% ssh-keygen -t rsa -C "任意のコメント" 作成される秘密鍵: ~/.ssh/id_rsa 作成される公開鍵: ~/.ssh/id_rsa.pub
- DSA鍵(ssh version2)
% ssh-keygen -t dsa -C "任意のコメント" 作成される秘密鍵: ~/.ssh/id_dsa 作成される公開鍵: ~/.ssh/id_dsa.pub