SLES 11 SP4
Sponsored Link

Vsftpd Over SSL/TLS2015/12/03

 
Vsftpd を SSL/TLS で利用できるように設定します。
[1] 証明書を作成しておきます。
www:~ #
cd /etc/ssl/private

www:/etc/ssl/private #
openssl req -x509 -nodes -newkey rsa:2048 -keyout vsftpd.pem -out vsftpd.pem -days 365

Generating a 2048 bit RSA private key
......++++++
.......++++++
writing new private key to '/etc/pki/tls/certs/vsftpd.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
   
# 管理者アドレス
www:/etc/ssl/private #
chmod 400 vsftpd.pem

[2] Vsftpd の設定です。
www:~ #
vi /etc/vsftpd.conf
# 217行目:変更

ssl_enable=
YES
# 最終行に追記

rsa_cert_file=/etc/ssl/private/vsftpd.pem
rsa_private_key_file=/etc/ssl/private/vsftpd.pem
ssl_ciphers=HIGH
force_local_data_ssl=YES
www:~ #
/etc/init.d/vsftpd restart

FTPクライアント : Windows
[3 Windows にインストールした FileZilla での FTPS 接続の設定です。
「ファイル」-「サイトマネージャ」を開きます。
[4] 以下のようにサーバーに接続する情報を入力して接続します。「暗号化」には「明示的な FTP over TLS が必要」を選択します。
[5] 接続ユーザーのパスワードを入力します。
[6] 自身で作成した独自証明書の場合、以下のような警告が表示されます。自身で作成したものであればもちろん問題ないので、「OK」ボタンをクリックして先へ進みます。
[7] 接続できました。
関連コンテンツ