2

При попытке SFTP на мой сервер я получаю

debug1: Authentications that can continue: publickey,password
Permission denied, please try again.

Хотя я использую правильный пароль.

SSHD_CONFIG для сервера, к которому я пытаюсь подключиться.

# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 25595
# 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 without-password
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication no
#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
#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 -l INFO

# 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

Полный sftp -v -v -v -p HostImConnecting для выхода 25595

debug3: load_hostkeys: loading entries for host "HostImConnectingto" from file "/home/grayson/.ssh/known_hosts"
debug3: load_hostkeys: found key type ECDSA in file /home/grayson/.ssh/known_hosts:2
debug3: load_hostkeys: loaded 1 keys
debug3: load_hostkeys: loading entries for host "24.231.182.21" from file "/home/grayson/.ssh/known_hosts"
debug3: load_hostkeys: found key type ECDSA in file /home/grayson/.ssh/known_hosts:3
debug3: load_hostkeys: loaded 1 keys
debug1: Host 'HostImConnectingto' is known and matches the ECDSA host key.
debug1: Found key in /home/grayson/.ssh/known_hosts:2
debug1: ssh_ecdsa_verify: signature correct
debug2: kex_derive_keys
debug2: set_newkeys: mode 1
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug2: set_newkeys: mode 0
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug2: service_accept: ssh-userauth
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug2: key: /home/grayson/.ssh/id_rsa ((nil)),
debug2: key: /home/grayson/.ssh/id_dsa ((nil)),
debug2: key: /home/grayson/.ssh/id_ecdsa ((nil)),
debug2: key: /home/grayson/.ssh/id_ed25519 ((nil)),
debug1: Authentications that can continue: publickey,password
debug3: start over, passed a different list publickey,password
debug3: preferred gssapi-keyex,gssapi-with-mic,publickey,keyboard-interactive,password
debug3: authmethod_lookup publickey
debug3: remaining preferred: keyboard-interactive,password
debug3: authmethod_is_enabled publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /home/grayson/.ssh/id_rsa
debug3: no such identity: /home/grayson/.ssh/id_rsa: No such file or directory
debug1: Trying private key: /home/grayson/.ssh/id_dsa
debug3: no such identity: /home/grayson/.ssh/id_dsa: No such file or directory
debug1: Trying private key: /home/grayson/.ssh/id_ecdsa
debug3: no such identity: /home/grayson/.ssh/id_ecdsa: No such file or directory
debug1: Trying private key: /home/grayson/.ssh/id_ed25519
debug3: no such identity: /home/grayson/.ssh/id_ed25519: No such file or directory
debug2: we did not send a packet, disable method
debug3: authmethod_lookup password
debug3: remaining preferred: ,password
debug3: authmethod_is_enabled password
debug1: Next authentication method: password
grayson@static.deepdreamconverter.net's password:
debug3: packet_send2: adding 48 (len 64 padlen 16 extra_pad 64)
debug2: we sent a password packet, wait for reply
debug1: Authentications that can continue: publickey,password
Permission denied, please try again.
grayson@HostImConnectingto password:

Я могу замазать в коробку нормально, но когда я пытаюсь ssh -p 25595 user @ WhereImTringToConnect из другого ящика, он не работает. оба ящика убунту 14.04

РЕДАКТИРОВАТЬ 1: я изменил PasswordAuthentication с нет на да, и перезапустил службу ssh. но когда я попробую sftp -v -v -v -p grayson @ static.MYSITE.net 25595. Я все еще получаю ошибку

debug1: Authentications that can continue: publickey,password
Permission denied, please try again.

Я пробовал 2 разных пользователей, и я могу убедиться, что оба пароля были введены правильно

РЕДАКТИРОВАТЬ 2: я получил ssh из коробки b (компьютер пытается подключиться) и коробки a (компьютер, к которому я подключаюсь) сначала я создал ключ на коробке b. затем попытался скопировать ключ в поле a, получил сообщение об ошибке

bash: line 2: .ssh/authorized_keys: Permission denied

поэтому моя первая мысль была в порядке, разрешения на коробке перепутаны. (хотя я установил их на 700 и 600 соответственно) Затем я пошел и установил ~/ .ssh на 777 (ЭТО ПЛОХО НЕ ДЕЛАЕТ), а также я установил ~/ .ssh/ на 777 (ТАКЖЕ ПЛОХО). с этим я смог скопировать мой ключ ssh из коробки b в коробку a. Теперь я также могу удаленно войти в коробку А из Б., но я все еще не могу SFTP в коробку А из б ...

1 ответ1

2

Тот же ответ, что и на аскубунту:

Вам нужно установить PasswordAuthentication yes вместо PasswordAuthentication no в вашем sshd_config .

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .