SSHはパブキーをスキップしてパスワードを要求し続けます


52

リモートサーバーにSSH接続するたびに、パスワードを入力する必要があります。次を使用して、公開キー(id_dsa.pub)をリモートサーバーにコピーしました。

ssh-copy-id -i id_dsa.pub user@server

authorized_keysに正しく追加されたことを確認しました。すべてのファイル/ディレクトリ許可が正しい:

~user 755
~user/.ssh 700
~user/.ssh/authorized_keys 640
~user/.ssh/id_dsa.pub 644

/ etc / ssh / sshd_configのPasswordAuthenticationフィールドはyesに設定されています。sshdをデバッグモードにし、sshコマンドに冗長スイッチを追加しました。サーバーは、次の行のためにid_pub.dsaを使用しようとしなかったという印象を受けます。

Skipping ssh-dss key: ........... not in PubkeyAcceptedKeyTypes

サーバー側に暗号化されたディスクはありません。進歩するためのアイデアはありますか?sshデーモンのデバッグ情報は次のとおりです。

sudo /usr/sbin/sshd -d
====
debug1: sshd version OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: key_parse_private2: missing begin marker
debug1: read PEM private key done: type RSA
debug1: private host key: #0 type 1 RSA
debug1: key_parse_private2: missing begin marker
debug1: read PEM private key done: type DSA
debug1: private host key: #1 type 2 DSA
debug1: key_parse_private2: missing begin marker
debug1: read PEM private key done: type ECDSA
debug1: private host key: #2 type 3 ECDSA
debug1: rexec_argv[0]='/usr/sbin/sshd'
debug1: rexec_argv[1]='-d'
Set /proc/self/oom_score_adj from 0 to -1000
debug1: Bind to port 22 on 0.0.0.0.
Server listening on 0.0.0.0 port 22.
debug1: Bind to port 22 on ::.
Server listening on :: port 22.
debug1: Server will not fork when running in debugging mode.
debug1: rexec start in 5 out 5 newsock 5 pipe -1 sock 8
debug1: inetd sockets after dupping: 3, 3
Connection from xxx port 63521 on yyy port 22
debug1: Client protocol version 2.0; client software version OpenSSH_7.1
debug1: match: OpenSSH_7.1 pat OpenSSH* compat 0x04000000
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.3
debug1: permanently_set_uid: 115/65534 [preauth]
debug1: list_hostkey_types: ssh-rsa,ssh-dss,ecdsa-sha2-nistp256 [preauth]
debug1: SSH2_MSG_KEXINIT sent [preauth]
debug1: SSH2_MSG_KEXINIT received [preauth]
debug1: kex: client->server chacha20-poly1305@openssh.com <implicit> none [preauth]
debug1: kex: server->client chacha20-poly1305@openssh.com <implicit> none [preauth]
debug1: expecting SSH2_MSG_KEX_ECDH_INIT [preauth]
debug1: SSH2_MSG_NEWKEYS sent [preauth]
debug1: expecting SSH2_MSG_NEWKEYS [preauth]
debug1: SSH2_MSG_NEWKEYS received [preauth]
debug1: KEX done [preauth]
debug1: userauth-request for user damian service ssh-connection method none [preauth]
debug1: attempt 0 failures 0 [preauth]
debug1: PAM: initializing for "damian"
debug1: PAM: setting PAM_RHOST to "freebox-server.local"
debug1: PAM: setting PAM_TTY to "ssh"
Connection closed by xxxx [preauth]
debug1: do_cleanup [preauth]
debug1: monitor_read_log: child log fd closed
debug1: do_cleanup

sshの詳細な出力は次のとおりです。

$ ssh -v user@server
OpenSSH_7.1p1, OpenSSL 1.0.2d 9 Jul 2015
debug1: Connecting to server [xxxx] port 22.
debug1: Connection established.
debug1: key_load_public: No such file or directory
debug1: identity file /home/user/.ssh/id_rsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/user/.ssh/id_rsa-cert type -1
debug1: identity file /home/user/.ssh/id_dsa type 2
debug1: key_load_public: No such file or directory
debug1: identity file /home/user/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/user/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/user/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/user/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/user/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.3
debug1: match: OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.3 pat OpenSSH_6.6.1* compat 0x04000000
debug1: Authenticating to server:22 as 'user'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client chacha20-poly1305@openssh.com <implicit> none
debug1: kex: client->server chacha20-poly1305@openssh.com <implicit> none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:v4BNHM0Q33Uh6U4VHenA9iJ0wEyi8h0rFVetbcXBKqA
debug1: Host 'server' is known and matches the ECDSA host key.
debug1: Found key in /home/user/.ssh/known_hosts:2
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Trying private key: /home/user/.ssh/id_rsa
debug1: Skipping ssh-dss key /home/user/.ssh/id_dsa for not in PubkeyAcceptedKeyTypes
debug1: Trying private key: /home/user/.ssh/id_ecdsa
debug1: Trying private key: /home/user/.ssh/id_ed25519
debug1: Next authentication method: password
user@server's password:

1
同じ問題(および本質的に同じソリューション)については、superuser.com / q / 1016989/93541も参照してください。
DW

宛先のsshd_configにPubkeyAuthentication noがある場合、常にパスワードの入力を求められることに注意してください。yesに設定し、sshdを(宛先ホストで)再起動して、pubkey認証を有効にします。
C.ケリー

回答:


84

新しいopensshバージョン(7.0+)は非推奨のDSAキーであり、デフォルトではDSAキーを使用していません(サーバーまたはクライアント上ではありません)。キーはもう使用することは好ましくないため、可能であれば、RSAキー使用することをお勧めします

本当にDSAキーを使用する必要がある場合は、クライアント構成で明示的に許可する必要があります。

PubkeyAcceptedKeyTypes +ssh-dss

~/.ssh/config冗長メッセージがあなたに伝えようとしているので、その行を入れるのに十分なはずです。


5
1、より良いアドバイス他、非は非推奨、キータイプを使用することです...
jasonwryan

@jasonwryanコメントありがとうございます。もちろん。答えを更新します。
Jakuje

おかげさまで!それは理にかなっています、私はdsaがオールドハットだとは知りませんでした。新しいキーペアssh-keygenrsaがデフォルトになりました。明日、他のマシンからこれでログインしようとします。
ダモ

あなたがしている場合は~/.ssh/config存在しないだけで、それを作成します。また、corectパーミッションを忘れずに設定してください:chmod 600 ~/.ssh/config
フロリアン・ブラッカー

@knbはそうしません。すべての楕円曲線アルゴリズムを削除したため、将来的に他のアルゴリズムを使用することは避けられます。
-Jakuje

2

私の場合、別のユーザーがAuthorizedKeysFile場所を変更したため、この問題が発生していました。authorized_keysこの場所には他のユーザーがいないためauthorized_keys、デフォルトのホームディレクトリに適切なアクセス許可が存在していても、ログインはデフォルトでパスワードになります。

AuthorizedKeysFile   /etc/ssh/%u/authorized_keys

この変更された行をコメントアウトし、sshdサービスを再起動してデフォルト設定に戻します。これにより、他のユーザーがキーを使用して認証できるようになりました。


SELinuxコンテキストがユーザーのhomedirで適切に初期化されなかったRHEL7システムで同様の問題を解決したので、sshは標準のアクセス許可にもかかわらず認証されたキーファイルを読み取ることができませんでした。最終的にはrestorecon -Rv /home、同じシステムで正しく設定されていない他のユーザーのために修正するために実行しました。
ダニーザウアー

1

Jakuje's Answer No luckを試しました。しかし、そこから問題を理解しています。コメントを追加しようとしましたが、なぜアンサーを追加するのかという評判が必要です。

しかし、私のための構成ファイル/ etc / ssh / ssh_config

  1. sudo nano /etc/ssh/ssh_config
  2. PubkeyAcceptedKeyTypes +ssh-dss この行を下部に追加しました。
  3. 保存して再試行します。

働いた!


1

raspberry PiSSH接続するために私がしたことを要約するだけです。

サーバーマシン(raspberry Pi)の場合:

$ ip addr show 

または単にip a、これはPiマシンのIPアドレスを表示します-host_ip

$ mkdir .ssh

クライアントマシン(ubuntu):

$ ssh-keygen -t rsa  

上記の@Jakujeの功績。私は当初、鍵の生成にssh-keygen -t dsaを使用していましたが、sshはパスワードを尋ね続けました。ssh -v ip-addressは、@ Jakujeの答えを見るまで、有用な情報を提供しません。

$ cat .ssh/id_rsa.pub | ssh user_id@host_ip 'cat >> ~/.ssh/authorized_keys'  

user_idとhost_ipを置き換えます。プロンプトが表示されたら、Piマシンのパスワードを入力します

$ ssh user@ip_address

PIに正常にログインし、パスワードは不要


0

dsaは私には機能しませんでした。rsaがやった。

ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
cat /Users/user_name/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys

そして、私はパスワードなしでsshすることができます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.