Windows用LinuxサブシステムでAzure Ubuntu 16xにSSH経由で接続する方法

Windows用LinuxサブシステムでAzure Ubuntu 16xにSSH経由で接続する方法

AzureでUbuntu 16.x VMを作成し、認証用のユーザーID /パスワードオプションを選択しました。 Azureポータルでは、ブラウザ内のCLIを使用してVMにログインできます。ただし、Windows 10システムのLinux用Windowsサブシステム(Ubuntu)でSSHを試みると、次のメッセージが表示されます。

ssh_exchange_identification: Connection closed by remote host

sshオプションを試してみて、-v次のような結果を得ました。

ssh -v [email protected]
OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n  7 Dec 2017
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to xx.xxx.xx.xxx [xx.xxx.xx.xxx] port 22.
debug1: Connection established.
debug1: identity file /home/userid/.ssh/id_rsa type 0
debug1: key_load_public: No such file or directory
debug1: identity file /home/userid/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/userid/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/userid/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/userid/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/userid/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/userid/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/userid/.ssh/id_ed25519-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3
ssh_exchange_identification: Connection closed by remote host

ssh認証を使用せずにWindowsのUbuntuからアクセスできませんかssh

更新:結果はssh企業環境内でフィルタリングされます。ssh家でうまくできました。

ベストアンサー1

Windows用のLinuxサブシステム(ubuntu)コマンドラインから、他のLinuxと同様にSSHを使用できます。いつも使っています。 (IMHOはWindowsのLinuxサブシステムがWindows 10をより良くします。)したがって、同じコマンドを実行しますが、vをいくつか追加します。

ssh -vvv userid@ipaddr

サーバーは鍵付きのSSHのみを許可できるようです。ユーザー名とパスワードを使用する前に、サーバー(Azureコンソールを除く)にログインしていましたか?可能であれば、-vvを使用してAzure接続の出力を貼り付けることもできます。

通常、SSHキーを介して一致を探します(あなたのキーは一致を見つけます)、次のステップに進むと、次のメッセージが表示されます。

debug1: Next authentication method: keyboard-interactive
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: password

私はあなたの出力でこれを見ることができません。私はこれを-vとマークする必要があると思いますが、詳細な詳細出力を見たいです。

おすすめ記事