Lecteur de longue date, premier poseur de questions.
J'ai suivi les instructions de cette réponse:
Comment puis-je SSH dans «Bash sur Ubuntu sur Windows 10»?
J'essaye de SSH de PuTTY dans Windows sur la même machine. Utilisation du port 22, qui correspond à mon fichier de configuration. J'ai essayé à la fois 127.0.0.1 et 127.0.1.1. Cependant, je reçois toujours un "accès refusé":
En fin de compte, j'espère mettre en place une génération à distance Visual Studio, mais je n'ai jusqu'à présent pas pu accéder à distance du tout. Quelles prochaines étapes dois-je prendre?
Process Hacker le montre pour le port 22 (je ne sais pas ce que cela signifie):
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
windows-10
bash
ssh
windows-subsystem-for-linux
Basel Alghanem
la source
la source
base1
Réponses:
Remplacez le port 22 par un autre, tel que 2222, dans le fichier
/etc/ssh/sshd_config
, puis redémarrez le service ssh par la commandesudo service ssh --full-restart
, vous réussirez à vous connecter , mais je ne connais pas la raison.J'essaie également de l'utiliser comme serveur gdb distant pour Visual Studio par VisualGDB, cela ne fonctionne pas bien. VisualGDB le supportera dans la prochaine version comme le montre le site officiel. Le lien est https://sysprogs.com/w/forums/topic/visualgdb-with-windows-10-anniversary-update-linux-support/#post- 9274
la source
/etc/ssh/sshd_config
:PubkeyAuthentication no PasswordAuthentication yes
Le port 22 ne fonctionne pas car Windows est livré avec un serveur SSH intégré.
Source: https://virtualizationreview.com/articles/2017/02/08/graphical-programs-on-windows-subsystem-on-linux.aspx
la source
Lorsque vous vous connectez, utilisez votre mot de passe de compte Microsoft Windows, pas 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 personnel WSL et exécutez votre.profile
.la source
WSL: recherchez également 'UsePrivilegeSeparation no' Sinon, l'exécution du serveur sur la console (/ usr / sbin / sshd -Dddde) échouera avec PrivilegeSeparation non implémenté ...
la source
Ce que j'ai fait, c'est que sudo ssh-keygen au lieu de ssh-keygen a rencontré des problèmes antérieurs avec des fichiers qui n'écrivaient pas correctement et cela m'a corrigé
la source