Ich versuche, meine Windows 10-Maschine als SSH-Server einzurichten, indem ichWin32-OpenSSHDer Server ist Teil einer Domäne, daher verwende ich den Befehl
ssh -i ~/.ssh/id_rsa -l user@domain ip_address
um von meinem SSH-Client aus eine Verbindung herzustellen.
Dies führt zu einem Fehler "Permission denied (publickey,keyboard-interactive)". Auf der Serverseite lautet das Protokoll
sshd: Ungültiger Benutzer user@domain von IP-Adresse Port 59676
sshd: Verbindung geschlossen durch ungültigen Benutzer user@domain ip_address port 59676 [preauth]
Ich habe auch die folgende Variante des SSH-Befehls ausprobiert
ssh -i ~/.ssh/id_rsa domain/user@ip_address
um zu versuchen, eine Verbindung von der Clientseite aus herzustellen. Ich erhalte die Fehlermeldung „Verbindung durch IP-Adresse Port 22 zurückgesetzt“.
Wenn ich mir das Protokoll auf der Serverseite anschaue, steht dort:
sshd: Fehler: lookup_principal_name: Die Suche nach dem Benutzerprinzipalnamen ist für den Benutzer „Domäne\Benutzer“ fehlgeschlagen (explizit: 5, implizit: 5).“
sshd: Fehler: get_user_token – Token konnte beim 2. Versuch für Benutzerdomäne\Benutzer nicht generiert werden
sshd: fatal: ga_init, Benutzerdomäne\Benutzer kann nicht aufgelöst werden
Wie kann ich diesen Fehler beheben?
Einzelheiten
Auf der Serverseite (Windows 10):
whoami
bestätigt, dass mein Benutzername Domäne\Benutzer ist
Ich möchte nur die Authentifizierung mit öffentlichem Schlüssel verwenden, daher habe ich die Berechtigungen in sshd_config auf
PubkeyAuthentication yes
PasswordAuthentication no
Alle anderen Einstellungen sind Standard. Die vollständige sshd_config-Datei folgt
# 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
Ich habe die id_rsa.pub an die Datei authorized_keys im Verzeichnis C:\Users\user\.ssh angehängt. icacls .\authorized_keys
gibt zurück
C:\Users\user\\.ssh\authorized_keys NT AUTHORITY\SYSTEM:(I)(F)
BUILTIN\Administrators:(I)(F)
DOMAIN\user:(I)(F)
Auf der Clientseite (Ubuntu 20.04.3):
~/.ssh/id_rsa hat die folgenden Berechtigungen
-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
Antwort1
Match Group administrators
AuthorizedKeysFile __PROGRAMDATA__/ssh/administrators_authorized_keys
Machen Sie diese Zeilen zu einer Kommentarzeile