vsftpd 安裝與設定
tar zxvf vsftpd-2.2.1.tar.gz
將允許登入FTP的系統帳號寫入/etc/vsftpd.user_list
cd vsftpd-2.2.1
make
make install
(以下可參考INSTALL檔案)
useradd nobody
mkdir /usr/share/empty/
cp vsftpd.conf /etc
cp RedHat/vsftpd.pam /etc/pam.d/ftp
修改/etc/vsftpd.conf 如下
anonymous_enable=NO
local_enable=YES
userlist_enable=YES
userlist_deny=NO
userlist_file=/etc/vsftpd.user_list
chroot_local_user=YES
vi /etc/vsftpd.user_list
test1
★ 修改使用者家目錄,要不要讓使用者用shell登入
vi /etc/passwd
test1:x:501:501::/ftproot:/sbin/nologin
★ 如有需要加入開機就執行服務
vi /etc/rc.local
/usr/local/sbin/vsftpd &
大功告成!
This entry was posted
on 2009年11月16日 星期一
at 上午10:34
and is filed under
Linux
. You can follow any responses to this entry through the
comments feed
.