SSH 연결을 위해 도메인 사용자를 인증하는 중 오류가 발생했습니다.

SSH 연결을 위해 도메인 사용자를 인증하는 중 오류가 발생했습니다.

다음을 사용하여 Windows 10 시스템을 SSH 서버로 설정하려고합니다.Win32-OpenSSH. 서버는 도메인의 일부이므로 다음 명령을 사용합니다.

ssh -i ~/.ssh/id_rsa  -l user@domain ip_address

내 SSH 클라이언트에서 연결합니다.

그러면 "권한이 거부되었습니다(공개키, 키보드 대화형)" 오류가 발생합니다. 서버 측에서는 로그를 읽습니다.

sshd: ip_address 포트 59676의 잘못된 사용자 user@domain

sshd: 잘못된 사용자 user@domain ip_address 포트 59676에 의해 연결이 종료되었습니다. [preauth]

또한 ssh 명령에서 다음 변형을 시도했습니다.

ssh -i ~/.ssh/id_rsa  domain/user@ip_address

클라이언트 측에서 연결을 시도합니다. "ip_address 포트 22로 연결 재설정" 오류가 발생합니다.

서버 측 로그를 보면 다음과 같이 나와 있습니다.

sshd: 오류: lookup_principal_name: 'domain\user' 사용자에 대한 사용자 계정 이름 조회에 실패했습니다(명시적: 5, 암시적: 5)"

sshd: 오류: get_user_token - 사용자 domain\user에 대한 두 번째 시도에서 토큰을 생성할 수 없습니다.

sshd: 치명적: ga_init, 사용자 도메인\사용자를 확인할 수 없습니다.

이 오류를 어떻게 해결할 수 있나요?

세부

서버(Windows 10) 측:

whoami내 사용자 이름이 domain\user인지 확인합니다.

공개 키 인증만 사용하고 싶기 때문에 sshd_config에서 권한을 다음과 같이 설정했습니다.

PubkeyAuthentication yes
PasswordAuthentication no

다른 모든 설정은 기본값입니다. 전체 sshd_config 파일은 다음과 같습니다.

# This is the sshd server system-wide configuration file.  See
# sshd_config(5) for more information.

# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented.  Uncommented options override the
# default value.

#Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::

#HostKey __PROGRAMDATA__/ssh/ssh_host_rsa_key
#HostKey __PROGRAMDATA__/ssh/ssh_host_dsa_key
#HostKey __PROGRAMDATA__/ssh/ssh_host_ecdsa_key
#HostKey __PROGRAMDATA__/ssh/ssh_host_ed25519_key

# Ciphers and keying
#RekeyLimit default none

# Logging
#SyslogFacility AUTH
#LogLevel INFO

# Authentication:

#LoginGraceTime 2m
#PermitRootLogin prohibit-password
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10

#PubkeyAuthentication yes

# The default is to check both .ssh/authorized_keys and .ssh/authorized_keys2
# but this is overridden so installations will only check .ssh/authorized_keys
AuthorizedKeysFile  .ssh/authorized_keys

#AuthorizedPrincipalsFile none

# For this to work you will also need host keys in %programData%/ssh/ssh_known_hosts
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes

# To disable tunneled clear text passwords, change to no here!
#PasswordAuthentication yes
#PermitEmptyPasswords no
PubkeyAuthentication yes
PasswordAuthentication no

# GSSAPI options
#GSSAPIAuthentication no

#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
#PermitTTY yes
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#PermitUserEnvironment no
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
#PermitTunnel no
#ChrootDirectory none
#VersionAddendum none

# no default banner path
#Banner none

# override default of no subsystems
Subsystem   sftp    sftp-server.exe

# Example of overriding settings on a per-user basis
#Match User anoncvs
#   AllowTcpForwarding no
#   PermitTTY no
#   ForceCommand cvs server

Match Group administrators
       AuthorizedKeysFile __PROGRAMDATA__/ssh/administrators_authorized_keys

C:\Users\user\.ssh 디렉터리의authorized_keys 파일에 id_rsa.pub가 추가되어 있습니다. icacls .\authorized_keys보고

C:\Users\user\\.ssh\authorized_keys NT AUTHORITY\SYSTEM:(I)(F)
                  BUILTIN\Administrators:(I)(F)
                  DOMAIN\user:(I)(F)

클라이언트(Ubuntu 20.04.3) 측:

~/.ssh/id_rsa에는 다음 권한이 있습니다.

-rw------- 1 ubuntu ubuntu 2655 Dec 30 18:16 id_rsa
-rw-r--r-- 1 ubuntu ubuntu  576 Dec 30 18:16 id_rsa.pub

답변1

Match Group administrators
       AuthorizedKeysFile __PROGRAMDATA__/ssh/administrators_authorized_keys

이 줄을 주석 줄로 만드세요

관련 정보