それぞれ接続の終わりが異なるか、より深いロギングがありますか?たとえば、vvvの出力から抜粋した内容があるので興味があります。
debug3: send packet: type 30
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
Connection reset by nnnn port 22
出力を見ると、どちらが何を言っているのかわかりません。
答え1
短い答え:
はい!
長い答え:
[ man ssh
][1]から:
-v
詳細モード。理由
ssh
進行状況に関するデバッグメッセージを印刷します。これは、接続、認証、および構成の問題をデバッグするのに役立ちます。 多くの種類-v
オプションは詳細を増やします。 最大値は3です。
- 実際に行われていることを確認するには、[この質問の編集] [2]を見てください。 OPに次の(
-v
それぞれ-vvv
デバッグレベル2と3)に移動するように要求したからです。-vv
-vvv
- 詳細については、以下を確認してください。RFC4252、セクション6 [1]:http://man7.org/linux/man-pages/man1/ssh.1.html [2]:https://unix.stackexchange.com/posts/483302/revisions 「モデムによるSSH配信が最近失敗し始めました。」
答え2
SSHで私は以下を見つけました:
ssh -v
will tell you what is happening mostly on your end
ssh -vv
will tell you low level on both ends
ssh -vvv
will tell you almost everything from both ends.
だからこんな会話がありました。
debug1:Some useful information from 1
debug2:Some useful information from 2
debug1:Some useful information from 1
debug3:Some useful information about what is passing between both and more..