Windows 10は最近、オプションのWindows機能としてOpenSSHを追加しました。 構成ファイルC:\ Windows\System32\OpenSSH\sshd_configを見つけて、それを変更する権限を自分に与えました。
これが私が持っているファイルです:
# $OpenBSD: sshd_config,v 1.84 2011/05/23 03:30:07 djm Exp $
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
# 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 ::
# The default requires explicit activation of protocol 1
#Protocol 2
# HostKey for protocol version 1
#HostKey /etc/ssh/ssh_Host_key
# 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
# Lifetime and size of ephemeral version 1 server key
#KeyRegenerationInterval 1h
#ServerKeyBits 1024
# Logging
# obsoletes QuietMode and FascistLogging
#SyslogFacility AUTH
#LogLevel INFO
# Authentication:
#LoginGraceTime 2m
#PermitRootLogin yes
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
#RSAAuthentication yes
#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
# For this to work you will also need Host keys in /etc/ssh/ssh_known_hosts
#RhostsRSAAuthentication no
# similar for protocol version 2
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# RhostsRSAAuthentication and 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
# Change to no to disable s/key passwords
ChallengeResponseAuthentication no
# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
# 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 no
#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
#X11Forwarding no
#X11DisplayOffset 10
#X11UseLocalhost yes
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#UsePrivilegeSeparation yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS yes
#PidFile /var/run/sshd.pid
#MaxStartups 10
#PermitTunnel no
#ChrootDirectory 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
# X11Forwarding no
# AllowTcpForwarding no
# ForceCommand cvs server
# PubkeyAcceptedKeyTypes ssh-ed25519*
ChallengeResponseAuthentication no
PasswordAuthentication no
UsePAM no
デフォルト以外の唯一のエントリは、下3行です パスワード認証を無効にする必要があります 。ファイルを変更した後、サービスに移動して再起動しますssh-agent
、SSH Server Broke
、SSH Server Proxy
設定ファイルの変更が表示されることを期待しています。次に、PuTTYを使用してlocalhostにsshします。 PuTTYがユーザー名を要求しますが、パスワードを要求し、入力すると正常に接続します。
Windows 10の新しいSSH機能で、パスワード認証を無効にするにはどうすればよいですか?
Windows 10 v1803(別名17134.191)では変更されています。
C:\ ProgramData\ssh\sshd_config(別名%PROGRAMDATA%\ ssh\sshd_config)を編集します
「SSHサーバープロキシ」というサービスがあることに注意してください。このサービスは、Windows 10 Fall Creators Update(v1709)の「OpenSSHサーバー(ベータ)」オプション機能の一部ではありません。これはWindows開発者モードの一部です。これ(おそらくWSLと組み合わせて)が意図せずに別のOpenSSHサーバーに接続する原因になっているのでしょうか。また、設定が考慮されていないように見えるのはなぜですか。
「SSHサーバープロキシ」サービスを停止または無効にして、動作が変化するかどうかを確認するか、Windows\System32\OpenSSH\sshd_configのポート番号を標準以外のポートに調整して、もう一度テストしてください。
私はラボWindows 10 v1709 VMを展開しました、そしてsshdだけで "#PasswordAuthentication yes"行のコメントを外す(そして値を "no"に切り替える)ことでそれを確認できますサービスの再起動。パスワードベースのログインをブロックします。
「OpenSSHサーバー(ベータ版)」で提供されるサービスは「sshd」と「ssh-agent」だけです。 Windows開発者モードまたはWSL/UbuntuのBashが有効になっていない、新鮮なVM。