Amazon Linux AMI에서 SSH에 대한 비밀번호 로그인 활성화


31

키 파일이 아닌 비밀번호로 ssh를 통해 로그인 할 수 없습니다.
예, 그것이 완전히 안전하지 않다는 것을 알고 있지만 설정 의이 시점에서 변수를 끄고 왼쪽과 오른쪽 에서이 기능을 사용하려고했습니다.

 
#       $OpenBSD: sshd_config,v 1.73 2005/12/06 22:38:28 reyk Exp $

# This is the sshd server system-wide configuration file.  See
# sshd_config(5) for more information.

# This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin

# 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 change a
# default value.

Port 22
#Protocol 2,1
Protocol 2
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::

# 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

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

# Logging
# obsoletes QuietMode and FascistLogging
#SyslogFacility AUTH
SyslogFacility AUTHPRIV
#LogLevel INFO

# Authentication:

#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes
#MaxAuthTries 6

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


# Change to no to disable s/key passwords
ChallengeResponseAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no

# GSSAPI options
GSSAPIAuthentication no
#GSSAPIAuthentication yes
#GSSAPICleanupCredentials yes
#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 mechanism.
# Depending on your PAM configuration, this may bypass the setting of
# PasswordAuthentication, PermitEmptyPasswords, and
# "PermitRootLogin without-password". If you just want the PAM account and
# session checks to run without PAM authentication, then enable this but set
# ChallengeResponseAuthentication=no
#UsePAM no
UsePAM no

# Accept locale-related environment variables
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
AcceptEnv LC_IDENTIFICATION LC_ALL
#AllowTcpForwarding yes
#GatewayPorts no
#X11Forwarding no
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#UsePrivilegeSeparation yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#ShowPatchLevel no
#UseDNS yes
#PidFile /var/run/sshd.pid
#MaxStartups 10
#PermitTunnel no
#ChrootDirectory none

# no default banner path
#Banner /some/path

# override default of no subsystems
Subsystem       sftp    /usr/libexec/openssh/sftp-server

이 구성을 사용하면 사용자 이름으로 승격되었지만 암호를 제공하면 암호가 잘못되었다는 것을 언급하지 않았습니다. 새로운 사용자를 만들고 이미 ec2-user 및 root와 같은 시스템에있는 사용자를 사용하여 동일한 결과를 보았습니다.
evolvd

답변:


45

ssh 서버의 구성 파일을 변경하고 서버를 다시 시작해야합니다.

/ etc / ssh / sshd_config를 변경하십시오.

PasswordAuthentication yes

그런 다음 ssh 서버를 다시 시작하십시오.

/etc/init.d/sshd restart

음 ... 위에 sshd_config를 게시했습니다. PasswordAuthentication이 예로 설정되어 있습니다. 모든 변경 후에는 서비스를 다시 시작합니다.
evolvd

1
/etc/init.d/ssh 다시 시작 아마 /etc/init.d/sshd를 다시 시작해야합니다
EastsideDeveloper

6
(최신) Ubuntu에서 ssh를 다시 시작하면 자동으로 실패하고 아무 것도하지 않습니다. 해야 할 것service ssh restart .
Halfgaar

2
생각합니다 service sshd restart.
zekel

3
서비스
dhempler였습니다.

3

비밀번호 인증을 사용으로 설정 하고 delete authorization_keys를 삭제하십시오.

# rm /home/ec2-user/.ssh/authorized_keys

내가하지 않은 한 가지는 키를 삭제하는 것입니다. 그들을 유지하고 어느 쪽이든 로그인 할 수있는 방법이 없습니까?
evolvd

sshd_config를 원래의 상태로 복원 한 다음 비밀번호 인증을 활성화했으며 로그인 할 수있었습니다. 설정에서 다른 것을 망쳐 놓은 것 같아요.
evolvd

4
키를 삭제할 필요가 없습니다. 아래 답변의 지침을 따르십시오. 마지막 단계로 /etc/init.d/sshd restart를 시도 할 수도 있습니다.
EastsideDeveloper
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.