Windows 10 sshはパスワード認証を無効にしますか?


10

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-agentSSH Server BrokeSSH Server Proxy期待して彼らは、設定ファイルの変更が表示されます。次に、パテを使用してlocalhostにsshします。Puttyがユーザー名を要求しますが、パスワードを要求し、入力すると正常に接続します。

Windows 10の新しいSSH機能で、パスワード認証を無効にするにはどうすればよいですか?


3
Windows 10 April 2018 Update(バージョン1803)以降、構成ファイルはc:\ ProgramData \ ssh \ sshd_configにあります
Gene Goykhman

Thx @GeneGoykhman。必要に応じて、Windowsサービスレジストリのこの場所を上書きできます。
MarcH

回答:


4

Windows 10 v1803(17134.191としても知られています)では変更されています。

c:\ ProgramData \ ssh \ sshd_config(別名%PROGRAMDATA%\ ssh \ sshd_config)を編集します


2

「SSHサーバープロキシ」サービスがあることに注意してください。このサービスは、Windows 10 Fall Creators Update(v1709)の「OpenSSHサーバー(ベータ)」オプション機能の一部ではありません。これはWindows開発者モードの一部です-これが(おそらくWSLと組み合わせて)意図せずに別のOpenSSHサーバーに接続する原因になっているのでしょうか。また、設定が尊重されていないように見えるのはなぜですか。

「SSHサーバープロキシ」サービスを停止または無効にして、動作が変化するかどうかを確認するか、Windows \ System32 \ OpenSSH \ sshd_configのポート番号を標準以外のポートに調整して、もう一度テストしてください。

これをテストするためにラボのWindows 10 v1709 VMをデプロイしたところ、「#PasswordAuthentication yes」行のコメントを外して(そして値を「no」に切り替えて)、sshdサービスの再起動のみで、パスワードベースのログインをブロックしていることを確認できます。 。

「OpenSSHサーバー(ベータ版)」で提供されるサービスは「sshd」と「ssh-agent」だけです。Windows開発者モードまたはWSL / UbuntuのBashが有効になっていない、新鮮なVM。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.