SSHのパスワード認証を無効にする


127

ここに記載されているように、SSHクライアントがパスワードプロンプトにアクセスできないようにする方法を探しています

rootログインpassword:プロンプトを無効にできません。読み取るファイルを変更しました。sshd_config

ChallengeResponseAuthentication no
PasswordAuthentication no
UsePAM no

また、アクセス権を変更したchmod 700 ~/.sshchmod 600 ~/.ssh/authorized_keys。何が欠けていますか?これにはパスフレーズが必要ですか?

冗長ダンプ:

debug1: Authentications that can continue: publickey,password
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/user/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password
debug1: Trying private key: /home/user/.ssh/id_dsa
debug1: Trying private key: /home/user/.ssh/id_ecdsa
debug1: Next authentication method: password

ファイル/ 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
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

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

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin no
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 no

# 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 no

ssh -v user @ serverを使用して、トラブルシューティングに役立つ詳細な出力を取得します。
Niall Byrne

両方ssh_configありsshd_configますPasswordAuthentication-鋭さを保ちます!
ブレントブラッドバーン、

回答:


198

ファイルに /etc/ssh/sshd_config

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication no

2行目のコメントを外し、必要に応じてyesをnoに変更します。

次に実行します

service ssh restart

7
多くのガイドでは、サーバーでChallengeResponseAuthentication、PasswordAuthentication、UsePAMをyesからnoに変更することを推奨しています。Debian / Ubuntuでのテストに成功しました。

9
systemctl restart sshd参考までに、サービスを再起動するsystemdの方法は次のとおりです。 これは、新しいUbuntuのデフォルトです。
therealjumbo 2018年

パスワード認証が無効になっているときに、サーバーに新しいキーを追加するにはどうすればよいですか?確かに、誰かがキーを追加したいときはいつでも、パスワード認証をオンにせずにこれを行う方法があります...
Matthew

1
@Matthew多分使用しているssh-copy-id
iamyojimbo

@iamyojimboしかし、そのコマンドで接続して送信するには、承認されたキーが必要です。
マシュー

16

走る

service ssh restart

の代わりに

/etc/init.d/ssh restart

これでうまくいくかもしれません。


これでうまくいきました。なぜinit.dを使用しなかったのですか?
2016年

1
Linuxのフレーバーによって異なります... gentooでは、どちらもうまくいきます。
Gene Pavlovsky

15

これを自動的に実行するスクリプトは次のとおりです

# Only allow key based logins
sed -n 'H;${x;s/\#PasswordAuthentication yes/PasswordAuthentication no/;p;}' /etc/ssh/sshd_config > tmp_sshd_config
cat tmp_sshd_config > /etc/ssh/sshd_config
rm tmp_sshd_config

3

以下の手順に従いました(Macの場合)。

/etc/ssh/sshd_config変更

#ChallengeResponseAuthentication yes
#PasswordAuthentication yes

ChallengeResponseAuthentication no
PasswordAuthentication no

次に、RSAキーを生成します。

ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa

(私にとっては、RSAキーは機能しました。DSAキーは機能しませんでした。)

(公開鍵)~/.ssh/id_rsaとともに秘密鍵が生成され~/.ssh/id_rsa.pubます。

.sshフォルダーに移動します。cd ~/.ssh

Enter rm -rf authorized_keysキーを押すと、エラーが発生する場合があります。

入る vi authorized_keys

:wqこの空のファイルを保存するために入力してください

入る cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys

SSHを再起動します。

sudo launchctl stop com.openssh.sshd
sudo launchctl start com.openssh.sshd

touch空のファイルを作成するために使用できませんauthorized_keysか?
Peter Mortensen

-8

これは私が持っているチュートリアルからです:

rootとしてあなたのマシンで:

ssh-keygen -t rsa

パスフレーズは空のままにします。

ローカルマシンから(そしてパスワードを入力する必要があります):

ssh root@remotemachine mkdir -p .ssh

次に:

cat .ssh/id_rsa.pub | ssh root@remotemachine 'cat >> .ssh/authorized_keys'

これで、パスワードプロンプトなしでログインできます

ssh root@remotemachine

問題が発生した場合は、パスワードなしのSSHログインをご覧ください。


2
あらゆる状況でパスワードプロンプトが表示されないようにしたいと考えています。sshキーでのみログインを強制する
Matt Stokes

これでうまくいくはずです。パスワードを要求することなく、特定のクライアントから直接開きます。
Fabrizio Mazzoni、2014年

1
はい、しかし、これはパスワードを試みることを許可されていないクライアントも許可しますか?
Matt Stokes

以下を変更します。ChallengeResponseAuthenticationno、PasswordAuthentication no、UsePAM noこれはキー認証のみを許可します。私のシステムでテストしただけで拒否されます。アクセスが拒否されました(公開キー)
Fabrizio Mazzoni 2014年

1
投稿したファイルが実際の構成である場合、PasswordAuthentication noセクションのコメントを外していません
Fabrizio Mazzoni
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.