Starting Multiple Copies Of Vsftpd - Red Hat ENTERPRISE LINUX 5 - DEPLOYMENT Deployment Manual

Hide thumbs Also See for ENTERPRISE LINUX 5 - DEPLOYMENT:
Table of Contents

Advertisement

Chapter 23. FTP
By default, the vsftpd service does not start automatically at boot time. To configure the vsftpd
service to start at boot time, use an initscript utility, such as /sbin/chkconfig, /usr/sbin/ntsysv, or
the Services Configuration Tool program. Refer to
Chapter 16, Controlling Access to Services
for
more information regarding these tools.

23.4.1. Starting Multiple Copies of vsftpd

Sometimes one computer is used to serve multiple FTP domains. This is a technique called
multihoming. One way to multihome using vsftpd is by running multiple copies of the daemon, each
with its own configuration file.
To do this, first assign all relevant IP addresses to network devices or alias network devices on the
Chapter 15, Network Configuration
system. Refer to
for more information about configuring network
devices and device aliases. Additional information can be found about network configuration scripts in
Chapter 14, Network
Interfaces.
Next, the DNS server for the FTP domains must be configured to reference the correct machine.
Chapter 17, Berkeley Internet Name
For information about BIND and its configuration files, refer to
Domain
(BIND).
For vsftpd to answer requests on different IP addresses, multiple copies of the daemon must be
Section 23.4, "Starting
running. The first copy must be run using the vsftpd initscripts, as outlined in
and Stopping
vsftpd". This copy uses the standard configuration file, /etc/vsftpd/vsftpd.conf.
Each additional FTP site must have a configuration file with a unique name in the /etc/vsftpd/
directory, such as /etc/vsftpd/vsftpd-site-2.conf. Each configuration file must be readable
and writable only by root. Within each configuration file for each FTP server listening on an IPv4
network, the following directive must be unique:
listen_address=N.N.N.N
Replace N.N.N.N with the unique IP address for the FTP site being served. If the site is using IPv6,
use the listen_address6 directive instead.
Once each additional server has a configuration file, the vsftpd daemon must be launched from a
root shell prompt using the following command:
vsftpd /etc/vsftpd/<configuration-file> [amp
]
In the above command, replace <configuration-file> with the unique name for the server's
configuration file, such as /etc/vsftpd/vsftpd-site-2.conf.
Other directives to consider altering on a per-server basis are:
• anon_root
• local_root
• vsftpd_log_file
• xferlog_file
366

Advertisement

Table of Contents
loading

Table of Contents