Monday 11 June 2012

Connect To FTP Client

Posted By Maher Bro

Today I Am Going To Demonstrate You Connecting To FTP Client
Basically FTP Stands For File Transfer Protocol That's Used To Download And Upload Files Via Internet Via 21 Port And We Can Login Remotely With The Help Of Client Application Tool
Once You Have Logged In To Your FTP Server You Can Perform Various Tasks On Networking Like Renaming , Deleting , Uploading , Editing And Hosting Your Website Too
There Are Many Applications Software That's Used In It Like ALFTP And FileZilla Alike Many
So Let's Start It
1: Open Up Your Command Prompt
2: Type FTP {Internet Protocol ADDRESS And Website You Wanted To Connect Through}
3: Suppose You Wanted To Connect To ftp.4players.de
C:\>ftp
ftp> o
To ftp.4players.de
Connected to ftp-1.freenet.de.
220 ftp.4players.de FTP server ready.
User (ftp-1.freenet.de:(none)): anonymous
331 Password required.
Password:
230 Login completed.
ftp> ls
200 PORT command ok.
150 Opening data connection.
./crossdomain.xml
226 Transfer complete.
ftp: 19 bytes received in 0.04Seconds 0.50Kbytes/sec.
ftp> dir
200 PORT command ok.
150 Opening data connection.
-rw-r--r--   1 root     root          435 Aug 11  2010 crossdomain.xml
drwxr-xr-x   6 root     root        24576 May 09 12:09 pub
226 Transfer complete.
ftp: 132 bytes received in 0.00Seconds 66.00Kbytes/sec.
ftp> ls
200 PORT command ok.
150 Opening data connection.
./crossdomain.xml
226 Transfer complete.
ftp: 19 bytes received in 0.00Seconds 6.33Kbytes/sec.
ftp> dir ./crossdomain.xml
200 PORT command ok.
150 Opening data connection.
-rw-r--r--   1 root     root          435 Aug 11  2010 ./crossdomain.xml
226 Transfer complete.
ftp: 74 bytes received in 0.00Seconds 18.50Kbytes/sec.
................................................................................................
Done 

0 comments: