Pure-FTPd Over SSL/TLS2014/08/16 |
Pure-FTPd を SSL/TLS で利用できるように設定します。
|
|
[1] | 証明書を作成しておきます。 |
[root@www ~]# cd /etc/pki/tls/certs [root@www certs]# openssl req -x509 -nodes -newkey rsa:2048 -keyout pure-ftpd.pem -out pure-ftpd.pem -days 365 Generating a 2048 bit RSA private key ......++++++ .......++++++ writing new private key to '/etc/pki/tls/certs/pure-ftpd.pem' ----- You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [AU]: JP # 国 State or Province Name (full name) [Some-State]: Hiroshima # 地域(県) Locality Name (eg, city) []: Hiroshima # 都市 Organization Name (eg, company) [Internet Widgits Pty Ltd]: Server World # 組織名 Organizational Unit Name (eg, section) []: IT Solution # 組織の部門名 Common Name (eg, YOUR name) []: www.srv.world # サーバーのFQDN
Email Address []:
[root@www certs]# xxx@srv.world # 管理者アドレス chmod 600 pure-ftpd.pem |
[2] | Pure-FTPd の設定です。 |
[root@www ~]#
vi /etc/pure-ftpd/pure-ftpd.conf # 430行目:コメント解除 TLS 1 /etc/rc.d/init.d/pure-ftpd restart Stopping pure-ftpd: [ OK ] Starting pure-ftpd: [ OK ] |
[3] | IPTables を有効にしている場合は、FTP ポートの許可、および PASVポートを固定した上でその固定ポートの許可が必要です。 「-I INPUT 5」の箇所は自身の環境を確認して、適切な値に置き換えてください。 |
[root@www ~]#
vi /etc/pure-ftpd/pure-ftpd.conf # # 180行目:コメント解除して固定するPASVポート範囲を指定 PassivePortRange 21000 21010
/etc/rc.d/init.d/pure-ftpd restart [root@www ~]# iptables -I INPUT 5 -p tcp -m state --state NEW -m tcp --dport 21 -j ACCEPT [root@www ~]# iptables -I INPUT 5 -p tcp -m state --state NEW -m tcp --dport 21000:21010 -j ACCEPT |
FTPクライアント : CentOS
|
FTPクライアントの設定です。
|
|
[4] | FTP クライアントインストール済みとして、CentOS クライアントの場合、以下のように設定して FTPS に接続します。 接続後は通常通りの操作でファイル転送可能です。 |
[redhat@dlp ~]$
vi ~/.lftprc
# 新規作成 set ftp:ssl-auth TLS set ftp:ssl-force true set ftp:ssl-protect-list yes set ftp:ssl-protect-data yes set ftp:ssl-protect-fxp yes set ssl:verify-certificate no lftp -u cent www.srv.world Password: lftp cent@www.srv.world:~> |
FTPクライアント : Windows
|
[5] | Windows にインストールした FileZilla での FTPS 接続の設定です。 「ファイル」-「サイトマネージャ」を開きます。 |
[6] | 以下のようにサーバーに接続する情報を入力して接続します。「暗号化」には「明示的な FTP over TLS が必要」を選択します。 |
[7] | 接続ユーザーのパスワードを入力します。 |
[8] | 自身で作成した独自証明書の場合、以下のような警告が表示されます。自身で作成したものであればもちろん問題ないので、「OK」ボタンをクリックして先へ進みます。 |
[9] | 接続できました。 |
Sponsored Link |