I have setup a IIS FTP server accoring to the http://learn.iis.net/page.aspx/321/configure-ftp-with-iis-manager-authentication-in-iis-7/.
I have problem with "dir" command reponse. When I try to list the contents of non-existing direcoty. it dooes not retrun error code 550 as following in (550 nonexistentdir: The system cannot find the file specified.) . It works fine in windows 2003 IIS5.
staging1_test : Windows 2008 server R2 Enterprise (x64) Service Pack1 (IIS7)
Response :
200 PORT command successful.
125 Data connection already open; Transfer starting.
226 Transfer complete.
C:\>ftp staging1test
220 Microsoft FTP Service
Password:
230 User logged in.
ftp> dir 1234567
200 PORT command successful.
125 Data connection already open; Transfer starting.
226 Transfer complete.
ftp>
staging1_test : Windows 2003 server R2 Standard(x64) Edition Service Pack2 (IIS5)
C:\>ftp staging1_test
220-Microsoft FTP Service
Password:
230 User fdsc logged in.
ftp> dir 1234567
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
550 1234567: The system cannot find the file specified.
ftp> quit
Response :
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
550 1234567: The system cannot find the file specified.
Any input, Greatly appericiated.
↧