can we create FTP connection using command prompt with the help of IP address???

link|improve this question
feedback

3 Answers

You've not told us your operating system, but on Windows you can use the bundled command-line utility ftp to do this. Documentation is here.

On most Unix-based OSes, there is also a utility called ftp, documentation can be found by using man ftp or by reading this.

link|improve this answer
feedback

Of course, you can use ftp.exe from the command prompt (located at C:\Windows\System32\ftp.exe).

For example:

ftp ftp.gnu.org

and

ftp 140.186.70.20

both work.

link|improve this answer
Built in? Hardly. – Ignacio Vazquez-Abrams Jan 8 '11 at 13:04
Its a command line program that ships with Windows, to be exact. – John T Jan 8 '11 at 13:06
Shouldn't that be 'bundled', rather than 'built in' then? ;) – Matthieu Cartier Jan 8 '11 at 13:08
2  
I smell an antitrust lawsuit! – ta.speot.is Jan 8 '11 at 13:14
feedback

Most ftp clients support interactive commands, if that's what you mean. You can load the ftp program and then choose an IP destination, authenticate, and so on:

$ ftp
ftp> open 198.232.168.117
220 (ftp.sun.com:mfe): anonymous
331 Guest login ok, send your complete e-mail address as password.
Password: xxxxx
230 Guest login ok, access restrictions apply.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>

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.