FTP サーバー

FTP サーバーのメモです。

vsftpd

vsftpd は RedHat9 に標準で入っている FTP サーバーです。
/etc/vsftpd/vsftpd.conf を書き換えることによって
設定を変更できます。

vsftpd 設定

xinetd の設定

/etc/xinetd.d/ftpd ファイル
service ftp
{
	flags           = REUSE
	socket_type     = stream        
	wait            = no
	user            = root
	server          = /usr/sbin/vsftpd
	server_args     = /etc/vsftpd/vsftpd.conf
	log_on_failure  += USERID
	disable         = no
}

vsftpd の起動

/etc/rc.d/init.d/xinetd restart
を実行する。

前に戻る


トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS