ChorusOS 5.0 System Administrator's Guide

ftpd and ftp

The ftpd(1M) function provides File Transfer Protocol services on ChorusOS systems. See also ftp(1CC).


Example 13-9 Sample ftp Session

The following example starts the ftpd server on the ChorusOS system and tests it:


$ rsh target /bin/ftpd &
$ ftp target
Connected to target.
220- Welcome to ChorusOS!
220  FTP server (Version 6.00) ready.
Name (target:user): 
331- Password not checked
331 Login ok.
Password:
230- Logging in with home=/
230 User user logged in.
ftp> ls
ls
200 PORT command successful.
150 Opening ASCII mode data connection for 'file list'.
bin
dev
etc
lib
Makefile
226 Transfer complete
30 bytes received in 0.11 seconds (0.28 Kbytes/s)
ftp> bye
bye
221 Goodbye.
$ 

Note that target is running in non-secure mode, so no password is required.