SlideShare a Scribd company logo
By: Om Prakash
1
2
This stands for File Transfer Protocol. This is the
simplest and most popular way to exchange files
over the Internet or intranet.
3
 Transferring files from a client computer to a server computer
is called "uploading" and transferring from a server to a client
is "downloading".
To access an FTP server, users must be able to connect
to the Internet or an intranet (via a modem or local area
network) with an FTP client program.
FTP uses the services of TCP. It needs two TCP
connections. The well-known port 21 is used for the
control connection and the well-known port 20 for the
data connection
4
CONTROL CONNECTION:
The communication path between the USER-PI (Process
Interpreter) and SERVER-PI for the exchange of
commands and replies. This connection follows the Telnet
Protocol.
DATA CONNECTION:
A full duplex connection over which data is transferred, in
a specified mode and type. The data transferred may be a
part of a file, an entire file or a number of files. The path
may be between a server-DTP (Data Transfer Process) and
a user-DTP, or between two server-DTPs.
5
6
Client connect from a random unprivileged port (n > 1023) to the
servers command port (21) and sends port command to tell server to
connect to n+1 then listens on the next higher unprivileged port (n+1)
for server responses. The server connects from it’s data port (20) to the
client data port (n+1)
ClientServer
20 21 1026 1027
1
2
3
4
Types of connections
7
Client opens two random unprivileged ports ( n > 1023 and n+1; ex
1026 and 1027) and connects the first port (n) to server command port
21 and issues a PASV command (server sends port to use for data);
client connects to servers specified data port, server completes
connection.
ClientServer
20 21 1026 1027
1
2
2024
3
4
Internal client
Private FTP server
INTERNET
External client
Ways to connect to an FTP server
8
Private user-only site
Allows only system users (or users with FTP profile) to connect
via FTP and access their files.
Anonymous
Allows anyone on the network to connect to it and transfer files
without having an account.
9
FTP commands
ftp [host]
- open an ftp session with the specified Host machine.
open [host]
- Establish a connection to the specified host when you're already at
an ftp prompt.
user [username]
- Log into an ftp server when you're already connected in an ftp
session.
ls [remote-directory]
- Print a listing of the contents of remote-directory on the remote
machine. The listing includes any system-dependent information
that the server chooses to include.
10
help [command]
- Print an informative message about the meaning of command. If
no argument is given, ftp prints a list of the known commands.
ascii
- Set the file transfer type to ASCII . Only use this transfer method
for text-files.
binary
- Set the file transfer type to support binary file transfer. Use this
transfer method for anything other than a textfile.
11
cd [remote-directory]
- Change the working directory on the remote machine to remote-
directory.
lcd [directory]
- Change the working directory to directory on the local machine.
If no directory is specified, the user's home directory is used.
pwd
- Print the name of the current working directory on the remote
machine. Often times this includes printing the full path.
12
put [local-file]
- Put (upload) local-file to the remote machine. No
wildcards!
get [remote-file]
- Retrieve (download) remote-file and store it on the
local machine. No wildcards! Can only get one file at a
time.
mput [local-files]
- Expand wild cards in the list of local-files given as
arguments and do a put for each file in the resulting
list. The list of files should be separated by spaces.
13
mkdir [new-directory-name]
- create a directory new-directory-name on the
remote machine.
rmdir [directory-name]
- Delete the directory entitled directory-name on the
remote machine.
rename [old-file-name] [new-file-name]
- Rename the file old-file-name on the remote
machine, to the file new-file-name.
14
quote site chmod xxx [file name]
- Change the permission modes of the file file-name
on the remote system to xxx mode. Note that the
chmod command is not always implemented.
get [file-name] "|more"
- Instead of downloading and saving the file file-name
on the local machine, you view its contents. Only
recommended to use with text files.
bye
- Terminate the FTP session with the remote server
and exit ftp. On Unix, an end of file should also
terminate the session and exit.
15
16
Example…
Assume you are required to download the file
lan.txt
from
papa.cdrom.com/pub/games/
1. At the command prompt type :
ftp papa.cdrom.com (this will start the ftp and
connection to the site)
The system will respond with the message
>connected to sunsite.cnlab-switch.ch.
>220 warchive.cdrom.com.FTP server (Version wu-
2.4.2(18)
>Thu nov 26 09:30:12 MET 2001) ready.
>Name (carchive.cdrom.com:usr):
17
2. Type ftp
The system will respond with something
similar to.
>331 Guest login ok, send your
complete e-mail address as password
>Password: (type your email)
18
3. After the welcome message that may look
something like this.
230 guest login ok, access restrictions apply.
Remote system type is UNIX.
We must now change to the directory “/pub/games”
Type in cd pub (this will change to the directory
pub), in this directory we will find downloadable
material.
19
Lets type dir to see the list of files in there we should see
the directory games in the list.
drwxr-xr-x 6 731 730 512 Nov 4 05:11 games
The d in front of the listing tells me it is a directory.
If dir does not work we can use the command: ls-al
20
4. Use „cd‟ to change into the remaining
directories:
Type:
cd games
21
5. Use ‘dir’ to find the file:
Type:
dir l*
to get a listing of all files which start with ‘l’.
You should see:
-rw-rw-r– 1 2066 ftp-game 134868 Jun 30
2001 lan.txt
•Because there is no ‘d’ at the far left, you
know that it is a file, not a directory.
•The 134868 is the file size, it is 134,868
bytes (approx. 134 Kb). It was last
modified on the 30th of June 2001.
22
6. To download, type:
bin
• This will make your download in „binary‟ form
•This mode will always work for all files, whereas the
default mode „ascii‟ will only work for text files.
•Therefore always make sure you type „bin‟ before you
download or you may get garbage!
23
Type:
get lan.txt
And type „y‟ when asked to confirm.
• „lan‟ will now download, and will soon be on the
computer you ran „ftp‟ from.
• Alternately, if you want to download multiple files,
you could type: „mget *‟, this would download *all*
files in the directory; „mget l*‟ would download all files
beginning with „l‟.
• If you do not wish to confirm each download one by
one, type „prompt‟ to turn that off. If you wish to have a
download indicator, type „hash‟.
24
6b. To upload:
• To upload a file you must be in a directory you are
allowed to upload into.
• You would type „put lan.txt‟ if you wished to upload
„lan.txt‟ or „mput l*‟ to upload all files beginning with
„l‟ for example.
• Make sure that you type „bin‟ again before you upload
anything.
25
7. Logging off.
Type:
bye
to close the connection and quit FTP.
• If you have any questions type either „man ftp‟
26

