[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:38692] Re: ssh



At Wed, 5 Nov 2003 21:57:09 +0900,
misoyuki@xxxxxxxxxxxxxxxx wrote:

| 「秘密鍵」と「公開鍵」を作るため
| misoyuki@ibm97142yt:~$ ssh-keygen -t rsa <==とすると
| Generating public/private rsa key pair. <==こうなって
| Enter file in which to save the key (/home/misoyuki/.ssh/id_rsa):<==こうなりますが
| 
| woodyでは↑上記 /home/misoyuki/.ssh/のなかにできるファイル名は"id_rsa"と"id_rsa.pub"でいいのでしょうか?

man ssh-keygen によると.

     $HOME/.ssh/id_rsa
             Contains the protocol version 2 RSA
             authentication identity of
             the user.  
# プロトコルバージョン 2 の RSA 用の秘密鍵です.

     $HOME/.ssh/id_rsa.pub
             Contains the protocol version 2 RSA public key
             for authentication. 
# プロトコルバージョン 2 の RSA 用の公開鍵です.

インストール時に sshd は プロトコルバージョン 2 only でいいか?
とか聞いて来たと思うので,Yes で答えているなら sshd_config辺
りに Protocol 2 設定されていると思います.

| 他のHPでは"identity"と"identity.pub"ができて

    $HOME/.ssh/identity
             Contains the protocol version 1 RSA
             authentication identity of
             the user. 
# プロトコルバージョン 1 の RSA 用の秘密鍵です.

     $HOME/.ssh/identity.pub
             Contains the protocol version 1 RSA public key
             for authenticaion.  
# プロトコルバージョン 1 の RSA 用の公開鍵です.

# プロトコルバージョン1 の Key を作るなら 
# % ssh-keygen -t rsa1 かな.
--
KAWABE, Tsuyoshi