FTP PASV TYPE A RETR # Server-side data to see that FTP works so does it? data REPLY EPSV 500 no such command REPLY SIZE 500 no such command # Client-side ftp FTP range download when SIZE doesn't work ftp://%HOSTIP:%FTPPORT/336 --use-ascii --range 3-6 # Verify data after the test has been "shot" USER anonymous PASS ftp@example.com PWD EPSV PASV TYPE A SIZE 336 REST 3 RETR 336 ABOR QUIT