Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

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.

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

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

2 Answers

up vote 4 down vote accepted

Try ftp localhost (without the ftp://)

share|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

ANSWER: "C:\>ftp localhost"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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