처음 로그인하려면 SSH 비밀번호가 필요합니다.

처음 로그인하려면 SSH 비밀번호가 필요합니다.

그래서 SSH에서 이상한 문제가 발생했습니다. SSH 키를 통해 비밀번호 없는 로그인을 허용하도록 SSH 서버를 설정했습니다. 그런데 오랜 시간(~일) 후에 처음으로 로그인하려고 하면 비밀번호가 필요합니다. 즉시 연결을 닫고 SSH 연결을 다시 시도하면 SSH 키가 허용됩니다. 항상 SSH 키를 허용하도록 얻는 방법을 아는 사람이 있습니까?

이 내 꺼야/etc/ssh/sshd_config

# 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 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 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

이는 Active Directory 또는 LDAP가 있는 시스템과 같이 자동으로 마운트된 홈 디렉토리가 있는 시스템에서 발생할 수 있습니다. mount로그인한 후 홈 디렉토리가 자동으로 마운트되었는지 확인하려면 입력하세요. 불행하게도 (내가 아는 한) 이 문제를 해결할 수 있는 방법은 없습니다. 일반적으로 SSH 인증 중에 모든 사용자의 홈 디렉토리를 사용할 수 있도록 전체 /home 디렉토리가 마운트됩니다.

답변2

@폴의 답변이는 가능한 해결책을 찾는 데 많은 도움이 됩니다. 이 문제를 해결하려면 아래와 같이 mount root를 사용 --bind하고 ssh를 복사하면 됩니다.authorized_keys

mkdir /mnt/root
mount --bind / /mnt/root
cp -a ~/.ssh /mnt/root/user

이것포함된 파일 시스템을 다음에 마운트합니다./mnt/rootuser, 마운트 지점에 액세스하고( 사용자 이름으로 바꿔야 함 ) .ssh마운트하기 전에 암호화된 파일 시스템에 액세스할 수 있도록 폴더를 복사합니다.

답변3

저에게도 이런 일이 일어났는데 /home파티션이 따로 설치되지 않았습니다. 그러나 계정을 만들 때 내 홈 폴더 암호화 옵션을 사용했고 계정이 /home/.encryptfs/<userid>/.Private설치된 것을 확인했기 /home/<userid>때문에 내 홈 폴더 암호화 옵션으로 인해 이 동작이 발생했을 수도 있습니다.

관련 정보