Sun Microsystems, Inc.
spacerspacer
spacer www.sun.com docs.sun.com |
spacer
black dot
 
 
43.  Administering the FTP Server (Tasks) Virtual Hosting  Previous   Contents   Next 
   
 

How to Enable Limited Virtual Hosting

Limited virtual hosting provides partial support for virtual FTP servers. You can enable support for limited virtual hosting by specifying the virtual root directory. If required, you can also set the following parameters for the virtual host in the ftpaccess file:

  • banner

  • logfile

  • email

  • hostname

All directives in the ftpaccess file are shared globally across all virtual servers.

  1. Become superuser.

  2. Add the following entries to the ftpaccess file.

    virtual address root|banner|logfile path
    virtual address hostname|email string

    virtual

    Keyword that is used to enable virtual server capabilities

    address

    IP address of the virtual server

    root

    The root directory of the virtual server

    banner

    Banner file that is displayed when a connection is made to the virtual server

    logfile

    Record of file transfers that are made to and from the virtual server

    path

    Variable that is used to specify the location of directories and files on the virtual server

    email

    Email address that is used in message files and in the HELP command

    hostname

    Name of the host that is shown in the greeting message or status command

    string

    Variable that is used to specify email or hostname parameters


    Note - While it is possible to use hostname as the address of the virtual server, you are strongly encouraged to use the IPv4 address instead. DNS must be available when the FTP connection is received in order for hostname to be matched. For an IPv6 host, use the host name rather than the IPv6 address.


Example--Enabling Limited Virtual Hosting

virtual 10.1.2.3 root    /var/ftp/virtual/ftp-serv
virtual 10.1.2.3 banner  /var/ftp/virtual/ftp-serv/banner.msg
virtual 10.1.2.3 logfile /var/log/ftp/virtual/ftp-serv/xferlog

The preceding example sets the location of the root directory, banner, and logfile on a virtual FTP server.


Note - The ftpaddhost(1M) script with the -l option is provided to configure limited virtual hosts.

In the following example, ftpaddhost is run with -l -b -x options to configure limited virtual hosting with a test banner and the logfile /var/ftp/virtual/10.1.2.3/xferlog under a virtual root /var/ftp/virtual/10.1.2.3.

ftpaddhost -l -b -x /var/ftp/virtual/10.1.2.3/xferlog \
/var/ftp/virtual/10.1.2.3

How to Enable Complete Virtual Hosting

Complete virtual hosting allows separate configuration files for each virtual domain. To enable complete support for virtual hosting on the FTP server, you can create or modify the following FTP configuration files for specific domains:

  • ftpaccess

  • ftpusers

  • ftpgroups

  • ftphosts

  • ftpconversions

For further information, see ftpaccess(4), ftpusers(4), ftpgroups(4), ftphosts(4), and ftpconversions(4).


Note - If separate versions of the configuration files are unavailable, master versions of the files in the /etc/ftpd directory are used.


  1. Become superuser.

  2. Add the following entry to the /etc/ftpd/ftpservers file.

    address /config-file-dir

    address

    IP address of the virtual server

    config-file-dir

    Directory that contains the configuration files that are customized for the virtual host


    Note - While it is possible to use hostname as the address of the virtual server, you are strongly encouraged to use the IPv4 address instead. DNS must be available when the FTP connection is received in order for hostname to be matched. For an IPv6 host, use the host name rather than the IPv6 address.


  3. To create a customized version of an FTP server configuration file for the virtual host, copy the master version of the file from /etc/ftpd to the /config-file-dir directory.

    For further information, see ftpservers(4).

Example--Enabling Complete Virtual Hosting

#
# FTP Server virtual hosting configuration file
#

10.1.2.3 /net/inet/virtual/somedomain/
10.1.2.4 /net/inet/virtual/anotherdomain/

The preceding example specifies the IP addresses for two different domains on the virtual server.


Note - The ftpaddhost(1M) script with the -c option is provided to configure complete virtual hosts.

In the following example, ftpaddhost is run with -l -b -x options to configure limited virtual hosting with a test banner and the logfile /var/ftp/virtual/10.1.2.3/xferlog under a virtual root /var/ftp/virtual/10.1.2.3.

ftpaddhost -l -b -x /var/ftp/virtual/10.1.2.3/xferlog \
/var/ftp/virtual/10.1.2.3

Starting the FTP Server Automatically

The FTP server can be started in one of two ways:

  • As a nowait that is server started from the inetd.conf file

  • As a standalone server that is started from the command line or by a startup script

Starting an FTP Server From inetd.conf

You can add a nowait entry in inetd.conf file to start the FTP server. If the site handles many connections, the FTP daemon can also be run in standalone mode. For more information, see inetd.conf(4). See also in.ftpd(1M) for information on additional command-line options.

How to Start an FTP Server From inetd.conf

  1. Become superuser.

  2. Add a nowait entry to the inetd.conf file:

    ftp  stream  tcp6  nowait  root  /usr/sbin/in.ftpd  in.ftpd -a

    Note - The -a option is specified to enable the use of the ftpaccess file.


  3. Signal inetd to reread the inetd.conf file.

    # pkill -HUP inetd
     
 
 
 
  Previous   Contents   Next