ProFTPDのインストールメモ
○条件
・インストールはデフォルト
・セキュリティーは高くする
・FTP over SSLを行なう(※)
○インストール
$ wget ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.0a.tar.gz $ tar zxvf proftpd-1.3.0a.tar.gz $ cd proftpd-1.3.0a $ ./configure $ ./configure --with-modules=mod_tls --with-includes=/usr/local/ssl/include/ --with-libraries=/usr/local/ssl/lib/ ← ※ ~省略~ $ make ~省略~ $ su - Password: # make install ~省略~ |
○ProFTP設定(特別やった設定のみ)
設定ファイル: /usr/local/etc/proftpd.conf
# idet認証無効 IdentLookups off
# 同じホストからの同時接続 MaxClientsPerHost 2
# 同じユーザからの同時接続 MaxHostsPerUser 1
# バージョン表記の隠蔽 ServerIdent Off
# ユーザログインディレクトリ上位は見せない DefaultRoot ~/
# FTP over SSL 設定 ← ※ <IfModule mod_tls.c> # Authenticate clients that want to use FTP over TLS? |
○xinetd設定
設定ファイル: /etc/xinetd.d/ftp
service ftp |
コメント