CentOS 5
Sponsored Link

ProFTPD Over SSL/TLS2015/01/17

 
ProFTPD を SSL/TLS で使えるようにします。
[1] SSL/TLS の設定をします。
[root@www ~]#
cd /etc/pki/tls/certs

[root@www certs]#
openssl req -x509 -nodes -newkey rsa:1024 -keyout /etc/pki/tls/certs/proftpd.pem -out /etc/pki/tls/certs/proftpd.pem

Generating a 1024 bit RSA private key
......++++++
.......++++++
writing new private key to '/etc/pki/tls/certs/proftpd.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 []:
xxx@srv.world
   
# 管理者アドレス
[root@www certs]#
chmod 600 proftpd.pem

[root@www certs]#
vi /etc/proftpd.conf
# 176行目:以下のように変更

#
<IfDefine TLS>
TLSEngine
on

TLSRequired
on

TLSRSACertificateFile
/etc/pki/tls/certs/proftpd.pem

TLSRSACertificateKeyFile
/etc/pki/tls/certs/proftpd.pem

TLSCipherSuite
ALL:!ADH:!DES

TLSOptions
NoCertRequest

TLSVerifyClient
off

TLSRenegotiate
ctrl 3600 data 512000 required off timeout 33 00

TLSLog
/var/log/proftpd/tls.log

#
<IfModule mod_tls_shmcache.c>

#
TLSSessionCache
shm:/file=/var/run/proftpd/sesscache

#
</IfModule>

#
</IfDefine>
[root@www certs]#
/etc/rc.d/init.d/proftpd restart

Shutting down proftpd:     [  OK  ]
Starting proftpd:     [  OK  ]
[2] クライアント側の設定です。 WinSCP を起動し、「新規」ボタンをクリックして以下のようにログイン情報を入力します。 「暗号化」の項目では「TLS 明確な暗号」を選択して接続します。
[3] 接続ユーザーのパスワードを入力して認証します。
[4] 接続できました。
関連コンテンツ