I'm using ftp 7.5 and I have a straightforward setup goal which would allow me (an administrator on an SBS 2011 server) to access an ftp site on the server. Currently I have set up the site and under settings I set the site to use my permissions. I also set permissions on the ftp home directory using a command "ICACLS "d:\ftphome" /Grant administrators:F /T" I thought this should allow me to log in with an ftp client, and have full access to the home directory for the ftp site.
When I log in, here is the sequence:
Status: Connected
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/" is current directory.
Command: TYPE I
Response: 200 Type set to I.
Command: PASV
Response: 227 Entering Passive Mode (122,122,0,22,19,144).
Command: LIST
Response: 550 Logon failure: unknown user name or bad password.
Error: Failed to retrieve directory listing
So, I don't understand where the problem comes from. Evidently the ftp site (which is running with my user permissions) is not able to list the contents of the home directory. But I thought that the ICACL command above would have given me (a member of the administrator group) permission to read (or list) the directory.
Am I missing something? What do I need to do to allow me to access the directory?