SSHD проблема с загрузкой ключей.
Уважаемые гуру, посоветуйте где копать!Пытаюсь настроить демон sshd, сгенерировал ключ RSA для протокола SSH2 ssh-keygen'ом.
Файлы ключей лежат:
/home/user/.ssh/key_rsa
/home/user/.ssh/key_rsa.pub
/home/user/.ssh/authorized_keys2
chmod на директорию /home/user/.ssh/ 700
chmod на key_rsa & authorized_keys2 600
(если прова меняю на 644, то ругается на неверные права ключа)
chmod на key_rsa.pub 644
Текущая конфигурация:
SSHD запускается через inetd.
файл конфигурации /etc/ssh/sshd_config (какие права должны быть на этот файл?):
Port 22
Protocol 2
AddressFamily any
#ListenAddress 192.168.0.2
#ListenAddress ::
# HostKey for protocol version 1
#HostKey /home/user/.ssh/key_rsa1
# HostKeys for protocol version 2
HostKey /home/user/.ssh/key_rsa
# Lifetime and size of ephemeral version 1 server key
#KeyRegenerationInterval 1h
#ServerKeyBits 768
# Logging
# obsoletes QuietMode and FascistLogging
#SyslogFacility AUTH
LogLevel INFO
# Authentication:
#LoginGraceTime 2m
PermitRootLogin no
#StrictModes yes
MaxAuthTries 6
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile /home/user/.ssh/authorized_keys2
# 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 yes
#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
#AllowTcpForwarding yes
#GatewayPorts no
#X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
UseLogin yes
#UsePrivilegeSeparation yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS yes
PidFile /var/run/sshd.pid
#MaxStartups 10
#PermitTunnel no
# no default banner path
#Banner /some/path
# override default of no subsystems
Subsystem vsftpd /usr/local/libexec/vsftpd
# Example of overriding settings on a per-user basis
#Match User anoncvs
# X11Forwarding no
# AllowTcpForwarding no
# ForceCommand cvs server
chmod на директорию /etc/ssh/ 755
Проблема такова:
запускаю демон в режиме дебага /usr/sbin/sshd -d в консоли из под пользователя user
сообщение такое:
debug1: sshd_version OpenSSH_4.5p1
debug1: PEM_read_PrivateKey failed
debug1: read PEM private key done: type <unknown>
Could not load host key: /home/user/.ssh/key_rsa
Disabling protocol version 2. Could not load host key
sshd: no hostkeys available -- exiting.
Вторичные симптомы не возможности загрузки ключей: Аналогичное сообщение получаю при попытке подключиться при помощи PuTTY (ключи импортировал те, которые генерировал на сервере).
Подскажите, что где не так делаю?