Running a ftp server on my PC.
I opened Windows Explorer and navigated to: ftp://127.0.0.1/
I connect and the servers root directory files are displayed, great.

However, from cmd prompt I am unable to successfully ftp into the server.

C:\>ftp ftp.localhost
Unknown host ftp.localhost.
ftp> bye

C:\>ftp ftp://localhost
Unknown host ftp://localhost.
ftp> bye

C:\>ftp ftp://127.0.0.1
Unknown host ftp://127.0.0.1.
ftp>

Any suggestions?

Thanks.

link|improve this question

Should I delete this question? – Tommy Jan 20 '10 at 2:28
feedback

migrated from stackoverflow.com Jan 20 '10 at 4:24

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 4 down vote accepted

Try ftp localhost (without the ftp://)

link|improve this answer
Thanks. That did it. – Tommy Jan 20 '10 at 2:20
then accept the answer – akira Jan 21 '10 at 6:07
feedback

ANSWER: "C:\>ftp localhost"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.