Страница 1 из 1

SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-21 17:42:44
tom.cat
Всем привет.
Пытаюсь достучаться до удаленного сервачка, но все как-то тщетно. В путти пишет, что логин неверный. Пробую зайти через виртуалку на консоль с тем же логином, все нормально работает.
В логах /var/log/auth.log следующее:

Код: Выделить всё

sshd[3156]: Connection closed by тут.мой.ip [preauth]
Изменений в конфигурационные файлы не вносил, раньше все работало нормально.
Система: FreeBSD 9.3

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-21 19:16:00
andrian_freebsd
Я понял что путти конектится? после ввода логина (не рута, под рутом удаленно не пустит!!!!!, надо завести другого пользователя), сколько раз дает ввести пароль?

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-22 5:30:08
tom.cat
Проверил из дома, работает нормально. С работы такая вот шняга.
Под рутом и не пробую, в курсе, что не пустит. Пользователи разные результат один, вводить можно бесконечное количество раз.

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-22 8:07:24
f_andrey
Открою страшную, военную тайну и ssh клиент и ssh сервер, имеют режим дебага.

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-22 9:29:39
guest
tom.cat писал(а):Всем привет.
Пытаюсь достучаться до удаленного сервачка, но все как-то тщетно. В путти пишет, что логин неверный. Пробую зайти через виртуалку на консоль с тем же логином, все нормально работает.
В логах /var/log/auth.log следующее:

Код: Выделить всё

sshd[3156]: Connection closed by тут.мой.ip [preauth]
Изменений в конфигурационные файлы не вносил, раньше все работало нормально.
Система: FreeBSD 9.3
раньше - это когда? то есть изменения были.
что значит через "виртуалку"? Отличие виртуалки от соединения извне?

# cat /etc/ssh/sshd_config

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-22 17:14:57
Alex Keda
f_andrey писал(а):Открою страшную, военную тайну и ssh клиент и ssh сервер, имеют режим дебага.
Ключик -v - рулит

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-23 16:09:29
tom.cat
Debug включил. Сообщения в логе

Код: Выделить всё

Oct 23 17:36:41 sshd[12026]: Connection closed by 60.190.71.52 [preauth]
Oct 23 18:12:54 sshd[12111]: Connection from 122.225.97.125 port 14321 on 176.120.25.46 port 22
Oct 23 18:12:55 sshd[12111]: Connection closed by 122.225.97.125 [preauth]
sshd_config

Код: Выделить всё

#       $OpenBSD: sshd_config,v 1.82 2010/09/06 17:10:19 naddy Exp $
#       $FreeBSD: release/9.1.0/crypto/openssh/sshd_config 224638 2011-08-03 19:14:22Z brooks $

# This is the sshd server system-wide configuration file.  See
# sshd_config(5) for more information.

# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin

# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented.  Uncommented options change a
# default value.

# Note that some of FreeBSD's defaults differ from OpenBSD's, and
# FreeBSD has a few additional options.

#VersionAddendum FreeBSD-20110503

#Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::

# The default requires explicit activation of protocol 1
#Protocol 2

# HostKey for protocol version 1
#HostKey /etc/ssh/ssh_host_key
# 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

# Lifetime and size of ephemeral version 1 server key
#KeyRegenerationInterval 1h
#ServerKeyBits 1024

# Logging
# obsoletes QuietMode and FascistLogging
#SyslogFacility AUTH
LogLevel DEBUG

# Authentication:

#LoginGraceTime 2m
PermitRootLogin no
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10

#RSAAuthentication yes
#PubkeyAuthentication yes
#AuthorizedKeysFile     .ssh/authorized_keys

# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#RhostsRSAAuthentication no
# similar for protocol version 2
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# RhostsRSAAuthentication and HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes

# Change to yes to enable built-in password authentication.
#PasswordAuthentication no
#PermitEmptyPasswords no

# Change to no to disable PAM authentication
#ChallengeResponseAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

# Set this to 'no' to disable 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

#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
#X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#UsePrivilegeSeparation yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10
#PermitTunnel no
#ChrootDirectory none

# no default banner path
#Banner none

# override default of no subsystems
Subsystem       sftp    /usr/libexec/sftp-server

# Disable HPN tuning improvements.
#HPNDisabled no

# Buffer size for HPN to non-HPN connections.
#HPNBufferSize 2048

# TCP receive socket buffer polling for HPN.  Disable on non autotuning kernels.
#TcpRcvBufPoll yes

# Allow the use of the NONE cipher.
#NoneEnabled no

# Example of overriding settings on a per-user basis
#Match User anoncvs
#       X11Forwarding no
#       AllowTcpForwarding no
#       ForceCommand cvs server

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-23 16:34:37
andrian_freebsd
вижу в sshd_config есть настройка UseDNS no, вы случайно не используєте sshit ?

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-23 19:55:54
tom.cat
Нет, я отключил сию опцию. В логах было с моего ip адреса POSSIBLE BREAK-IN ATTEMPT. Не помогло.
Я грешу на сеть на работе, потому как из дома захожу на сервер без каких-то проблем.

Re: SSHD внезапно обрывает соединение при логине

Добавлено: 2014-10-29 11:46:46
skeletor
У меня было похожее, когда настраивал вланы и забыл поменять MTU (на 4 байта меньше, чем у сетевой-родителя) у влана.