web-dev-qa-db-fra.com

Commentaire SSH en WSL

Lecteur de longue date, poseur de questions pour la première fois.

J'ai suivi les instructions dans cette réponse:

Comment puis-je SSH en «Bash sur Ubuntu sur Windows 10»?

J'essaye de SSH de PuTTY dans Windows sur le même ordinateur. Utilisation du port 22, qui correspond à mon fichier de configuration. Essayé 127.0.0.1 et 127.0.1.1. Cependant, je reçois toujours un "accès refusé":

 enter image description here

En fin de compte, j'espère pouvoir configurer une version distante de Visual Studio, mais je n'ai jusqu'à présent pas été en mesure d'entrer à distance. Quelles prochaines étapes dois-je prendre?

Process Hacker le montre pour le port 22 (vous ne savez pas ce que cela signifie):

 enter image description here

Voici le contenu de/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 no

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 1024

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin no
AllowUsers basel
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
19
Basel Alghanem

Remplacez le port 22 par un autre, tel que 2222, dans le fichier /etc/ssh/sshd_config, puis redémarrez le service ssh en commond Sudo service ssh --full-restart, vous vous identifierez avec succès. Mais je ne connais pas la raison.

J'essaie également de l'utiliser comme serveur distant gdb pour Visual Studio par VisualGDB, cela ne fonctionne pas bien. Comme le montre le site Web officiel, VisualGDB le supportera dans la prochaine version. Le lien est https://sysprogs.com/w/forums/topic/visualgdb-with-windows-10-anniversary-update-linux-support/# post-9274

16
nul lun

Lorsque vous vous connectez, utilisez le mot de passe de votre compte Windows Microsoft, et non votre mot de passe utilisateur WSL Linux. Vous serez connecté à votre répertoire personnel Windows exécutant cmd.exe. Entrez la commande /windows/system32/bash.exe ~ --login pour vous connecter à votre répertoire de base WSL et exécutez votre .profile.

2
rhmccullough

WSL: Recherchez également 'UsePrivilegeSeparation no'. Sinon, l'exécution du serveur sur la console (/ usr/sbin/sshd -Dddde) échouera avec PrivilegeSeparation non implémenté ...

1
ga_t