此文章來自 ispeter,請勿轉載,謝謝 !!
[教學][RHEL] vsFTPd
vsFTPd 需要下列套件:
- # rpm -ivh vsftpd-1.2.0-4
設定步驟:
- 啟動 vsFTPd
# chkconfig vsftpd on
# service vsftpd start
# netstat -tunple | grep vsftpd
- 驗證
# lftp 127.0.0.1
- 完成
設計 anonymous pub/upload 權限
利用 tcp_wrappers 過濾 IP
# vi /etc/hosts.deny
vsftpd:ALL EXCEPT 127.0.0.1
僅允許 127.0.0.1 連 vsftpd
[ispeter 在 2005-12-17 02:47 PM 作了最後編輯]