Come posso forzare SSH per consentire agli utenti solo con una chiave di accedere?


73

Ho provato a seguire le istruzioni qui: http://lani78.wordpress.com/2008/08/08/generate-a-ssh-key-and-disable-password-authentication-on-ubuntu-server/

per consentire solo agli utenti con una chiave pubblica sul server di autenticarsi, ma non riesco a ottenere SSH per impedire l'accesso con solo un nome utente / password.

Ecco il mio file sshd_config - mi sto perdendo qualcosa? Ho già provato a riavviare SSH e il computer stesso.

# 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

1
Cordiali saluti: In realtà il riavvio sshd non è davvero necessario. Il comando /etc/inid.d/ssh ricaricare dovrebbe essere sufficiente.
Oliv

Non dimenticare di decommentare #AuthorizedKeysFile e di copiare la chiave pubblica in ~ / .ssh / authorized_keys (e riavviare). Senza questo, non funzionerà.
Ivanleoncz,

Se non era vero nel 2016, è sicuramente il caso nel 2019 che è necessario un riavvio; ricaricare non è sufficiente.
KDN

Risposte:


98

L'impostazione predefinita PasswordAuthenticationè , anche se lo commentate /etc/ssh/sshd_config.

Dovrai impostare esplicitamente PasswordAuthentication noper consentire solo l'autenticazione con chiave pubblica.

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

NOTA (man sshd_config): PasswordAuthentication specifica se è consentita l'autenticazione con password. L'impostazione predefinita è sì.

E riavvia sshd service ssh restart(migrazione pre-systemd) o systemctl restart sshd.service.


6
Inoltre dovremmo avereUsePAM no
Konstantinos il

@pidosaurus perché? per cosa è buono?
Jan-Glx,

1
@YAK Mi piace mantenere le cose semplici e preferisco non usare PAM. Ma qualcuno può usare un'autenticazione PAM correttamente configurata. Penso che questo link sia illuminante: arlimus.github.io/articles/usepam
Konstantinos

1
Considera anche di disabilitare ChallengeResponseAuthentication, vedi superuser.com/a/374234/2879 .
cic

13

Secondo questa pagina wiki sulle chiavi SSH e questa risposta , è necessario modificare queste due righe in sshd_config:

PasswordAuthentication no
ChallengeResponseAuthentication no

1
Che differenza fa la seconda riga sulla risposta alla sfida?
Ryan Burnette,

1
"Non fornisce" ulteriore sicurezza "di per sé. Il termine" ChallengeResponseAuthentication "è solo una parola chiave di configurazione OpenSSH; si riferisce al metodo userauth" interattivo da tastiera "nel protocollo SSH —Richard Silverman (fixunix.com)
pzkpfw,

4

In /etc/ssh/sshd_config, le impostazioni di seguito hanno funzionato per me:

PasswordAuthentication no
UsePAM no

Infine, riavvia il sshddemone.


3

La riga desiderata viene commentata in modo anomalo per impostazione predefinita nel file sshd_config.

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

Per disabilitare le password, modifica yesin noe rimuovi il commento :

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

1

da https://www.ssh.com/ssh/copy-id#sec-How-ssh-copy-id-works : in genere, la directory home dell'utente o qualsiasi file o directory contenente file di chiavi non dovrebbe essere scrivibile da nessun altro . Altrimenti qualcun altro potrebbe aggiungere nuove chiavi autorizzate per l'utente e ottenere l'accesso. I file delle chiavi private non dovrebbero essere leggibili da nessun altro.

Prova a sudo chmod go-rwx /home/username/sostituirlo usernamecome appropriato.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.