ssh_exchange_identification:读取:由对等方重置连接; Docker中的ubuntu

时间:2018-05-22 11:02:31

标签: linux ubuntu docker ssh openssh

我正在尝试在Docker中设置一些Ubuntu图像,以用作蜜罐。

我从这里开始遵循指南: https://github.com/mrschyte/dockerpot

这是我使用的Docker文件的副本:

FROM ubuntu:16.04

RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
RUN echo 'root:screencast' | chpasswd
RUN sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config

# SSH login fix. Otherwise user is kicked off after login
RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd

ENV NOTVISIBLE "in users profile"
RUN echo "export VISIBLE=now" >> /etc/profile

EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]

运行docker ps我可以看到创建了对手:

CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES
b7c1962cfc27        def9be976ec5        "/sbin/init"        45 minutes ago      Up 19 minutes       22/tcp              honeypot-192.168.122.1

但是当我尝试从我的机​​器连接到它们时,连接会重置并显示错误:ssh_exchange_identification: read: Connection reset by peer

1 个答案:

答案 0 :(得分:-1)

从init脚本中删除*.yml.enc diff=enc ,解决了问题。

有关此内容的内容不应在docker中使用,因为它可能无法初始化服务。