More Related Content

PPTX
PPT
File Transfer protocols
PPTX
Ftp server
PDF
Cyber Ethics Notes.pdf
PPT
Using an FTP client - Client server computing
PDF
FTP - File Transfer Protocol
PPTX
File transfer protocol
PPTX
FTP Client and Server | Computer Science
File Transfer protocols
Ftp server
Cyber Ethics Notes.pdf
Using an FTP client - Client server computing
FTP - File Transfer Protocol
File transfer protocol
FTP Client and Server | Computer Science

What's hot (20)

PPTX
Email - electronic mail
DOC
Triển khai nhiều domain controller chạy song song trên windows server 2012
PPTX
ODP
Computer virus
PPT
Google chrome
PPT
Virus part2
PPTX
File Transfer Protocol(FTP)
PPT
E Mail
PDF
What is malware
PPTX
Open Source Cloud Computing (1).pptx
DOCX
Triển khai wsus windows server update services
PPTX
Ransomware
PPT
FireWall
PPTX
PPT
Web security
PDF
PDF
Ftp
PPTX
Cyber Crime and Security
Email - electronic mail
Triển khai nhiều domain controller chạy song song trên windows server 2012
Computer virus
Google chrome
Virus part2
File Transfer Protocol(FTP)
E Mail
What is malware
Open Source Cloud Computing (1).pptx
Triển khai wsus windows server update services
Ransomware
FireWall
Web security
Ftp
Cyber Crime and Security
Ad

Similar to File Transfer Protocol (20)

PPT
file transfer and access utilities
PPT
Rakesh Kaushik
PDF
Ftp (file transfer protocol)
PPTX
PPTX
FTP(In_Linux).pptx
PPT
Cita310chap09
PPT
香港六合彩-六合彩
PPT
六合彩-香港六合彩
PPT
六合彩,香港六合彩 » SlideShare
PPT
六合彩 » SlideShare
PPT
香港六合彩
PPT
六合彩-香港六合彩 » SlideShare
PPT
六合彩,香港六合彩 » SlideShare
PPT
香港六合彩 » SlideShare
PDF
Linux Cheat Sheet.pdf
PDF
Linux internet server security and configuration tutorial
DOCX
Linux or unix interview questions
PPT
PDF
Lecture 7 -_ftp,_tftp,_telnet_and_ssh
PDF
Cracking CTFs - Sysbypass CTF Walkthrough
file transfer and access utilities
Rakesh Kaushik
Ftp (file transfer protocol)
FTP(In_Linux).pptx
Cita310chap09
香港六合彩-六合彩
六合彩-香港六合彩
六合彩,香港六合彩 » SlideShare
六合彩 » SlideShare
香港六合彩
六合彩-香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideShare
香港六合彩 » SlideShare
Linux Cheat Sheet.pdf
Linux internet server security and configuration tutorial
Linux or unix interview questions
Lecture 7 -_ftp,_tftp,_telnet_and_ssh
Cracking CTFs - Sysbypass CTF Walkthrough
Ad

Recently uploaded (20)

PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Basic Mud Logging Guide for educational purpose
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
01-Introduction-to-Information-Management.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PDF
Pre independence Education in Inndia.pdf
PDF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PPTX
master seminar digital applications in india
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Abdominal Access Techniques with Prof. Dr. R K Mishra
VCE English Exam - Section C Student Revision Booklet
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Basic Mud Logging Guide for educational purpose
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
01-Introduction-to-Information-Management.pdf
Microbial disease of the cardiovascular and lymphatic systems
Renaissance Architecture: A Journey from Faith to Humanism
O5-L3 Freight Transport Ops (International) V1.pdf
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Pre independence Education in Inndia.pdf
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
Anesthesia in Laparoscopic Surgery in India
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Supply Chain Operations Speaking Notes -ICLT Program
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
master seminar digital applications in india
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx

