質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.48%
Docker

Dockerは、Docker社が開発したオープンソースのコンテナー管理ソフトウェアの1つです

Q&A

2回答

1376閲覧

docerコンテナにホスト(mac)からssh接続できない

退会済みユーザー

退会済みユーザー

総合スコア0

Docker

Dockerは、Docker社が開発したオープンソースのコンテナー管理ソフトウェアの1つです

0グッド

0クリップ

投稿2018/03/14 06:43

やりたいこと

ホストからssh(パスワード認証)による接続

問題

ubuntuイメージから作ったコンテナでsshdを起動し、ターミナルからssh -p 2345 root@172.17.0.2を試みるも

ssh: connect to host 127.17.0.2 port 2345: Operation timed out

となってしまう。
(パスワード認証にしているのは単にテストのためで、最終的には公開鍵方式にする予定)

設定など

関係ありそうなファイルやステータスを列挙します。ほかに必要な情報などありましたら追記します。

コンテナの /etc/ssh/sshd_config

# Package generated configuration file # See the sshd_config(5) manpage for details # What ports, IPs and protocols we listen for Port 22 # Use these options to restrict which interfaces/protocols sshd will bind to #ListenAddress :: #ListenAddress 0.0.0.0 Protocol 2 # HostKeys for protocol version 2 HostKey /etc/ssh/ssh_host_rsa_key HostKey /etc/ssh/ssh_host_dsa_key HostKey /etc/ssh/ssh_host_ecdsa_key HostKey /etc/ssh/ssh_host_ed25519_key #Privilege Separation is turned on for security UsePrivilegeSeparation yes # Lifetime and size of ephemeral version 1 server key KeyRegenerationInterval 3600 ServerKeyBits 1024 # Logging SyslogFacility AUTH LogLevel INFO # Authentication: LoginGraceTime 120 PermitRootLogin yes StrictModes yes RSAAuthentication yes PubkeyAuthentication yes #AuthorizedKeysFile %h/.ssh/authorized_keys # Don't read the user's ~/.rhosts and ~/.shosts files IgnoreRhosts yes # For this to work you will also need host keys in /etc/ssh_known_hosts RhostsRSAAuthentication no # similar for protocol version 2 HostbasedAuthentication no # Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication #IgnoreUserKnownHosts yes # To enable empty passwords, change to yes (NOT RECOMMENDED) PermitEmptyPasswords no # Change to yes to enable challenge-response passwords (beware issues with # some PAM modules and threads) ChallengeResponseAuthentication no # Change to no to disable tunnelled clear text passwords #PasswordAuthentication yes # Kerberos options #KerberosAuthentication no #KerberosGetAFSToken no #KerberosOrLocalPasswd yes #KerberosTicketCleanup yes # GSSAPI options #GSSAPIAuthentication no #GSSAPICleanupCredentials yes X11Forwarding yes X11DisplayOffset 10 PrintMotd no PrintLastLog yes TCPKeepAlive yes #UseLogin no #MaxStartups 10:30:60 #Banner /etc/issue.net # Allow client to pass locale environment variables AcceptEnv LANG LC_* Subsystem sftp /usr/lib/openssh/sftp-server # Set this to 'yes' to enable PAM authentication, account processing, # and session processing. If this is enabled, PAM authentication will # be allowed through the ChallengeResponseAuthentication and # PasswordAuthentication. Depending on your PAM configuration, # PAM authentication via ChallengeResponseAuthentication may bypass # the setting of "PermitRootLogin without-password". # If you just want the PAM account and session checks to run without # PAM authentication, then enable this but set PasswordAuthentication # and ChallengeResponseAuthentication to 'no'. UsePAM yes

コンテナのsshd status

# service ssh status * sshd is running

$ docker ps -aの結果(*ポートが設定されているものだけ抜粋しました)

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 2deaa6ee659f ubuntu "/bin/bash" About an hour ago Up 45 minutes 0.0.0.0:2345->22/tcp ssh_test

macのファイアウォールはオフにしています。

また、sshでのipアドレスはdocker inspect --format='{{.NetworkSettings.IPAddress}}' 2deaa6ee659fのやつを指定してます

環境

  • High Sierra 10.13.3
  • Docker 17.12.0

参考にしたやつ

sshdのコンテナ

よろしくお願いします。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答2

0

ssh -p 2345 root@localhost もしくは ssh -p 2345 root@127.0.0.1

で接続できませんか?

投稿2018/03/14 07:44

mosapride

総合スコア1480

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

退会済みユーザー

退会済みユーザー

2018/03/14 14:47

ご回答ありがとうございます。 ``` $ ssh -p 2345 root@localhost ssh_exchange_identification: Connection closed by remote host $ ssh -p 2345 root@172.17.0.2 ssh: connect to host 172.17.0.2 port 2345: Operation timed out ``` となってしまい、接続できません。メッセージが異なるところにヒントがありそうなのですが自分にはわかりません。
guest

0

Port 22

ってかいてありますが。。

投稿2018/03/14 07:30

y_waiwai

総合スコア87747

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

退会済みユーザー

退会済みユーザー

2018/03/14 14:47

dockerでrunするときにポートフォワーディングでホストの2345ポートとコンテナの22番ポートを紐つけるため、 ``` docker run -ti --name <containername> -p 2345:22 ubuntu ``` としてコンテナを作成してます。どっか理解が間違ってるかもしれませんが。。。
退会済みユーザー

退会済みユーザー

2018/03/14 14:48

22番でもやってみました。 ``` ssh -p 22 root@172.17.0.2 ssh: connect to host 172.17.0.2 port 22: Operation timed out ```
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだベストアンサーが選ばれていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.48%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問