Pure-FTPd Over SSL/TLS2013/05/10 |
Pure-FTPd を SSL/TLS で使えるようにします。通信を暗号化できるためセキュリティが高まります。
|
|
[1] | SSL/TLS の設定をします。 |
root@www:~# cd /etc/ssl/private root@www:/etc/ssl/private# openssl req -x509 -nodes -newkey rsa:1024 -keyout /etc/ssl/private/pure-ftpd.pem -out /etc/ssl/private/pure-ftpd.pem Generating a 1024 bit RSA private key ......++++++ .......++++++ writing new private key to '/etc/ssl/private/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]: GTS # 組織名 Organizational Unit Name (eg, section) []: Server World # 組織の部門名 Common Name (eg, YOUR name) []: www.srv.world # サーバーのFQDN
Email Address []:
root@www:/etc/ssl/private# xxx@srv.world # 管理者アドレス
chmod 400 pure-ftpd.pem root@www:/etc/ssl/private# /etc/init.d/pure-ftpd restart Restarting ftp server: Running: /usr/sbin/pure-ftpd -l pam -E -A -8 UTF-8 -B -O clf:/var/log/pure-ftpd/transfer.log -u 1000 -4 -Y 2 -B |
[2] | クライアント側の設定です。WinSCP を起動し、セッション情報で、暗号化に「TLS 明確な暗号」を選択して接続します。 |
[3] | 独自証明書なので以下のような画面になります。問題ないので「はい」で進みます。 |
[4] | パスワードを入力します。 |
[5] | 接続できました。 |
Sponsored Link |