I think that the appearance is misleading.
Could it be that there is no default FTP support in Cygwin ?
$ which ftp
/cygdrive/c/Windows/system32/ftp
whereas the usual directory for Cygwin executables has no such file:
$ ls /usr/bin/ftp*
ls: cannot access /usr/bin/ftp*: No such file or directory
That means that it's actually the Windows7 FTP client that is being launched from the Cygwin prompt, which is currently not supported. In the link provided by Tim Supinie, compatibility problems are mentioned for the blanking that needs to happen when the user enters his password.
My solution has been to look for a Cygwin variant of FTP, but Cygwin's setup.exe
is remarkably clumsy at this point. I was only being offered some fancier FTP clients. The solution was also provided in that link. Kevin Panko, it literally instructs to download the inetutils
package in Cygwin, which contains popular networking clients. By entering that word in Cygwin's setup.exe
, I ended up with the true native FTP client under Cygwin, as proven by:
$ which ftp
/usr/bin/ftp
1Please summarize what the link says, in your answer. If the link goes down, then your answer will not be helpful in the future. – Kevin Panko – 2014-01-17T22:48:05.357