File Transfer Protocol

  • 2. 2 This stands for File Transfer Protocol. This is the simplest and most popular way to exchange files over the Internet or intranet.
  • 3. 3  Transferring files from a client computer to a server computer is called "uploading" and transferring from a server to a client is "downloading". To access an FTP server, users must be able to connect to the Internet or an intranet (via a modem or local area network) with an FTP client program. FTP uses the services of TCP. It needs two TCP connections. The well-known port 21 is used for the control connection and the well-known port 20 for the data connection
  • 4. 4
  • 5. CONTROL CONNECTION: The communication path between the USER-PI (Process Interpreter) and SERVER-PI for the exchange of commands and replies. This connection follows the Telnet Protocol. DATA CONNECTION: A full duplex connection over which data is transferred, in a specified mode and type. The data transferred may be a part of a file, an entire file or a number of files. The path may be between a server-DTP (Data Transfer Process) and a user-DTP, or between two server-DTPs. 5
  • 6. 6 Client connect from a random unprivileged port (n > 1023) to the servers command port (21) and sends port command to tell server to connect to n+1 then listens on the next higher unprivileged port (n+1) for server responses. The server connects from it’s data port (20) to the client data port (n+1) ClientServer 20 21 1026 1027 1 2 3 4 Types of connections
  • 7. 7 Client opens two random unprivileged ports ( n > 1023 and n+1; ex 1026 and 1027) and connects the first port (n) to server command port 21 and issues a PASV command (server sends port to use for data); client connects to servers specified data port, server completes connection. ClientServer 20 21 1026 1027 1 2 2024 3 4
  • 8. Internal client Private FTP server INTERNET External client Ways to connect to an FTP server 8
  • 9. Private user-only site Allows only system users (or users with FTP profile) to connect via FTP and access their files. Anonymous Allows anyone on the network to connect to it and transfer files without having an account. 9
  • 10. FTP commands ftp [host] - open an ftp session with the specified Host machine. open [host] - Establish a connection to the specified host when you're already at an ftp prompt. user [username] - Log into an ftp server when you're already connected in an ftp session. ls [remote-directory] - Print a listing of the contents of remote-directory on the remote machine. The listing includes any system-dependent information that the server chooses to include. 10
  • 11. help [command] - Print an informative message about the meaning of command. If no argument is given, ftp prints a list of the known commands. ascii - Set the file transfer type to ASCII . Only use this transfer method for text-files. binary - Set the file transfer type to support binary file transfer. Use this transfer method for anything other than a textfile. 11
  • 12. cd [remote-directory] - Change the working directory on the remote machine to remote- directory. lcd [directory] - Change the working directory to directory on the local machine. If no directory is specified, the user's home directory is used. pwd - Print the name of the current working directory on the remote machine. Often times this includes printing the full path. 12
  • 13. put [local-file] - Put (upload) local-file to the remote machine. No wildcards! get [remote-file] - Retrieve (download) remote-file and store it on the local machine. No wildcards! Can only get one file at a time. mput [local-files] - Expand wild cards in the list of local-files given as arguments and do a put for each file in the resulting list. The list of files should be separated by spaces. 13
  • 14. mkdir [new-directory-name] - create a directory new-directory-name on the remote machine. rmdir [directory-name] - Delete the directory entitled directory-name on the remote machine. rename [old-file-name] [new-file-name] - Rename the file old-file-name on the remote machine, to the file new-file-name. 14
  • 15. quote site chmod xxx [file name] - Change the permission modes of the file file-name on the remote system to xxx mode. Note that the chmod command is not always implemented. get [file-name] "|more" - Instead of downloading and saving the file file-name on the local machine, you view its contents. Only recommended to use with text files. bye - Terminate the FTP session with the remote server and exit ftp. On Unix, an end of file should also terminate the session and exit. 15
  • 16. 16 Example… Assume you are required to download the file lan.txt from papa.cdrom.com/pub/games/
  • 17. 1. At the command prompt type : ftp papa.cdrom.com (this will start the ftp and connection to the site) The system will respond with the message >connected to sunsite.cnlab-switch.ch. >220 warchive.cdrom.com.FTP server (Version wu- 2.4.2(18) >Thu nov 26 09:30:12 MET 2001) ready. >Name (carchive.cdrom.com:usr): 17
  • 18. 2. Type ftp The system will respond with something similar to. >331 Guest login ok, send your complete e-mail address as password >Password: (type your email) 18
  • 19. 3. After the welcome message that may look something like this. 230 guest login ok, access restrictions apply. Remote system type is UNIX. We must now change to the directory “/pub/games” Type in cd pub (this will change to the directory pub), in this directory we will find downloadable material. 19
  • 20. Lets type dir to see the list of files in there we should see the directory games in the list. drwxr-xr-x 6 731 730 512 Nov 4 05:11 games The d in front of the listing tells me it is a directory. If dir does not work we can use the command: ls-al 20
  • 21. 4. Use „cd‟ to change into the remaining directories: Type: cd games 21
  • 22. 5. Use ‘dir’ to find the file: Type: dir l* to get a listing of all files which start with ‘l’. You should see: -rw-rw-r– 1 2066 ftp-game 134868 Jun 30 2001 lan.txt •Because there is no ‘d’ at the far left, you know that it is a file, not a directory. •The 134868 is the file size, it is 134,868 bytes (approx. 134 Kb). It was last modified on the 30th of June 2001. 22
  • 23. 6. To download, type: bin • This will make your download in „binary‟ form •This mode will always work for all files, whereas the default mode „ascii‟ will only work for text files. •Therefore always make sure you type „bin‟ before you download or you may get garbage! 23
  • 24. Type: get lan.txt And type „y‟ when asked to confirm. • „lan‟ will now download, and will soon be on the computer you ran „ftp‟ from. • Alternately, if you want to download multiple files, you could type: „mget *‟, this would download *all* files in the directory; „mget l*‟ would download all files beginning with „l‟. • If you do not wish to confirm each download one by one, type „prompt‟ to turn that off. If you wish to have a download indicator, type „hash‟. 24
  • 25. 6b. To upload: • To upload a file you must be in a directory you are allowed to upload into. • You would type „put lan.txt‟ if you wished to upload „lan.txt‟ or „mput l*‟ to upload all files beginning with „l‟ for example. • Make sure that you type „bin‟ again before you upload anything. 25
  • 26. 7. Logging off. Type: bye to close the connection and quit FTP. • If you have any questions type either „man ftp‟ 26

Editor's Notes

  • #4: TFTP uses the services of UDP on the well-known port 69 TP uses the services of UDP on the well-known port 69
  • #16: Tftp is ftp like service available through UDP on well known port 69.
  • #17: Tftp is ftp like service available through UDP on well known port 69.