web-dev-qa-db-ja.com

`sshd_config`のAuthorizedKeysFileを変更しても、暗号化されたホームでの公開鍵認証の失敗が解決されない

ケースは単純に聞こえます。 「サーバー」でeCryptFSを使用してホームフォルダーを暗号化しています。次のようになります。

/home/<user_name>/.Private on /home/<user_name> type ecryptfs (ecryptfs_check_dev_ruid,
ecryptfs_cipher=aes,ecryptfs_key_bytes=16,ecryptfs_unlink_sigs,ecryptfs_sig=<...>,
ecryptfs_fnek_sig=<...>)

「authorized_keys」ファイルはデフォルトで~/.sshにあり、実際にログインする前に復号化されないため、そのファイルを/home/ssh/<user_name>/authorized_keysに移動しました。 /home/ssh/<user_name>のアクセス許可は755で、authorized_keysファイルのアクセス許可は644です。このファイルには、ログインしたいマシンの公開鍵が含まれています。

次に、/etc/ssh/sshd_configの「AuthorizedKeysFile」オプションを/home/ssh/%u/authorized_keysに変更しました。このマニュアルで提案されているように: https://help.ubuntu.com/community/SSH/OpenSSH/Keys およびこの投稿: https://stephen.rees-carter.net/thought/encrypted-home-directories-ssh-key-authentication 。私はここでこの問題を検索しましたが、ほとんど同じ指示を受けました。しかし、それでもパスワードなしではログインできません。

次に、いくつかのテストを行い、サーバー上でSSHキーのペアを生成し(SSHで接続したい)、公開キーを/home/ssh/<user_name>/authorized_keysにコピーしました。次に、そのサーバーマシンで、パスワードを使用せずにlocalhostにログインすることすらできないことがわかりました。したがって、何らかの理由でSSHデーモンがauthorized_keysファイルをまったくロードしなかったと思います。また、ファイルを元の場所である~/.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
HostKey /etc/ssh/ssh_Host_ed25519_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

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

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin without-password
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile  /home/ssh/%u/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 yes

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

authorized_keysファイルは次の場所にあります。

$ ll
total 24K
drwx------  2 root        root         16K Feb 26 19:23 lost+found
drwxrwxr-x  3 root        root        4.0K Mar  1 13:12 ssh
drwx------ 22 <user_name> <user_name> 4.0K Mar  1 13:42 <user_name>
$ cd ssh
$ ll
total 4.0K
drwxr-xr-x 2 <user_name> <user_name> 4.0K Mar  1 13:12 <user_name>
$ cd <user_name>
$ ll
total 4.0K
-rw-r--r-- 1 <user_name> <user_name> 790 Mar  1 13:32 authorized_keys
$

また、(ディレクトリとファイルの)アクセス許可を700と600に変更しようとしましたが、どちらも機能しませんでした...

1
bfrguci

質問は、sshdによって生成されたログから情報が欠落しています。

/var/log/auth.log

エラーメッセージは、/homeの権限が間違っていることを示しています。

sshdのマニュアルページでは、次の条件が追加されています。

~/.ssh/authorized_keys

このファイル、~/.sshディレクトリ、またはユーザーのホームディレクトリが他のユーザーが書き込み可能の場合、ファイルは許可されていないユーザーによって変更または置換される可能性があります。この場合、sshdオプションが「no」に設定されていない限り、StrictModesは使用を許可しません。

したがって、オプションは権限を修正することです。または、/homeグループを書き込み可能にする必要がある場合は、StrictModes nosshd_configを使用します。

2
Jakuje