FTP
PASV
RETR
# Server-side
data
    to
      see
that FTP
works
  so does it?
# Client-side
ftp
 
FTP fetch two files using absolute paths
 
 
ftp://%HOSTIP:%FTPPORT//foo/1225 ftp://%HOSTIP:%FTPPORT//foo/bar/1225
# Verify data after the test has been "shot"
USER anonymous
PASS ftp@example.com
PWD
CWD /
CWD foo
EPSV
TYPE I
SIZE 1225
RETR 1225
CWD /
CWD /
CWD foo
CWD bar
EPSV
SIZE 1225
RETR 1225
QUIT