標籤:des http os io 使用 ar 檔案 art div
1、xinetd是超級精靈,管理著許多服務。所以可以通過service xinetd start啟動。
2、gssftp是Redhat linux企業版內建的FTP工具。包含在/etc/xinetd/gssftp下。提供krb5驗證機制。
3、vsftp也是FTP伺服器軟體,功能比gssftp完備。也是推薦使用的FTP伺服器軟體。它是獨立精靈。
抄錄的:
gssftp
這裡要說的是較為少用的gssftp,gssftp也是依附於xinetd服務,設定檔即/etc/xinetd.d/gssftp,將disable設定為no且server_args設定為 -l,即可啟用。gssftp也是RedHat企業版內建的ftp工具。
# default: off
# description: The kerberized FTP server accepts FTP connections \
# that can be authenticated with Kerberos 5.
service ftp
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/kerberos/sbin/ftpd
server_args = -l
#server_args = -l -a
log_on_failure += USERID
}
vsftp
推薦使用,號稱very safe ftp,主要設定檔是:/etc/vsftpd/vsftpd/etc/vsftpd.ftpusers /etc/vsftpd.user_list 主要用於使用者的存取控制。
建議將userlist_deny=YES。更改完配置service vsftpd restart,即可。
更多精彩linux視頻教程,盡在51CTO學院:http://edu.51cto.com/course/courseList/id-48.html
gssftp,vsftp與xinetd的一些知識