1. ホーム
  2. java

[解決済み] JSchException: アルゴリズムネゴシエーション失敗

2022-02-01 20:44:08

質問

JSch (0.1.44-1) を使って ssh でリモートの sftp サーバーに接続しようとしているのですが session.connect(); この例外が発生します。

com.jcraft.jsch.JSchException: Algorithm negotiation fail at 
com.jcraft.jsch.Session.receive_kexinit(Session.java:529) at 
com.jcraft.jsch.Session.connect(Session.java:291) at com.jcraft.jsch.Session.connect(Session.java:154)
... 

JSchからのログ。

INFO: Connecting to xx.xx.xx.xxport 22 
INFO: Connection established 
INFO: Remote version string: SSH-2.0-WeOnlyDo 2.0.6 
INFO: Local version string: SSH-2.0-JSCH-0.1.44 
INFO: CheckCiphers: aes256-ctr,aes192-ctr,aes128-ctr,aes256-cbc,aes192-cbc,aes128-cbc,3des-ctr,arcfour,arcfour128,arcfour256
INFO: aes256-ctr is not available. 
INFO: aes192-ctr is not available.
INFO: aes256-cbc is not available. 
INFO: aes192-cbc is not available.
INFO: arcfour256 is not available. 
INFO: SSH_MSG_KEXINIT sent
INFO: SSH_MSG_KEXINIT received 
INFO: Disconnecting from xx.xx.xx.xx port 22 

linuxのsftpコマンドでリモートサーバーにログインできています。インターネット上で何か手がかりを見つけようとしたのですが、失敗しました。

linux sftpコマンドのデバッグ出力です。

OpenSSH_5.5p1-DAM_1.2, OpenSSL 0.9.8r 8 Feb 201

debug1: Reading configuration data /etc/DAM/ssh/ssh_config
debug1: Applying options for *
debug1: Applying options for *.*
debug1: Connecting to xx.xx.xx.xx [xx.xx.xx.xx] port 22.
debug1: Connection established.
debug1: identity file /**/spv_id_rsa.key type -1
debug1: identity file /**/spv_id_rsa.key-cert type -1
debug1: Remote protocol version 2.0, remote software version WeOnlyDo 2.0.6
debug1: no match: WeOnlyDo 2.0.6
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.5p1-DAM_1.2
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes256-cbc hmac-md5 none
debug1: kex: client->server aes256-cbc hmac-md5 none
debug1: sending SSH2_MSG_KEXDH_INIT
debug1: expecting SSH2_MSG_KEXDH_REPLY
debug1: Host 'xx.xx.xx.xx' is known and matches the RSA host key.
debug1: Found key in ~/.ssh/known_hosts:8
debug1: ssh_rsa_verify: signature correct
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
debug1: Next authentication method: publickey
debug1: Trying private key: /**/spv_id_rsa.key
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending subsystem: sftp
Connected to xx.xx.xx.xx.
sftp>

解決方法は?

SSHクライアントとサーバーが共通の実装で合意しようとする場所がいくつかあります。 私が知っているのは、暗号化と圧縮の2つです。 サーバとクライアントは利用可能なオプションのリストを作成し、両方のリストの中から利用可能な最良のオプションを選択します。

もし、リストの中に受け入れ可能なオプションがなければ、あなたが得たエラーで失敗します。 デバッグ出力から推測するに、暗号化のサーバーオプションは "aes256-cbc hmac-md5 none" だけであるように見えます。

JSchはhmac-md5を行わず、aes256-cbcはJavaのポリシーファイルにより無効になっています。 あなたが試すことができる2つのことは...

  1. サーバーで利用可能な暗号化ライブラリを増やすために、クライアントで制限のないポリシーファイルをインストールし、サイトから aes256-cbc を有効にします(無効になっているというメッセージが消えるのを確認してください、これらのポリシーファイルは間違った JVM にインストールされやすいので注意が必要です)。

    JDK1.6の場合。 http://www.oracle.com/technetwork/java/javase/downloads/jce-6-download-429243.html

    JDK1.7用。 http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html

    JDK1.8用。 http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html

  2. または、暗号化を無効にしてみてください。

前者はサーバーにアクセスできるのであれば理想的ですが(aes128-cbcは十分な暗号化だと信じてください)、後者は理論を素早く試すのに十分なほど簡単な方法です。