ProFTPDのインストール
xinetdがデフォルトで入っていなかったので一緒に。
# apt-get install xinetd proftpd
/etc/proftpd.conf
#ServerType standalone ServerType inetd
/etc/xinetd.d/ftp
service ftp
{
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.proftpd
server_args =
log_on_success += DURATION USERID
log_on_failure += USERID
nice = 10
disable = no
}サービスを起動して接続できれば完了。
# /etc/init.d/xinetd start
最近インストールメモばっかりですが、何気に一番役に立ちます。