SlideShare une entreprise Scribd logo
1  sur  26
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

Contenu connexe

Tendances (20)

File transfer protocol (ftp)
File transfer protocol (ftp)File transfer protocol (ftp)
File transfer protocol (ftp)
 
FTP Client and Server | Computer Science
FTP Client and Server | Computer ScienceFTP Client and Server | Computer Science
FTP Client and Server | Computer Science
 
File Transfer Protocol
File Transfer ProtocolFile Transfer Protocol
File Transfer Protocol
 
TFTP - Trivial File Transfer Protocol
TFTP - Trivial File Transfer ProtocolTFTP - Trivial File Transfer Protocol
TFTP - Trivial File Transfer Protocol
 
Ftp
FtpFtp
Ftp
 
Ftp server
Ftp serverFtp server
Ftp server
 
Lecture 7 -_ftp,_tftp,_telnet_and_ssh
Lecture 7 -_ftp,_tftp,_telnet_and_sshLecture 7 -_ftp,_tftp,_telnet_and_ssh
Lecture 7 -_ftp,_tftp,_telnet_and_ssh
 
File transfer protocol
File transfer protocolFile transfer protocol
File transfer protocol
 
Ftp hari edu
Ftp hari eduFtp hari edu
Ftp hari edu
 
File transfer protocol
File transfer protocolFile transfer protocol
File transfer protocol
 
Domain name system (dns) , TELNET ,FTP, TFTP
Domain name system (dns) , TELNET ,FTP, TFTPDomain name system (dns) , TELNET ,FTP, TFTP
Domain name system (dns) , TELNET ,FTP, TFTP
 
main
mainmain
main
 
File Transfer Protocol
File Transfer ProtocolFile Transfer Protocol
File Transfer Protocol
 
Ftp server linux
Ftp server linuxFtp server linux
Ftp server linux
 
Ftp
FtpFtp
Ftp
 
File Transfer protocols
File Transfer protocolsFile Transfer protocols
File Transfer protocols
 
Ftp tftp
Ftp tftpFtp tftp
Ftp tftp
 
FTP Conflict troubleshooting & MINI-LINK TN FTP
FTP Conflict troubleshooting & MINI-LINK TN FTPFTP Conflict troubleshooting & MINI-LINK TN FTP
FTP Conflict troubleshooting & MINI-LINK TN FTP
 
TFTP
TFTPTFTP
TFTP
 
Meeting 13. web server i
Meeting 13. web server iMeeting 13. web server i
Meeting 13. web server i
 

Similaire à File Transfer Protocol

file transfer and access utilities
file transfer and access utilitiesfile transfer and access utilities
file transfer and access utilitiestumetr1
 
Rakesh Kaushik
Rakesh KaushikRakesh Kaushik
Rakesh Kaushikitplant
 
香港六合彩
香港六合彩香港六合彩
香港六合彩csukxnr
 
六合彩 » SlideShare
六合彩 » SlideShare六合彩 » SlideShare
六合彩 » SlideSharemvtqyygx
 
六合彩,香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideShare六合彩,香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideShareyqtvdsbl
 
六合彩-香港六合彩 » SlideShare
六合彩-香港六合彩 » SlideShare六合彩-香港六合彩 » SlideShare
六合彩-香港六合彩 » SlideSharemmfirkhw
 
香港六合彩 » SlideShare
香港六合彩 » SlideShare香港六合彩 » SlideShare
香港六合彩 » SlideSharecxrcpdu
 
六合彩-香港六合彩
六合彩-香港六合彩六合彩-香港六合彩
六合彩-香港六合彩skpkcd
 
香港六合彩-六合彩
香港六合彩-六合彩香港六合彩-六合彩
香港六合彩-六合彩qiohms
 
六合彩,香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideShare六合彩,香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideSharedqxjlhfc
 
Linux Cheat Sheet.pdf
Linux Cheat Sheet.pdfLinux Cheat Sheet.pdf
Linux Cheat Sheet.pdfroschahacker
 
Linux internet server security and configuration tutorial
Linux internet server security and configuration tutorialLinux internet server security and configuration tutorial
Linux internet server security and configuration tutorialannik147
 
Linux or unix interview questions
Linux or unix interview questionsLinux or unix interview questions
Linux or unix interview questionsTeja Bheemanapally
 
Cracking CTFs The Sysbypass CTF
Cracking CTFs The Sysbypass CTFCracking CTFs The Sysbypass CTF
Cracking CTFs The Sysbypass CTFRiyaz Walikar
 
Meeting 9 nfs network file system
Meeting 9   nfs network file systemMeeting 9   nfs network file system
Meeting 9 nfs network file systemSyaiful Ahdan
 

Similaire à File Transfer Protocol (20)

file transfer and access utilities
file transfer and access utilitiesfile transfer and access utilities
file transfer and access utilities
 
Rakesh Kaushik
Rakesh KaushikRakesh Kaushik
Rakesh Kaushik
 
Ft pv2(1)
Ft pv2(1)Ft pv2(1)
Ft pv2(1)
 
FTP(In_Linux).pptx
FTP(In_Linux).pptxFTP(In_Linux).pptx
FTP(In_Linux).pptx
 
Cita310chap09
Cita310chap09Cita310chap09
Cita310chap09
 
香港六合彩
香港六合彩香港六合彩
香港六合彩
 
六合彩 » SlideShare
六合彩 » SlideShare六合彩 » SlideShare
六合彩 » SlideShare
 
六合彩,香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideShare六合彩,香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideShare
 
六合彩-香港六合彩 » SlideShare
六合彩-香港六合彩 » SlideShare六合彩-香港六合彩 » SlideShare
六合彩-香港六合彩 » SlideShare
 
香港六合彩 » SlideShare
香港六合彩 » SlideShare香港六合彩 » SlideShare
香港六合彩 » SlideShare
 
六合彩-香港六合彩
六合彩-香港六合彩六合彩-香港六合彩
六合彩-香港六合彩
 
香港六合彩-六合彩
香港六合彩-六合彩香港六合彩-六合彩
香港六合彩-六合彩
 
六合彩,香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideShare六合彩,香港六合彩 » SlideShare
六合彩,香港六合彩 » SlideShare
 
Linux Cheat Sheet.pdf
Linux Cheat Sheet.pdfLinux Cheat Sheet.pdf
Linux Cheat Sheet.pdf
 
Linux internet server security and configuration tutorial
Linux internet server security and configuration tutorialLinux internet server security and configuration tutorial
Linux internet server security and configuration tutorial
 
Linux or unix interview questions
Linux or unix interview questionsLinux or unix interview questions
Linux or unix interview questions
 
Rhel3
Rhel3Rhel3
Rhel3
 
Cracking CTFs - Sysbypass CTF Walkthrough
Cracking CTFs - Sysbypass CTF WalkthroughCracking CTFs - Sysbypass CTF Walkthrough
Cracking CTFs - Sysbypass CTF Walkthrough
 
Cracking CTFs The Sysbypass CTF
Cracking CTFs The Sysbypass CTFCracking CTFs The Sysbypass CTF
Cracking CTFs The Sysbypass CTF
 
Meeting 9 nfs network file system
Meeting 9   nfs network file systemMeeting 9   nfs network file system
Meeting 9 nfs network file system
 

Dernier

Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 

Dernier (20)

Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.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

Notes de l'éditeur

  1. TFTP uses the services of UDP on the well-known port 69 TP uses the services of UDP on the well-known port 69
  2. Tftp is ftp like service available through UDP on well known port 69.
  3. Tftp is ftp like service available through UDP on well known port 69.