GNU/Linux >> Linux の 問題 >  >> Linux

ssh-keygen と ssh-copy-id を使用してパスワードなしで SSH ログインを実行する 3 つの手順

ssky-keygen と ssh-copy を使用して、3 つの簡単な手順でパスワードを入力せずにリモートの Linux サーバーにログインできます。 -id はこの記事で説明されています。

ssh-keygen 公開鍵と秘密鍵を作成します。 ssh-copy-id ローカル ホストの公開鍵をリモート ホストのauthorized_keysファイルにコピーします。また、ssh-copy-id は、リモート ホストのホーム、~/.ssh、および ~/.ssh/authorized_keys に適切な権限を割り当てます。

この記事では、ssh-copy-id を使用する際の 3 つの小さな煩わしさと、ssh-agent と一緒に ssh-copy-id を使用する方法についても説明します。

ステップ 1:local-host で ssh-key-gen を使用して公開鍵と秘密鍵を作成する

jsmith@local-host$ [Note: You are on local-host here]

jsmith@local-host$ ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/home/jsmith/.ssh/id_rsa):[Enter key]
Enter passphrase (empty for no passphrase): [Press enter key]
Enter same passphrase again: [Pess enter key]
Your identification has been saved in /home/jsmith/.ssh/id_rsa.
Your public key has been saved in /home/jsmith/.ssh/id_rsa.pub.
The key fingerprint is:
33:b3:fe:af:95:95:18:11:31:d5:de:96:2f:f2:35:f9 jsmith@local-host

ステップ 2:ssh-copy-id を使用して公開鍵をリモート ホストにコピーする

jsmith@local-host$ ssh-copy-id -i ~/.ssh/id_rsa.pub remote-host
jsmith@remote-host's password:
Now try logging into the machine, with "ssh 'remote-host'", and check in:

.ssh/authorized_keys

to make sure we haven't added extra keys that you weren't expecting.

注: ssh-copy-id 追加 リモートホストの .ssh/authorized_key への鍵。

ステップ 3:パスワードを入力せずにリモート ホストにログインする

jsmith@local-host$ ssh remote-host
Last login: Sun Nov 16 17:22:33 2008 from 192.168.1.2
[Note: SSH did not ask for password.]

jsmith@remote-host$ [Note: You are on remote-host here]


ほとんどの場合、上記の 3 つの簡単な手順で作業が完了します。

パスワードを入力せずに openSSH から openSSH へ SSH および SCP を実行する方法については、以前に詳しく説明しました。

SSH2 を使用している場合は、SSH2 から SSH2 へ、OpenSSH から SSH2 へ、SSH2 から OpenSSH へ、パスワードなしで SSH と SCP を実行する方法について前述しました。

ssh-copy-id を ssh-add/ssh-agent とともに使用する

オプション -i に値が渡されない場合 ~/.ssh/identity.pub の場合 ssh-copy-id は利用できません 次のエラー メッセージが表示されます。

jsmith@local-host$ ssh-copy-id -i remote-host
/usr/bin/ssh-copy-id: ERROR: No identities found


ssh-agent にキーをロードした場合 ssh-add を使用する 、次に ssh-copy-id ssh-agent からキーを取得します リモートホストにコピーします。つまり、ssh-add -L によって提供されるキーをコピーします オプション -i を渡さない場合、リモート ホストへのコマンド ssh-copy-id に .

jsmith@local-host$ ssh-agent $SHELL

jsmith@local-host$ ssh-add -L
The agent has no identities.

jsmith@local-host$ ssh-add
Identity added: /home/jsmith/.ssh/id_rsa (/home/jsmith/.ssh/id_rsa)

jsmith@local-host$ ssh-add -L
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAsJIEILxftj8aSxMa3d8t6JvM79DyBV
aHrtPhTYpq7kIEMUNzApnyxsHpH1tQ/Ow== /home/jsmith/.ssh/id_rsa

jsmith@local-host$ ssh-copy-id -i remote-host
jsmith@remote-host's password:
Now try logging into the machine, with "ssh 'remote-host'", and check in:

.ssh/authorized_keys

to make sure we haven't added extra keys that you weren't expecting.
[Note: This has added the key displayed by ssh-add -L]

ssh-copy-id の 3 つの小さな煩わしさ

以下は、ssh-copy-id の小さな問題点です。

<オール>
  • デフォルトの公開鍵: ssh-copy-id は ~/.ssh/identity.pub をデフォルトの公開鍵ファイルとして使用します (つまり、option -i に値が渡されない場合) )。代わりに、id_dsa.pub、id_rsa.pub、または identity.pub をデフォルトのキーとして使用することを望みます。つまり、それらのいずれかが存在する場合は、それをリモートホストにコピーする必要があります。それらが 2 つまたは 3 つ存在する場合は、identity.pub をデフォルトとしてコピーする必要があります。
  • エージェントには ID がありません: ssh-agent 実行中で、ssh-add -L ssh-copy-id は、「The agent has no identities」を返します (つまり、ssh-agent にキーが追加されません)。ssh-copy-id は、「The agent has no identity」というメッセージをリモート ホストのauthorized_keys エントリにコピーします。
  • authorized_keys の重複エントリ: ssh-copy-id がリモートホストのauthorized_keys の重複エントリを検証することを望みます.ローカルホストで ssh-copy-id を複数回実行すると、重複をチェックせずに、リモートホストのauthorized_keysファイルに同じキーが追加され続けます。エントリが重複していても、すべてが期待どおりに機能します。しかし、authorized_keys ファイルを整理したいと考えています。

  • この記事が気に入ったら、Delicious にブックマークしてください そしてつまずく .


    Linux
    1. SSH2 から OpenSSH にパスワードなしで SSH および SCP を実行する方法

    2. SSH パスワードを再入力せずに「git pull」を実行するにはどうすればよいですか?

    3. TigerVNC + VNC パスワードなしの SSH?

    1. パスワードなしのキーを使用して SSH ログインが機能しませんか?

    2. ssh を使用して初めてログインするときに、ユーザーにパスワードの変更を強制するにはどうすればよいですか?

    3. パスワードなしでsshコマンドをsudoコマンドをリモートで実行する方法

    1. パスワードなしでSSHログインを設定する方法

    2. パスワードレスログインSSH– CentOS 6 / RHEL 6

    3. パラメータとしてクリアテキストパスワードを使用したSSHログイン??