root資格情報を使用するコマンドを使用して新しいユーザーを作成しようとすると正しく作成されますが、新しく作成されたユーザーuseradd
とその資格情報を使用してPuTTYコンソールを使用してログインするとユーザー名を入力できますが、パスワードを入力すると停止PuTTYウィンドウセッションタイムアウトしてウィンドウが閉じるまでに時間がかかります。ただし、ルート資格情報を使用すると、すばやくセッションに入ります。
AllowUsers
ファイルを確認してみましたが、/etc/ssh/sshd_config
一致するものが見つからなかったので、AllowUsers temipuser
私が作成したユーザー名がどこにあるかを手動で追加してみました。temipuser
別のPuTTYコンソールで変更した後、このユーザー名を再入力しようとしましたが、再び同じです。なぜこのようなことが起こるのか分からない。
もう1つの問題は、ファイルのエントリにユーザー(たとえば)を追加しても、roottemipuser
ユーザーが引き続きアクセスできるかどうかです。私はここで仕事を台無しにしたくありません。私が知る限り、指定されたユーザーだけが許可され、他のユーザーは拒否されます。AllowUsers
sshd_config
AllowUsers
答え1
/var/log/secure
または以下で関連項目を見つけてください/var/log/auth.log
。また、/etc/security/access.conf
ユーザーサーバーにアクセスできるカスタムルールを追加しないでください。
これらのログには、失敗したログインに関する情報が含まれており、何が間違っているかを明確に示すことができます。
この/etc/security/access.conf
ファイルは、ログインを許可または拒否する(ユーザー/グループ、ホスト)、(ユーザー/グループ、ネットワーク/ネットマスク)、または(ユーザー/グループ、tty)の組み合わせを指定します。
答え2
次に、Linuxシステムにユーザーを追加したら、そのユーザーのキーも生成する必要があります(プロトコルタイプ2、RSAを推奨)。 Puttyのキージェネレータを使用して指示を見つけることができます。ここ。
パテキージェネレータの「authorized_keysファイルに貼り付けるための公開キー」ボックスですべてのテキストを選択し、テキストエディタに貼り付けて名前で保存しますauthorized_keys
。
Linuxシステムの新しいユーザーホームディレクトリに.ssh
ディレクトリがない場合は作成します。このディレクトリはユーザーが所有する必要があり、そのユーザーだけがアクセス権を持っています。 (chmod 700 .ssh
)authorized_keys
ファイルをこのディレクトリにコピーします。ファイルの権限変更を有効にし、所有chmod 0600
権をユーザーに変更する必要があります。
これでユーザーがログインできるようになります。
答え3
このコマンドを試す前に、root または sudo を使用してコマンドを実行する必要があります。
ファイルを変更するたびに/etc/ssh/sshd_config、SSHサービスを再起動する必要があります。コマンドは次のとおりです。
systemctl restart sshd.service
パスワードを使用してSSHとしてログインしたい新しいユーザーは、そのユーザーを追加する必要があります。ユーザーを許可各ユーザーの区切り文字としてスペースを使用します。
Eg:
AllowUsers root testUser
rootユーザーがSSH経由でログインできるようにするには、次の点を確認する必要があります。rootユーザーログインを許可する、その値は次のようにする必要がありますはいファイルに/etc/ssh/sshd_config
たとえば、 以下のsshd_configファイルを確認してください。この構成では、SSHを使用してログインすることもできます。テストユーザーそして根ユーザー:
# $OpenBSD: sshd_config,v 1.100 2016/08/15 12:32:04 naddy 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 ::
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_ecdsa_key
#HostKey /etc/ssh/ssh_host_ed25519_key
# Ciphers and keying
#RekeyLimit default none
# Logging
#SyslogFacility AUTH
#LogLevel INFO
# Authentication:
#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
#PubkeyAuthentication yes
# Expect .ssh/authorized_keys2 to be disregarded by default in future.
#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
#AuthorizedPrincipalsFile none
#AuthorizedKeysCommand none
#AuthorizedKeysCommandUser nobody
# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# 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 yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
#GSSAPIStrictAcceptorCheck yes
#GSSAPIKeyExchange no
# 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 yes
#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PermitTTY yes
PrintMotd no
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#UsePrivilegeSeparation sandbox
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
#PermitTunnel no
#ChrootDirectory none
#VersionAddendum none
# no default banner path
#Banner none
# Allow client to pass locale environment variables
AcceptEnv LANG LC_*
# override default of no subsystems
Subsystem sftp /usr/lib/openssh/sftp-server
# Example of overriding settings on a per-user basis
#Match User anoncvs
# X11Forwarding no
# AllowTcpForwarding no
# PermitTTY no
# ForceCommand cvs server
AllowUsers root testUser
答え4
adduser temipuser
代わりにテストしますかuseradd temipuser
? ? ?
sshd_confのLinuxマニュアルには次のように記載されています。
ユーザーを許可
This keyword can be followed by a list of user name patterns, separated by
spaces. If specified, login is allowed only for user names that match one of the
patterns. Only user names are valid; a numerical user ID is not recognized. **By
default, login is allowed for all users.** If the pattern takes the form USER@HOST
then USER and HOST are separately checked, restricting logins to particular users
from particular hosts. The allow/deny directives are processed in the following
order: DenyUsers, AllowUsers, DenyGroups, and finally AllowGroups.
したがって、AllowUsersを追加する必要はありません。このオプションを追加すると、リモートルートログインを防ぐことができないようです(有効にしている場合)。rootユーザーログインを許可する