Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. ```bash
  2. $ ftp 192.168.0.114 12345
  3. Connected to 192.168.0.114.
  4. 220 DiddyFTP server ready.
  5. Name (192.168.0.114:pi): anonymous
  6. 331 Password required for anonymous
  7. Password:
  8. 230 User anonymous logged in.
  9. Remote system type is UNIX.
  10. Using binary mode to transfer files.
  11. ftp> ls
  12. 200 PORT command successful.
  13. 150 Opening ASCII mode data connection for '/bin/ls'.
  14. total 5
  15. drwxr-xr-x 3 mobile mobile 160 Jun 15 16:26 CD_BZENG4
  16. -rw-r--r-- 1 mobile mobile 63902 Jun 21 19:04 custom.png
  17. drwxr-xr-x 3 mobile mobile 160 Jun 12 12:24 GENIUS2
  18. drwxr-xr-x 10 mobile mobile 384 Sep 07 14:06 Settings
  19. drwxr-xr-x 1 mobile mobile 96 Aug 28 16:31 EBPocket
  20.  
  21. WARNING! 5 bare linefeeds received in ASCII mode
  22. File may not have transferred correctly.
  23. 226 Transfer complete.
  24. ftp> cd EBPocket
  25. 250 OK. Current directory is /EBPocket/
  26. ftp> ls
  27. 200 PORT command successful.
  28. 150 Opening ASCII mode data connection for '/bin/ls'.
  29. total 1
  30. drwxr-xr-x 2 mobile mobile 128 Aug 28 16:31 EDICT2
  31.  
  32. WARNING! 1 bare linefeeds received in ASCII mode
  33. File may not have transferred correctly.
  34. 226 Transfer complete.
  35. ftp> rm EDICT2
  36. 250 DELE command successful.
  37. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement