CentOS 6.5 - FTP サーバ(vsftpd)構築!

Updated:


前回は CentOS 6.5 サーバに DNS サーバ BIND の構築を行いました。
今回は FTP サーバ vsftpd の構築を行います。

0. 前提条件

  • CentOS 6.5(x86_64) を Minimal で最小インストールしている。
  • クライントマシンは Linux Mint 14(64bit) を想定。
  • PASV モード用開放ポートは 4000 〜 4005 を想定。
  • 主に「CentOSで自宅サーバー構築」を参考にしている。
    (実際は、過去にこのサイトを参考にして作業した際に記録していたものを参照している)

1. vsftpd インストール

FTP サーバ vsftpd を以下のようにしてインストールする。

# yum -y install vsftpd

2. vsftpd 設定ファイル編集

vsftpd 設定ファイルを以下のように編集する。

File: /etc/vsftpd/vsftpd.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO               # <= 変更(匿名ユーザログイン禁止)

# Activate logging of uploads/downloads.
xferlog_enable=YES                # <= 変更(ログファイル書き込み有効化)

# You may override where the log file goes if you like. The default is shown
# below.
xferlog_file=/var/log/vsftpd.log  # <= 変更(ログファイル名)

# If you want, you can have your log file in standard ftpd xferlog format
xferlog_std_format=NO             # <= 変更(wu-ftpd スタイルでログを記録)

# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
ascii_upload_enable=YES           # コメント解除(アスキーモードでのアップロードを許可)
ascii_download_enable=YES         # コメント解除(アスキーモードでのダウンロードを許可)

# You may fully customise the login banner string:
ftpd_banner=Welcome to mk-mode FTP service.  # <= 適当に変更(ログイン時にソフト名とバージョンを非表示(設定のメッセージを表示))

# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
chroot_local_user=YES                     # <= コメント解除(デフォルトでホームディレクトリより上層へのアクセスを禁止)
chroot_list_enable=YES                    # <= コメント解除(ホームディレクトリより上層へのアクセスを許可するユーザのリストの有効化)
# (default follows)
chroot_list_file=/etc/vsftpd/chroot_list  # <= コメント解除(ホームディレクトリより上層へのアクセスを許可するユーザのリスト名)

# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
ls_recurse_enable=YES                     # <= コメント解除(ディレクトリごと削除可能)

# 以下を最下行へ追加
use_localtime=YES                            # <= タイムスタンプを日本時間
pasv_addr_resolve=YES                        # <= PASVモード接続先IPアドレスをホスト名から取得
pasv_address=ftp.mk-mode.com                 # <= PASVモード接続先IPアドレスが牽けるホスト名
pasv_min_port=4000                           # <= PASVモード接続時の最小ポート番号
pasv_max_port=4005                           # <= PASVモード接続時の最大ポート番号
ssl_enable=YES                               # <= SSLの有効化
rsa_cert_file=/etc/pki/tls/certs/vsftpd.pem  # <= サーバー証明書を指定
force_local_logins_ssl=NO                    # <= ログイン時にSSL接続を強制しない※暗号化しない接続もできるようにする場合のみ
force_local_data_ssl=NO                      # <= データ転送時にSSL接続を強制しない※暗号化しない接続もできるようにする場合のみ

3. ホームディレクトリより上層へのアクセスを許可するユーザのリスト作成

File: /etc/vsftpd/chroot_list

1
hoge  # <= 対象のユーザ(例えば自分)を追加

4. タイムスタンプ設定

ホームディレクトリより上層へのアクセスができないユーザのタイムスタンプを日本時間にする設定を行う。

【サーバに新規にユーザを登録した際の対処】

# mkdir /etc/skel/etc  # <= ユーザのホームディレクトリ配下に "etc" ディレクトリが作成されるようにする

# cp /etc/localtime /etc/skel/etc/
# <= ユーザ登録時に "/etc/localtime" がホームディレクトリの "etc" ディレクトリへコピーされるようにする

【既存のユーザに対する対処】

まず、タイムスタンプ設定用スクリプトを作成する。

File: localtimset

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

for user in `ls /home`
do
   id $user > /dev/null 2>&1
   if [ $? -eq 0 ]; then
        grep $user /etc/vsftpd/chroot_list > /dev/null 2>&1
        if [ $? -ne 0 ] && [ ! -f /home/$user/etc/localtime ]; then
            mkdir -p /home/$user/etc
            cp /etc/localtime /home/$user/etc
            echo $user
        fi
   fi
done

タイムスタンプ設定用スクリプトを実行する。

# sh localtimset
hoge
fuga
 :

終了したら、もうこのスクリプトは不要なので削除する。

# rm -f localtimset

5. アクセス禁止ユーザリスト作成

vsftpd サーバにアクセスさせたくないユーザがあれば設定する。

File: /etc/vsftpd/ftpusers

1
foo  # <= 対象のユーザを追加

6. サーバー証明書作成

以下のようにして FTP サーバ証明書を作成する。

# cd /etc/pki/tls/certs/

# make vsftpd.pem
umask 77 ; \
        PEM1=`/bin/mktemp /tmp/openssl.XXXXXX` ; \
        PEM2=`/bin/mktemp /tmp/openssl.XXXXXX` ; \
        /usr/bin/openssl req -utf8 -newkey rsa:2048 -keyout $PEM1 -nodes -x509 -days 365 -out $PEM2 -set_serial 0 ; \
        cat $PEM1 >  vsftpd.pem ; \
        echo ""    >> vsftpd.pem ; \
        cat $PEM2 >> vsftpd.pem ; \
        rm -f $PEM1 $PEM2
Generating a 2048 bit RSA private key
....................................................................+++
.....+++
writing new private key to '/tmp/openssl.a7lbqG'
-----
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) [XX]:JP                                      # <= 国名
State or Province Name (full name) []:Shimane                             # <= 都道府県名
Locality Name (eg, city) [Default City]:Matsue                            # <= 市区町村名
Organization Name (eg, company) [Default Company Ltd]:mk-mode.com         # <= 会社名・サイト名
Organizational Unit Name (eg, section) []:                                # <= 部署名
Common Name (eg, your name or your server's hostname) []:ftp.mk-mode.com  # <= ホスト名・管理者名
Email Address []:root@mk-mode.com                                         # <= 管理者メールアドレス

# cd

7. vsftpd 起動

vsftpd を起動する。

# /etc/rc.d/init.d/vsftpd start
vsftpd 用の vsftpd を起動中:                               [  OK  ]

8. vsftpd 自動起動設定

サーバ起動時に自動で vsftpd が起動するよう設定する。

# chkconfig vsftpd on

# chkconfig --list vsftpd  # <= 2,3,4,5 が "on" であることを確認
vsftpd          0:off   1:off   2:on    3:on    4:on    5:on    6:off

9. アクセス制限設定

指定のもの以外は vsftpd にアクセスできないよう設定する。

File: /etc/hosts.allow

1
2
vsftpd: 127.0.0.1
vsftpd: 192.168.11.

File: /etc/hosts.deny

1
    vsftpd: ALL

10. ポート開放

ルータで、PASV モード用のポートを開放する。(今回の場合 TCP:4000 〜 4005)

また、ファイアウォール(”iptables.sh”)の設定もこれに合わせる。

11. 動作確認

クライアント側からコマンドラインや FTP クライアントでサーバに接続して、アップロード・ダウンロード等各種操作が可能かチェックする。

参考サイト


次回は、ファイルサーバ NFS の構築について紹介する予定です。

以上。





 

Sponsored Link

 

Comments