FTP PASV TYPE A RETR # Server-side data to see that FTP works so does it? REPLY EPSV 500 no such command REPLY SIZE 500 no such command # Client-side ftp FTP user+password in URL and ASCII transfer ftp://userdude:passfellow@%HOSTIP:%FTPPORT/105 --use-ascii # Verify data after the test has been "shot" USER userdude PASS passfellow PWD EPSV PASV TYPE A SIZE 105 RETR 105 QUIT