Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. linux-s5c6:~ # cd ~ftpuser1
  2. linux-s5c6:/home/ftpadm/ftpuser1 # touch file
  3. linux-s5c6:/home/ftpadm/ftpuser1 # getfacl file
  4. # file: file
  5. # owner: root
  6. # group: root
  7. user::rw-
  8. user:ftpadm:rwx #effective:rw-
  9. user:ftpuser1:rwx #effective:rw-
  10. group::r-x #effective:r--
  11. mask::rw-
  12. other::r--
  13.  
  14. linux-s5c6:/home/ftpadm/ftpuser1 # ftp localhost
  15. Trying ::1...
  16. ftp: connect to address ::1: Connection refused
  17. Trying 127.0.0.1...
  18. Connected to localhost.
  19. 220 Welcome message
  20. Name (localhost:root): ftpuser1
  21. 331 Please specify the password.
  22. Password:
  23. 230 Login successful.
  24. Remote system type is UNIX.
  25. Using binary mode to transfer files.
  26. ftp> ls
  27. 229 Entering Extended Passive Mode (|||40229|).
  28. 150 Here comes the directory listing.
  29. -rw-rw-r-- 1 0 0 0 Apr 19 09:37 file
  30. 226 Directory send OK.
  31. ftp> del file
  32. 250 Delete operation successful.
  33. ftp>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement