したがって、私はパスワードなしで認証しようとするのに苦労しています。これが私のすべてのステップです。
ソースホストでssh-keygenを使用して、ファイルを空白のキーフレーズでデフォルトディレクトリに保存します(入力)drwx ------ 2 root root 4096 Dec 11 18:08 .sshはファイルの権限です。
ssh-keyscan 192.168.117.131>既知のホスト
ssh-copy-id [email protected]および入力された「ユーザーの」パスワード。パスワードを入力した後、私は得ました:
ssh-copy-id [email protected] /usr/bin/ssh-copy-id:INFO:新しいキーでログインして、すでにインストールされているキーをすべて除外しようとしている /usr/bin/ssh-copy-id:INFO:インストールするキーが1つ残っています-プロンプトが表示されたら、新しいキーをインストールするように求められます [email protected] ' sパスワード: 追加されたキーの数:1 次に、「ssh '[email protected]'」でマシンにログインしてみます。 「 そして、必要なキーのみが追加されたことを確認してください。
リモートホスト
drwxr-xr-x 2 user user 4096 Dec 12 08:27 .ssh
そして
-rwxr-xr-x 1 user user 391 Dec 12 08:27 authorized_keys
私のsshd_configファイルには次の設定があります。
#LoginGraceTime 2m
#PermitRootLogin prohibit-password
StrictModes no
#MaxAuthTries 6
#MaxSessions 10
PubkeyAuthentication yes
# Expect .ssh/authorized_keys2 to be disregarded by default in future.
AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
/etc/init.d/ssh restart
ソースサーバーからもう一度SSHを試行しましたが、まだパスワードを要求しています。
これも私のデバッグログです:
root@kali:~/.ssh# ssh -v [email protected]
OpenSSH_7.4p1 Debian-10, OpenSSL 1.0.2k 26 Jan 2017
debug1: Reading configuration data /root/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to 192.168.117.131 [192.168.117.131] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.4p1 Debian-10
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.5p1 Ubuntu-10
debug1: match: OpenSSH_7.5p1 Ubuntu-10 pat OpenSSH* compat 0x04000000
debug1: Authenticating to 192.168.117.131:22 as 'user'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256
debug1: kex: Host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none
debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server Host key: ecdsa-sha2-nistp256 SHA256:uGQe2r9lvKFm6w5p5jInX8Ywrg2PmICccUvC+q+Wc18
debug1: Host '192.168.117.131' is known and matches the ECDSA Host key.
debug1: Found key in /root/.ssh/known_hosts:3
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey after 134217728 blocks
debug1: Skipping ssh-rsa key /root/.ssh/id_rsa - not in PubkeyAcceptedKeyTypes
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<ssh-ed25519,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521>
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/id_dsa
debug1: Trying private key: /root/.ssh/id_ecdsa
debug1: Trying private key: /root/.ssh/id_ed25519
debug1: Next authentication method: password
[email protected]'s password:
助けてください、私は過去2日間これを理解しようとしてきました。
ありがとう!
デバッグメッセージから、ローカルsshに設定変更が必要なようです。 RSAキーをスキップして、ローカルssh debug1:
を確認できます。
debug1: Skipping ssh-rsa key /root/.ssh/id_rsa - not in PubkeyAcceptedKeyTypes
このオプションの設定方法は、ssh_config
のmanページをチェックして確認できます。
PubkeyAcceptedKeyTypes
Specifies the key types that will be used for public key authentication as a comma-separated pattern list. Alternately if the speci‐
fied value begins with a ‘+’ character, then the key types after it will be appended to the default instead of replacing it. If the
specified value begins with a ‘-’ character, then the specified key types (including wildcards) will be removed from the default set
instead of replacing them. The default for this option is:
[email protected],
[email protected],
[email protected],
[email protected],
[email protected],
ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,
ssh-ed25519,ssh-rsa
The list of available key types may also be obtained using "ssh -Q key".
したがって、ssh構成を照会します。
ssh -Q key
ローカルのsshクライアントに受け入れられるすべてのキータイプを生成する必要があります。
あなたの設定は標準のデフォルト設定ではないようです。これはおそらく、実行しているGNU/Linuxの専用バージョン「Kali」が原因であると思われます。
ホスト上で~/.ssh
ディレクトリは、ユーザー(drwx------
) そしてその authorized_keys
ファイルは同じである必要があります(-rw-------
)。
そうでない場合は、SSHによって無視されます。
キーが読み込まれ、現在の環境でアクセスが設定されたエージェントが実行されていますか? sshクライアントをドアの鍵、sshdサーバーをそのドアの鍵と考える場合、エージェントに鍵をロードすることは、鍵を携帯して実際に挿入する必要があると考えることができます。ドアを開けたいときのロック。
次のようにssh-add
-lで確認できます。
$ ssh-add -l
2048 SHA256:Y0NxbfZjsvauyER2jjUqh5gysMyvawKKrYStcqWg6Ks user@Nhostname (RSA)
# An agent is running and accessible, and a key is loaded
ssh-agent
のmanページ は、これをどのように使用するかを開始する場所であり、 ここにたくさんの回答があります もあります。