test105 601 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Server-side
  2. <reply>
  3. <data>
  4. data
  5. to
  6. see
  7. that FTP
  8. works
  9. so does it?
  10. </data>
  11. </reply>
  12. # Client-side
  13. <client>
  14. <server>
  15. ftp
  16. </server>
  17. <name>
  18. FTP user+password in URL and ASCII transfer
  19. </name>
  20. <command>
  21. ftp://userdude:passfellow@%HOSTIP:%FTPPORT/103 --use-ascii
  22. </command>
  23. <file name="log/ftpserver.cmd">
  24. REPLY EPSV 500 no such command
  25. REPLY SIZE 500 no such command
  26. </file>
  27. </test>
  28. # Verify data after the test has been "shot"
  29. <verify>
  30. <protocol>
  31. USER userdude
  32. PASS passfellow
  33. PWD
  34. EPSV
  35. PASV
  36. TYPE A
  37. SIZE 103
  38. RETR 103
  39. QUIT
  40. </protocol>
  41. </verify>