dirmessage_enable=
Enables the display of descriptive messages when a user enters a directory; this is usually used to explain the directory contents, usage instructions, contact information, or copyright and licensing details. There is an example of this in the character-mode transfer shown earlier, highlighted in bold. The text of the message is normally contained in the file
banner_file=
Configures a file that contains a banner message that will be sent to clients when they connect to the server.
ascii_upload_enable=
FTP has the ability to automatically change end-of-line characters to compensate for differences between Linux/Unix, Windows, and Macintosh computers using ASCII mode. The author of
ls_recurse_enable=
Controls the use of recursive directory listings. Some very nice clients, such as
use_localtime=
Enables the display of times in the local time zone instead of GMT.
You can restrict FTP access to specific local users by adding their usernames into the file
7.11.2. How Does It Work?
FTP is a disaster from a security perspective, since transmitted data (including the username and password) are sent in plain text and can be intercepted by anyone snooping on the network. Nonetheless, it's a useful protocol for the public download of large files.
FTP is a very old protocol, so old, in fact, that in its original form, it predates TCP/IP! In order to work around some network transport limitations, traditional FTP uses
FTP also supports
7.11.3. What About...
7.11.3.1. ...secure FTP?
There are two types of secure FTP:
An FTP extension to the secure shell ( SSH) protocol. This is installed by default on Fedora systems as part of the SSH service; the command name is
FTPS
FTP over the Secure Socket Layer (SSL). SSL is a general encryption layer that can be used to protect many types of connections, including HTTP, IMAP, and POP3 (which are known as HTTPS, IMAPS, and POP3S when used with SSL). I recommend the use of SFTP over FTPS, but
7.11.4. Where Can I Learn More?
? The manpages for
? The manpages for
? RFC 959: http://www.ietf.org/rfc/rfc0959.txt
7.12. Analyzing Web and FTP Logs
Fedora provides the Webalizer tool for analyzing Apache and
7.12.1. How Do I Do That?