Como forço o SSH a permitir apenas que os usuários com uma chave façam login?


73

Tentei seguir as instruções aqui: http://lani78.wordpress.com/2008/08/08/generate-a-ssh-key-and-disable-password-authentication-on-ubuntu-server/

para permitir que apenas usuários com uma chave pública no servidor se autentiquem, mas não consigo que o SSH desative o login apenas com um nome de usuário / senha.

Aqui está o meu arquivo sshd_config - estou perdendo alguma coisa? Eu já tentei reiniciar o SSH e o próprio computador.

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

11
FYI: Na verdade, a reinicialização do sshd não é realmente necessária. O comando /etc/inid.d/ssh reload deve ser suficiente.
Oliv

Não esqueça de descomentar #AuthorizedKeysFile e copiar a chave pública para ~ / .ssh / allowed_keys (e reiniciar). Sem isso, não vai funcionar.
ivanleoncz 25/01

Se não era verdade em 2016, é definitivamente o caso em 2019 que é necessário reiniciar; recarregar não é suficiente.
KDN

Respostas:


98

Por padrão, PasswordAuthenticationestá definido como sim , mesmo se você comentar /etc/ssh/sshd_config.

Você precisará definir explicitamente PasswordAuthentication nopara permitir apenas a autenticação de chave pública.

# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication no

NOTA (man sshd_config): PasswordAuthentication especifica se a autenticação por senha é permitida. O padrão é sim.

E reinicie o sshd service ssh restart(migração pré-systemd) ou systemctl restart sshd.service.


6
Também devemos terUsePAM no
Konstantinos

@pidosaurus why? para que serve?
jan-GLX

11
@YAK Eu gosto de manter as coisas simples e prefiro não usar o PAM. Mas alguém pode usar uma autenticação PAM configurada corretamente. Eu acho que esse link é esclarecedor: arlimus.github.io/articles/usepam
Konstantinos

11
Considere também desativar o ChallengeResponseAuthentication, consulte superuser.com/a/374234/2879 .
6906

13

De acordo com esta página da wiki sobre chaves SSH e esta resposta , você precisa alterar estas duas linhas no seu sshd_config:

PasswordAuthentication no
ChallengeResponseAuthentication no

11
Que diferença faz a segunda linha sobre a resposta ao desafio?
21916 Ryan Burnette

11
"Ele não fornece" segurança adicional "em si. O termo" ChallengeResponseAuthentication "é apenas uma palavra-chave de configuração do OpenSSH; refere-se ao método de userauth" teclado-interativo "no protocolo SSH - Richard Silverman (fixunix.com)
pzkpfw 22/05

4

Em /etc/ssh/sshd_config, as configurações abaixo funcionaram para mim:

PasswordAuthentication no
UsePAM no

Finalmente, reinicie o sshddaemon.


3

A linha que você deseja é comentada de forma anormal por padrão no arquivo sshd_config.

# Change to no to disable tunnelled clear text passwords
--->#PasswordAuthentication yes

Para desativar senhas, altere yespara noe remova o comentário :

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

1

de https://www.ssh.com/ssh/copy-id#sec-How-ssh-copy-id-works : Geralmente, o diretório pessoal do usuário ou qualquer arquivo ou diretório contendo arquivos de chaves não deve ser gravável por mais ninguém . Caso contrário, alguém poderá adicionar novas chaves autorizadas para o usuário e obter acesso. Os arquivos de chave privada não devem ser lidos por mais ninguém.

Tente sudo chmod go-rwx /home/username/substituir, usernameconforme apropriado.

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.