Ftp

Vsftpd 不顯示文件和文件夾

  • December 10, 2017

vsftpd: version 3.0.2在 Debian 8 上執行。我有一個/home/vsftpd/$USER安裝在 NFS 上的文件夾。

$USER替換為 FTP 上連接的使用者名。這些使用者使用pam-mysql.

所有使用者都可以連接到 FTP,沒有人能夠看到他們的文件和文件夾。我已經嘗試過777他們的$USER文件夾和子文件夾,但沒有。

我設法顯示了一個文件,但我不知道如何/為什麼。但我無法下載文件:

Status: Starting download of /a
Command:    CWD /
Response:   250 Directory successfully changed.
Command:    TYPE A
Response:   200 Switching to ASCII mode.
Command:    PASV
Response:   227 Entering Passive Mode (**.**.**.**,24,163).
Command:    RETR a
Response:   550 Failed to open file.
Error:  Critical file transfer error

我有兩個問題:連接到 FTP 的使用者看不到他們的文件和文件夾,我無法下載文件。

這裡是vsftpd.conf

listen=YES

anonymous_enable=NO
local_enable=YES

write_enable=NO
anon_upload_enable=NO
anon_mkdir_write_enable=NO
anon_other_write_enable=NO

guest_enable=YES
guest_username=vsftpd

chroot_local_user=YES

max_clients=200
max_per_ip=4

pasv_enable=YES
pasv_min_port=6000
pasv_max_port=6800
pasv_address=**.**.**.**

secure_chroot_dir=/var/run/vsftpd
pam_service_name=vsftpd

rsa_cert_file=/etc/vsftpd/***.com.pem
rsa_private_key_file=/etc/vsftpd/**.com.key
#user_config_dir=/etc/vsftpd/vsftpd_user_conf

local_root=/home/vsftpd/$USER
user_sub_token=$USER

文件下載錯誤的日誌/var/log/vsftpd.log

FTP response: Client "91.177.204.148", "230 Login successful."
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FTP command: Client "***", "CWD /"
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FTP response: Client "***", "250 Directory successfully changed."
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FTP command: Client "***", "TYPE A"
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FTP response: Client "***", "200 Switching to ASCII mode."
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FTP command: Client "***", "PASV"
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FTP response: Client "***", "227 Entering Passive Mode (52,58,132,46,23,207)."
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FTP command: Client "***", "RETR a"
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FTP response: Client "***", "550 Failed to open file."
Sun Dec 10 13:52:59 2017 [pid 14999] [*] FAIL DOWNLOAD: Client "***", "/a", 0.00Kbyte/sec

編輯

我加了local_umask=022(不知道有沒有用)

我通過設置文件夾和文件的權限解決了這兩個問題0555(文件應該只有 0444)。

引用自:https://serverfault.com/questions/887350