WU-FTPD 2.6.1 release notes (July 2010)

export FTP_SSL_CERT_FILE=/home/user1/certificate.pem
export FTP_SSL_KEYT_FILE=/home/user1/private-key.pem
Using Command-Line Options
To start the FTP client using command-line options, run the following
command:
ftp -z CAfile=/etc/ftpd/security/ca.pem -z
cert=/home/user1/certificate.pem -z
key=/home/user1/private-key.pem <server-name>
Using the Configuration File
To start the FTP client using a configuration file, run the following command:
ftp -z config=<config-file> <server-name>
where:
config-file Specifies the name of the configuration file.
server-name Specifies the name of the server to which date must be
transferred.
5. Start the FTP client to initiate a secured file transfer to the FTP server system.
Following is a sample output when the FTP client connects to the FTP server:
client:/tmp>ftp server-machine
Connected to server-machine.
220 server-machine FTP server (Revision 1.1 Version wuftpd-2.6.1
(PHNE_36065) Fri May 30
15:30:32 GMT 2008) ready.
234 AUTH TLS OK.
[TLSv1/SSLv3, cipher DHE-RSA-AES256-SHA, 256 bits]
Name (server-machine:root): abc
232 User abc auto-logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> prot on
200 PROT P ok.
TLS/SSL protection of data connections on.
ftp> ls
200 PORT command successful.
150 Opening ASCII mode private data connection for /usr/bin/ls.
total 96
-rw-r--r-- 1 abc users 23 May 30 14:01 end.txt
-rw-rw-rw- 1 abc users 13 May 25 14:57 start.txt
226 Transfer complete.
ftp> get end.txt
200 PORT command successful.
150 Opening BINARY mode private data connection for end.txt (23 bytes).
226 Transfer complete.
23 bytes received in 0.07 seconds (0.33 Kbytes/s)
ftp> by
221-You have transferred 23 bytes in 1 files.
221-Total traffic for this session was 1108 bytes in 2 transfers.
221-Thank you for using the FTP service on charokee.ind.hp.com.
221 Goodbye.
client-machine:/tmp>
24 WU-FTPD 2.6.1 Release Notes