SFTP ユーザーをホーム ディレクトリに ChrootDirectory しようとしている

SFTP ユーザーをホーム ディレクトリに ChrootDirectory しようとしている

私はこれをどうやって行うかについていくつかの例を試しましたが、それらはすべて次sshd_configのように変更することになります。

Subsystem sftp internal-sftp

Match User chubbyninja
    ChrootDirectory %h
    AllowTCPForwarding no
    X11Forwarding no
    ForceCommand /usr/lib/openssh/sftp-server

これをすると、sshd -tエラーがないことを確認するためにservice sshd restart

再起動したら、SFTP(FileZillaを使用)を試みるが、

Response:   fzSftp started
Command:    open "[email protected]" 22
Command:    Pass: ********************
Error:  Network error: Software caused connection abort
Error:  Could not connect to server

設定を元の状態に戻すと、SFTPは問題なく実行できますが、その後は任意のディレクトリを参照できます。ホームディレクトリ内のユーザーのみが必要です。

私のデフォルト設定には次の行が含まれています:

Subsystem sftp /usr/lib/openssh/sftp-server

それが私が交換する上記の詳細を記載します。

私はルートアクセス権を持っていますが、このマシンには ssh 経由でしかアクセスできません。

アップデート sam_pan_mariuszのアドバイスに従うと、さらに進むように見えますが、今は

Response:   fzSftp started
Command:    open "[email protected]" 22
Error:  Network error: Connection refused
Error:  Could not connect to server

アップデート2

私も Froggiz のアドバイスに従って、設定を次のように変更しました。

Subsystem sftp internal-sftp -u 0007 -f AUTH -l VERBOSE 
Match Group chubbyninja
     ChrootDirectory /home/chubbyninja
     ForceCommand internal-sftp -u 0007
     AllowTcpForwarding no
     GatewayPorts no
     X11Forwarding no

しかし、私はオリジナルを手に入れましたソフトウェアによる接続の中止

監視しています/var/syslogが、このエラーの原因を示すものは何も表示されません

更新 3 - 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
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 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 internal-sftp -u 0007 -f AUTH -l VERBOSE

# 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



Match Group chubbyninja
        ChrootDirectory /home/chubbyninja
        AllowTCPForwarding no
        X11Forwarding no
        GatewayPorts no
        ForceCommand internal-sftp -u 0007

答え1

これは特定のユーザーに対してSFTPを設定する方法です

1] ユーザーを作成する

 adduser {USER}

2] /etc/ssh/sshd_configを編集する

 PasswordAuthentication yes 

 Subsystem sftp
 internal-sftp -u 0007 -f AUTH -l VERBOSE 
 Match Group {USER}
     ChrootDirectory {FOLDER}
     ForceCommand internal-sftp -u 0007
     AllowTcpForwarding no
     GatewayPorts no
     X11Forwarding no

3] ユーザーの権限を設定する

 chmod -R 777 {FOLDER}

4] sshを再起動する

service ssh restart

{USER} を自分のユーザーに、{FOLDER} を自分のフォルダーに置き換えれば動作するはずです! ;)

完全なSSH設定を載せてもらえますか?

答え2

質問の「置換」の部分はよく分かりませんが、SSHでchrootすると、フォースコマンド内部サブシステム名を参照する必要があります。この場合、行全体は次のようになりますForceCommand sftp

実行可能パスをクルート適切な chroot ディレクトリ (実行可能ファイルがリンクするライブラリ、設定などを含む) を準備する必要があります。

私の作業設定からの関連行:

Subsystem sftp /usr/lib/openssh/sftp-server

Match User testuser1
    ChrootDirectory /one/dir/path/
    ForceCommand internal-sftp

関連情報