Невозможно использовать ключи RSA с SSH: сервер отклонил наш ключ

Я пытаюсь использовать открытые / закрытые ключи RSA, сгенерированные PuTTY, для входа на два компьютера GNU / Linux с компьютеров Windows, и это работает для одного, но не для компьютера Ubuntu. Ключи были сгенерированы на настольном ПК с Windows 7. С него я могу войти в Beaglebone Black с дистрибутивом Angstrom. Я скопировал ключи на ноутбук с Windows 7, и с него я также успешно вошел в BBB, но не в компьютер Ubuntu. На терминале PuTTY я получаю следующее сообщение:

Using username "user".
Server refused our key
Using keyboard-interactive authentication.
Password:

Я могу завершить вход в систему, введя пароль, но я действительно хочу, чтобы ключи работали, чтобы я мог устранить входы паролей через Интернет. Имя пользователя на двух серверах разное, но я думаю, что это не проблема, верно?

Я использую Ubuntu 14.04 LTS, на котором установлен openssh-сервер. Я скопировал открытый ключ из PuTTYgen и вставил его в ~ / .ssh / known_hosts. Ключ находится только в одной строке, начиная с этого: ssh-rsa AAAAB...

Для каталога ~ / .ssh установлены разрешения 700, для ~ / .ssh / known_hosts установлено значение 600.

У меня были большие надежды, когда я нашел этот пост на этой доске, но ни одно из этих решений не устранило проблему.

В какой-то момент я случайно удалил ключи хоста из / etc / ssh /, но я удалил openssh-сервер, а затем переустановил его, который вернул эти ключи. Ну, по крайней мере, похоже, что я вернул их всех назад.

Я открыл один терминал PuTTY и выдал tail -f /var/log/auth.log, а затем попытался войти на второй терминал. Ничего поучительного не обнаружилось. Первое сообщение подтвердило, что вход в систему с паролем был успешным, хотя о ключах ничего не было.

Я возился с файлом конфигурации / etc / ssh / sshd_config, пытаясь выбрать правильную комбинацию настроек, каждый раз перезапуская демон с помощью service ssh restart. Ниже приведен файл в том виде, в каком он есть сейчас. Я думаю, что я могу что-то упустить, но у меня заканчиваются идеи.

# 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 without-password
StrictModes no

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 yes

# 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
1
задан 13 April 2017 в 15:24

1 ответ

Как steeldriver указанный, ключ RSA входит файл authorized_keys , не known_hosts.

я сократил ключ из known_hosts, созданный, и вставил его в authorized_keys. chmod 600 authorized_keys, sudo service ssh restart, и сервер в порядке.

Спасибо за Ваш ответ steeldriver.

0
ответ дан 13 April 2017 в 15:24

Другие вопросы по тегам:

Похожие вопросы: