サーバーの更新後にSSHが機能しなくなりましたか?どうした?


9

PKIベースのSSH接続を10年以上使用しています。突然、サーバーの更新後-一部の接続が機能しなくなりました。私は何年にもわたって使用してきたものと同じPKIキーを使用しています(各サーバーには独自のキーがあり、小さな個人用キーのセットがあります)。

動作しています-次のようになります:

C:\Users\michael>ssh2 -p 2222 root@192.168.129.64 date
Authentication successful.
Fri Nov 25 10:30:42  2016

機能していないように見えます:

C:\Users\michael>ssh2 root@192.168.129.64 date
warning: Authentication failed.
Disconnected; key exchange or algorithm negotiation failed (Algorithm negotiation failed.).

何が変わったの?


2
SSHをアップグレードまたは再構成するときは常に、現在の接続をデバッグ用に開いたまま、通常はすぐに別のSSH接続を開こうとします。このアプローチは、あなたのようなシナリオでのデバッグに役立ちます。サーバーにアクセスできますか?または、問題を解決するまで、サーバー側のログを参照するアクセス権がないクライアント側からこれをデバッグしようとしていますか?
kasperd 2016年

1
幸い、私はいつもサーバーにアクセスできました。一般的に、アップデートを適用するとき、私は「コンソール上」にいることを試みます-あなたが言及するような理由で。。私がここに表示するようにしようとしたことはどのようにデバッグすることは、いくつかのために働くとき(例えば、最近のパテ)ではなく、他の人(改善暗号、KEX、およびMACアルゴリズムを知らない例えば、14歳のSSHクライアントである
マイケル・フェルト

回答:


14

更新後-副作用が発生する可能性があります。OpenSSHの場合-デフォルトは頻繁に変更されます。OpenBSD(OpenSSHを保守/開発している人)は、下位互換性を気にしないようにOpenBSDのポリシーを持っています。これは、正常に機能していたものを「壊す」ことがあります。

大規模なヒントがあります-これが最初に発生したときに気づかなかった(GUIインターフェースを使用していて、それをクリックしただけで、「愚かな更新-新しいバージョンが壊れています」と怒っていた。新しいバージョンが判明した壊れていませんでした-しかしOpenSSH-6.7p1から始まるOpenBSD / OpenSSHが鍵交換のデフォルトを変更し始めています:http ://www.openssh.com/txt/release-6.7を参照してください

OpenSSH 6.6以降の変更

互換性がない可能性のある変更

  • sshd(8):
    安全でないアルゴリズムを削除するために、暗号とMACのデフォルトのセットが変更されました。特に、CBC暗号とarcfour *
    はデフォルトで無効になっています。


    CiphersおよびMACのsshd_configオプションを介して明示的に構成されている場合、アルゴリズムの完全なセットは引き続き使用可能です。

私の問題は、新しいデフォルトのない古いクライアントがあり、接続できないことです。

2つのソリューションパス:サーバーを修正/パッチするか、クライアントを修正/パッチします。

サーバーソリューション:「古い」クライアントが接続を継続できるように、「古い」設定を元に戻します。つまり、既存のクライアントに友好的です。sshd_configファイルを編集し、古い暗号を(十分な)追加します。

sshd_configで変更/追加する重要な行は次のとおりです。

ciphers aes128-ctr,aes192-ctr,aes256-ctr,chacha20-poly1305@openssh.com,aes256-cbc
KexAlgorithms  curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
macs hmac-sha2-256,hmac-sha2-512,hmac-sha1-96,hmac-sha1

追加するだけです:

# Ciphers
# The dafaults starting with OpenSSH 6.7 are:
# aes128-ctr,aes192-ctr,aes256-ctr,chacha20-poly1305@openssh.com
# older clients may need an older cipher, e.g.
# ciphers aes128-cbc,aes192-cbc,aes256-cbc,blowfish-cbc,arcfour
# only adding aes256-cbc as an "old" cipher

ciphers aes128-ctr,aes192-ctr,aes256-ctr,chacha20-poly1305@openssh.com,aes256-cbc

# KEX Key Exchange algorithms
# default from openssh 6.7 are:
# curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256,\
#  diffie-hellman-group14-sha1
# an older kex are: none,KexAlgorithms diffie-hellman-group1-sha1

# only adding diffie-hellman-group-sha1  as an "old" KEX
# and this should be deleted ASAP as it is clearly "one of the problems" with SSL based encryption
KexAlgorithms  curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1

# MAC message authentification code
# the new defaults are:
# umac-64-etm@openssh.com,umac-128-etm@openssh.com,
# hmac-sha2-256-etm@openssh.com,hmac-sha2-512-
# etm@openssh.com,
# umac-64@openssh.com,umac-128@openssh.com,
# hmac-sha2-256,hmac-sha2-512

# older defaults (still supported) are:
# macs hmac-sha1,hmac-md5

# consider removing hmac-sha1-96,hmac-sha1,hmac-md5 "Soon!"
macs hmac-sha2-256,hmac-sha2-512,hmac-sha1-96,hmac-sha1

解決策#2-クライアントを修正/交換する

現在のクライアントがサポートしている暗号(CLIを想定)を確認する簡単な方法はssh -h、次のようなものかどうかを確認することです。

Supported ciphers:
  3des-cbc,aes256-cbc,aes192-cbc,aes128-cbc,blowfish-cbc,twofish-cbc,twofish256-cbc,twofish192-cbc,twofish128-cbc,des-cbc@ssh.com,cast128-cbc,rc2-cbc@ssh.com,arcfour,none
Supported MAC algorithms:
  hmac-md5,hmac-md5-96,hmac-sha1,hmac-sha1-96,hmac-sha256@ssh.com,hmac-sha256-96@ssh.com,hmac-ripemd160@ssh.com,hmac-ripemd160-96@ssh.com,hmac-tiger128@ssh.com,hmac-tiger128-96@ssh.com,hmac-tiger160@ssh.com,hmac-tiger160-96@ssh.com,hmac-tiger192@ssh.com,hmac-tiger192-96@ssh.com,none

別の便利なコマンドは次のとおりです。 ssh -V

ssh2: SSH Secure Shell 3.2.9 Windows Client
Product: SSH Secure Shell for Workstations
License type: none (non-commercial)

私の-は-とても古いクライアント-私のデスクトップ用でした。上記を見ると、それが-15年後-推奨アルゴリズムのいずれもサポートしておらず、1つの-cbr(回転)ではなく、-cbc(ブロックコピー)のみをサポートしていることがわかります。

クライアントにサポートされているキーなどを提供するオプションがない場合(OpenSSHにはオプションがあるはずです-Q)、自分自身への接続を開始します。たとえば、ssh -v localhostワットがわかっていることを伝える次のような行があります。

debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug2: kex_parse_kexinit: ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-grousha1,diffie-hellman-group1-sha1
debug2: kex_parse_kexinit: ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,ssh-rsa-cert-v01@openssh.ssh-dss-cert-v01@openssh.com,ssh-rsa-cert-v00@openssh.com,ssh-dss-cert-v00@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-rsa,ssh-dss
debug2: kex_parse_kexinit: aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,aes256-cbc,arcfour,rijndael-cbc@lysatiu.se
...

そして、発見された(そして使用された)もの:

debug2: mac_setup: found hmac-sha1
debug1: kex: server->client aes128-ctr hmac-sha1 none
debug2: mac_setup: found hmac-sha1
debug1: kex: client->server aes128-ctr hmac-sha1 none

追加:失敗した接続からのデバッグ情報-詳細

または、試行されたが見逃したもの。

debug: OpenSSH: Major: 7 Minor: 3 Revision: 0
debug: Ssh2Transport: All versions of OpenSSH handle kex guesses incorrectly.
debug: Ssh2Transport: Algorithm negotiation failed for c_to_s_cipher: client list: aes128-cbc,3des-cbc,twofish128-cbc,cast128-cbc,twofish-cbc,blowfish-cbc,aes192-cbc,aes256-cbc,twofish192-cbc,twofish256-cbc,arcfour vs. server list : chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
debug: Ssh2Transport: Algorithm negotiation failed for s_to_c_cipher: client list: aes128-cbc,3des-cbc,twofish128-cbc,cast128-cbc,twofish-cbc,blowfish-cbc,aes192-cbc,aes256-cbc,twofish192-cbc,twofish256-cbc,arcfour vs. server list : chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
debug: Ssh2Transport: lang s to c: `', lang c to s: `'
debug: Ssh2Transport: Couldn't agree on kex or hostkey alg. (chosen_kex = NULL, chosen_host_key = ssh-rsa)
debug: Ssh2Common: DISCONNECT received: Algorithm negotiation failed.

編集:02-jan-2017を追加

新しいセクション-機能しなくなったキーはどうなりますか?

私のサーバーには「古い」クライアントと「最新の」クライアントがインストールされています-サーバーに接続すると異なる動作が発生します。ここでの問題は、暗号の不一致ではなく、DSAに基づく古風な PKIペアの使用です。

つまり、openssh-7(.3)はDSA公開鍵を(デフォルトでは、おそらくまったく)送信しません。

以下に、openssh
/ usr / bin / ssh(旧バージョン、左側)と
/ opt / bin / ssh(新バージョン、右側)の2つのバージョンの出力を比較します。コマンドは次のとおりです。

${version}/ssh -v user@host date

以下の出力をざっと見て、手順とメッセージがほぼ同じであることを確認してください。主な違いは、文字列SSH2_MSG_SERVICE_ACCEPTの後にあります

注目してほしいのは、古いバージョンではDSAベースのキーペアが提供されている(そして「古い」サーバーで受け入れられている)一方で、新しいサーバーではDSAベースのキーが提供されないことです。

注:このための「解決策」は、rsa、ecdsa、またはed25519ベースのPKIペア(の少なくとも1つ)を追加することです。

OpenSSH_6.0p1, OpenSSL 1.0.2h  3 May 2016                     | OpenSSH_7.3p1, OpenSSL 1.0.2h  3 May 2016
debug1: Reading configuration data /etc/ssh/ssh_config        | debug1: Reading configuration data /var/openssh/etc/ssh_confi
debug1: Failed dlopen: /usr/krb5/lib/libkrb5.a(libkrb5.a.so): <
        0509-026 System error: A file or directory in the pat <
                                                              <
debug1: Error loading Kerberos, disabling Kerberos auth.      <
debug1: Connecting to x061 [192.168.129.61] port 22.            debug1: Connecting to x061 [192.168.129.61] port 22.
debug1: Connection established.                                 debug1: Connection established.
debug1: identity file /home/michael/.ssh/id_rsa type 1          debug1: identity file /home/michael/.ssh/id_rsa type 1
                                                              > debug1: key_load_public: No such file or directory
debug1: identity file /home/michael/.ssh/id_rsa-cert type -1    debug1: identity file /home/michael/.ssh/id_rsa-cert type -1
debug1: identity file /home/michael/.ssh/id_dsa type 2          debug1: identity file /home/michael/.ssh/id_dsa type 2
                                                              > debug1: key_load_public: No such file or directory
debug1: identity file /home/michael/.ssh/id_dsa-cert type -1    debug1: identity file /home/michael/.ssh/id_dsa-cert type -1
debug1: identity file /home/michael/.ssh/id_ecdsa type 3        debug1: identity file /home/michael/.ssh/id_ecdsa type 3
                                                              > debug1: key_load_public: No such file or directory
debug1: identity file /home/michael/.ssh/id_ecdsa-cert type -   debug1: identity file /home/michael/.ssh/id_ecdsa-cert type -
debug1: Remote protocol version 2.0, remote software version  | debug1: key_load_public: No such file or directory
debug1: match: OpenSSH_6.0 pat OpenSSH*                       | debug1: identity file /home/michael/.ssh/id_ed25519 type -1
                                                              > debug1: key_load_public: No such file or directory
                                                              > debug1: identity file /home/michael/.ssh/id_ed25519-cert type
debug1: Enabling compatibility mode for protocol 2.0            debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.0              | debug1: Local version string SSH-2.0-OpenSSH_7.3
                                                              > debug1: Remote protocol version 2.0, remote software version
                                                              > debug1: match: OpenSSH_6.0 pat OpenSSH* compat 0x04000000
                                                              > debug1: Authenticating to x061:22 as 'padmin'
debug1: SSH2_MSG_KEXINIT sent                                   debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received                               debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none          | debug1: kex: algorithm: ecdh-sha2-nistp256
debug1: kex: client->server aes128-ctr hmac-md5 none          | debug1: kex: host key algorithm: ssh-rsa
                                                              > debug1: kex: server->client cipher: aes128-ctr MAC: umac-64@o
                                                              > debug1: kex: client->server cipher: aes128-ctr MAC: umac-64@o
debug1: sending SSH2_MSG_KEX_ECDH_INIT                          debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY                       debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: RSA 9f:0a:4d:a8:1b:ba:e6:d4:1a:b2:cd | debug1: Server host key: ssh-rsa SHA256:ORf5UVI7mRm/9MthM2qXM
debug1: Host 'x061' is known and matches the RSA host key.      debug1: Host 'x061' is known and matches the RSA host key.
debug1: Found key in /home/michael/.ssh/known_hosts:57          debug1: Found key in /home/michael/.ssh/known_hosts:57
debug1: ssh_rsa_verify: signature correct                     | debug1: rekey after 4294967296 blocks
debug1: SSH2_MSG_NEWKEYS sent                                   debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS                              debug1: expecting SSH2_MSG_NEWKEYS
                                                              > debug1: rekey after 4294967296 blocks
debug1: SSH2_MSG_NEWKEYS received                               debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server                         | debug1: Skipping ssh-dss key /home/michael/.ssh/id_dsa - not
debug1: SSH2_MSG_SERVICE_REQUEST sent                         <
debug1: SSH2_MSG_SERVICE_ACCEPT received                        debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password   debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey                   debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/michael/.ssh/id_rsa      debug1: Offering RSA public key: /home/michael/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password   debug1: Authentications that can continue: publickey,password
debug1: Offering DSA public key: /home/michael/.ssh/id_dsa    | debug1: Offering ECDSA public key: /home/michael/.ssh/id_ecds
debug1: Server accepts key: pkalg ssh-dss blen 433            | debug1: Authentications that can continue: publickey,password
debug1: read PEM private key done: type DSA                   | debug1: Trying private key: /home/michael/.ssh/id_ed25519
debug1: Authentication succeeded (publickey).                 | debug1: Next authentication method: keyboard-interactive
Authenticated to x061 ([192.168.129.61]:22).                  | debug1: Authentications that can continue: publickey,password
debug1: channel 0: new [client-session]                       | debug1: Next authentication method: password
debug1: Requesting no-more-sessions@openssh.com               | padmin@x061's password:
debug1: Entering interactive session.                         |

私はまた、ユーザーがここにDebianの8にアップグレードした時間Iによって廃止されたプロトコルと鍵不満だった
ルイFリベイロ

1
で宿泊しているだろう-私の窓のために、私は(ssh.comが唯一の企業に販売しています)パテに切り替えることを-私は言及を忘れてしまったssh2彼らが私を受け入れていた場合-主に行うことの容易さのためにscp同じ窓からの送迎をssh
マイケル・フェルト

1
何年も前のクライアントを使用して、壊れている可能性のあるアルゴリズムを有効にする代わりに、クライアントを更新します。
Jakuje 2016年

1
SSHキーのアップグレードをご覧ください詳細については、@ Jakujeが言うように、古いキー、古いクライアント、古いアルゴリズムを保持することは悪い考えです。
Stephen Kitt 2016年

鍵の年齢は問題ではありません、私見-種類とサイズ。「DSA」は出ており、「RSA」は少なくとも2048ビットです。'Better'はecdsaです。@Jakujeが言及しているように-このQ&Aについて-クライアントを更新しますが、デフォルトも更新します。クライアントとして、弱い(壊れた)アルゴリズムを提供しないことで、サーバーがより優れたアルゴリズムを使用するように「要求」できます。
Michael Felt
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.