SSHD 비밀번호 없는 서버를 설정했는데 다음과 같은 문제가 발생했습니다.
16.04 상자에 로그인하면물리적, 그런 다음 SSH를 통해 로그인할 수 있습니다.
이 작업을 수행하지 않으면(예: 원격으로 컴퓨터 재부팅) SSH가 내 키를 거부하므로 SSH를 통해 로그인할 수 없습니다.
제안?
참고: 이것은 내 구성 파일입니다.
# Package generated configuration file
# See the sshd_config(5) manpage for details
# What ports, IPs and protocols we listen for
Port 1907
# 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 prohibit-password
StrictModes yes
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 no
# Change to no to disable tunnelled clear text passwords
PasswordAuthentication no
# 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 no
#
# Compression
Compression yes
답변1
authorized_keys
홈 디렉토리가 암호화된 경우 SSH는 로그인할 때까지 해당 디렉토리에 액세스할 수 없습니다. 홈 디렉터리의 암호를 해독하려면 비밀번호로 로그인해야 합니다.
한 가지 해결 방법은 설명에 언급된 대로 SSH 구성에서 인증 키 소스를 변경하는 것입니다. 또 다른 방법은 파일을 authorized_keys
기본 홈 디렉터리에 복사하는 것입니다. 관리자 권한이 있다고 가정하면 다음을 수행할 수 있습니다.
- 베어 홈 디렉토리(로그인 시 마운트된 암호화된 디렉토리로 인해 가려짐)에 액세스할 수 있도록 다른 위치에 루트 장치를 다시 마운트합니다.
- 거기에 복사하고
~/.ssh/authorized_keys
구조와 권한을 복사하십시오.
먼저 어떤 장치에 설치되어 있는지 알아보세요 /
( lsblk
등을 사용하여 - 예를 들어 mount
저는 사용할 것입니다). /dev/sda1
그 다음에:
sudo mount /dev/sda1 /mnt
mkdir "/mnt/$HOME/.ssh"
cp "$HOME/.ssh/authorized_keys" "/mnt/$HOME/.ssh/authorized_keys"
chmod -R og-rwx "/mnt/$HOME/.ssh"
업데이트될 때마다 복사본을 반복해야 합니다.