I have a Windows 7 IIS - FTP Website on my localhost. Its IP is 192.168.2.77:15555,
I can successfully connect to ftp://192.168.2.77:15555/
and get the file list after enter username/password through browser like Chrome.
But when I open cmd
, and use ftp 192.168.2.77
or ftp 192.168.2.77:15555
, the prompt for username/password does not show (which should show in normal procedure)
It changed to ftp>
directly, and if I execute ls -al
it tells me I'm not connected:
C:\Users\username>ftp 192.168.2.77:15555
Unknown host 192.168.2.77:15555.
ftp> ls -al
Not connected.
ftp>
C:\Users\username>ftp 192.168.2.77
ftp> ls -al
Not connected.
ftp>
What should I do further to connect to FTP through cmd
?