Revision as of 04:52, 18 January 2007 editKhoikhoi (talk | contribs)71,605 editsm Reverted edits by A4bot (talk) to last version by 69.87.199.3← Previous edit | Latest revision as of 20:33, 11 December 2024 edit undoPrikryl (talk | contribs)Extended confirmed users3,697 edits Undid revision 1262461394 by 37.39.146.23 (talk)Tags: Undo Disambiguation links added | ||
Line 1: | Line 1: | ||
{{Short description|Standard protocol for transferring files over TCP/IP networks}} | |||
:''See ] and ] for alternative meanings.'' | |||
{{ |
{{Redirect|FTP}} | ||
{{Use dmy dates|date=August 2016}} | |||
<!-- Edit the stack image at: Template:IPstack --> | |||
{{Infobox networking protocol | |||
'''FTP''' or '''file transfer protocol''' is used to connect two computers over the Internet so that the user of one computer can transfer files and perform file commands on the other computer. | |||
| title = File Transfer Protocol | |||
| purpose = ] | |||
| developer = ] for RFC 114 | |||
| date = {{Start date and age|1971|4|16}} | |||
| osilayer = ] | |||
| ports = 21 for control, 20 for data transfer | |||
| rfcs = RFC 959 | |||
}} | |||
{{IPstack}} | |||
{{Internet history timeline}} | |||
The '''File Transfer Protocol''' ('''FTP''') is a standard ] used for the transfer of ]s from a server to a client on a ]. FTP is built on a client–server model architecture using separate control and data connections between the client and the server.<ref name="for">{{cite book |last=Forouzan |first=B.A. |year=2000 |title=TCP/IP: Protocol Suite |edition=1st |location=New Delhi, India |publisher=Tata McGraw-Hill Publishing Company Limited}}</ref> FTP users may authenticate themselves with a ] sign-in protocol, normally in the form of a username and password, but can connect anonymously if the server is configured to allow it. For secure transmission that protects the username and password, and encrypts the content, FTP is often ] with ] (]) or replaced with ] (SFTP). | |||
Specifically, FTP is a commonly used protocol for exchanging files over any network that supports the ] protocol (such as the ] or an ]). There are two ] involved in an FTP transfer: a ] and a ]. The '''FTP server''', running FTP server software, listens on the network for connection requests from other computers. The client computer, running ], initiates a connection to the server. Once connected, the client can do a number of file manipulation operations such as uploading files to the server, download files from the server, rename or delete files on the server and so on. Any ] company or individual programmer is able to create FTP server or client software because the protocol is an open standard. Virtually every computer platform supports the FTP protocol. This allows any computer connected to a TCP/IP based network to manipulate files on another computer on that network regardless of which ] are involved (if the computers permit FTP access). There are many existing FTP client and server programs. | |||
==Overview== | |||
The first FTP client applications were ] developed before ]s had ]s, and are still shipped with most ], ], and ] operating systems.<ref name="tcpip">{{cite web |last=Kozierok |first=Charles M. |year=2005 |title=The TCP/IP Guide v3.0 |url=http://www.tcpipguide.com/free/t_FTPOverviewHistoryandStandards.htm |publisher=Tcpipguide.com}}</ref><ref name="net+"/> Many dedicated FTP ]s and automation utilities have since been developed for ], servers, mobile devices, and hardware, and FTP has been incorporated into productivity applications such as ]s and ]. | |||
FTP runs exclusively over ]. FTP servers by default listen on ] for incoming connections from FTP clients. A connection to this port from the FTP Client forms the control stream on which commands are passed to the FTP server from the FTP client and on occasion from the FTP server to the FTP client. For the actual file transfer to take place, a different connection is required which is called the data stream. Depending on the transfer mode, the process of setting up the data stream is different. | |||
An FTP client used to be commonly integrated in ]s, where file servers are browsed with the ] prefix "<code>ftp://</code>". In 2021, FTP support was dropped by ] and ],<ref name=":0">{{Cite web|last=Vonau|first=Manuel|date=2021-07-07|title=Firefox follows in Chrome's footsteps and drops FTP support (APK Download)|url=https://www.androidpolice.com/2021/07/14/firefox-90-fully-removes-ftp-support-and-reorganizes-some-settings-apk-download/|access-date=2021-07-12|website=Android Police|language=en-US}}</ref><ref name="chromestatus">{{Cite web|title=Remove FTP support - Chrome Platform Status|url=https://chromestatus.com/feature/6246151319715840|access-date=2021-09-02|website=www.chromestatus.com}}</ref> two major web browser vendors, due to it being superseded by the more secure SFTP and FTPS; although neither of them have implemented the newer protocols.<ref>{{Cite web |last=by |first=Written |date=2020-03-23 |title=Firefox is dropping FTP support |url=https://news.sophos.com/en-us/2020/03/23/firefox-is-dropping-ftp-support/ |access-date=2023-10-13 |website=Sophos News |language=en-US}}</ref><ref>{{Cite web |last=Edwards |first=Benj |date=2022-07-14 |title=Chrome and Firefox Killed FTP Support: Here's an Easy Alternative |url=https://www.howtogeek.com/744569/chrome-and-firefox-killed-ftp-support-heres-an-easy-alternative/ |access-date=2023-10-13 |website=How-To Geek |language=en}}</ref> | |||
In active mode, the FTP client opens a ] (> 1023), sends the FTP server the random port number on which it is listening over the control stream and waits for a connection from the FTP server. When the FTP server initiates the data connection to the FTP client it binds the source port to port 20 on the FTP server. | |||
==History of FTP servers== | |||
In passive mode, the FTP Server opens a random port (> 1023), sends the FTP client the port on which it is listening over the control stream and waits for a connection from the FTP client. In this case the FTP client binds the source port of the connection to a random port greater than 1023. | |||
The original specification for the File Transfer Protocol was written by ] and published as {{IETF RFC|114}} on 16 April 1971. Until 1980, FTP ran on ], the predecessor of ].<ref name="tcpip" /> The protocol was later replaced by a TCP/IP version, {{IETF RFC|765}} (June 1980) and {{IETF RFC|959}} (October 1985), the current specification. Several proposed standards amend {{IETF RFC|959}}, for example {{IETF RFC|1579}} (February 1994) enables Firewall-Friendly FTP (passive mode), {{IETF RFC|2228}} (June 1997) proposes security extensions, {{IETF RFC|2428}} (September 1998) adds support for ] and defines a new type of passive mode.<ref name="clark">{{cite book |last=Clark |first=M.P. |year=2003 |title=Data Networks IP and the Internet |edition=1st |location=West Sussex, England |publisher=John Wiley & Sons Ltd.}}</ref> | |||
==Protocol overview== | |||
While data is being transferred via the ], the control stream sits idle. This can cause problems with large data transfers through ] which time out sessions after lengthy periods of idleness. While the file may well be successfully transferred, the control session can be disconnected by the firewall, causing an error to be generated. | |||
===Communication and data transfer=== | |||
When FTP is used in a UNIX environment, there is an often-ignored but valuable command, "reget" (meaning "get again") that will cause an interrupted "get" command to be continued, hopefully to completion, after a communications interruption. The principle is obvious—the receiving station has a record of what it got, so it can spool through the file at the sending station and re-start at the right place for a seamless splice. The converse would be "reput" but is not available. Again, the principle is obvious: The sending station does not know how much of the file was actually received, so it would not know where to start. | |||
] | |||
FTP may run in ''active'' or ''passive'' mode, which determines how the data connection is established.<ref name="slack">{{cite web |title=Active FTP vs. Passive FTP, a Definitive Explanation |url=http://slacksite.com/other/ftp.html |publisher=Slacksite.com}}</ref> (This sense of "mode" is different from that of the MODE command in the FTP protocol.) | |||
* In active mode, the client starts listening for incoming data connections from the server on port M. It sends the FTP command PORT<ref>{{Cite web |last=Weis |first=Olga |date=2022-10-18 |title=FTP Port: Full Guide about FTP and Port Numbers |url=https://mac.eltima.com/ftp-port.html |access-date=2024-03-29 |website=Comprehensive Mac software apps |language=en-US}}</ref> M to inform the server on which port it is listening. The server then initiates a data channel to the client from its port 20, the FTP server data port. | |||
* In situations where the client is behind a ] and unable to accept incoming TCP connections, ''passive mode'' may be used. In this mode, the client uses the control connection to send a PASV command to the server and then receives a server IP address and server port number from the server,<ref name="slack"/> which the client then uses to open a data connection from an arbitrary client port to the server IP address and server port number received.<ref name="postel">{{IETF RFC|959}} (Standard) File Transfer Protocol (FTP). Postel, J. & Reynolds, J. (October 1985).</ref> | |||
Both modes were updated in September 1998 to support ]. Further changes were introduced to the passive mode at that time, updating it to ''extended passive mode''.<ref>{{IETF RFC|2428}} (Proposed Standard) Extensions for IPv6, NAT, and Extended Passive Mode. Allman, M. & Metz, C. & Ostermann, S. (September 1998).</ref> | |||
The server responds over the control connection with ] in ASCII with an optional text message. For example, "200" (or "200 OK") means that the last command was successful. The numbers represent the code for the response and the optional text represents a human-readable explanation or request (e.g. <Need account for storing file>).<ref name="for" /> An ongoing transfer of file data over the data connection can be aborted using an interrupt message sent over the control connection. | |||
==Objectives of FTP== | |||
The objectives of FTP, as outlined by its ], are: | |||
FTP needs two ports (one for sending and one for receiving) because it was originally designed to operate on top of ] (NCP), which was a ] that utilized two ], establishing two connections, for two-way communications. An odd and an even port were reserved for each ] application or protocol. The standardization of TCP and UDP reduced the need for the use of two simplex ports for each application down to one duplex port,<ref name="stevens1994v1">{{cite book | last = Stevens | first = W. Richard | title = TCP/IP Illustrated Volume I | location = Reading, Massachusetts, USA | publisher= Addison-Wesley Publishing Company | year = 1994 | isbn = 0-201-63346-9 | volume = 1 }}</ref>{{Rp|15}} but the FTP protocol was never altered to only use one port, and continued using two for backwards compatibility. | |||
# To promote sharing of files (computer programs and/or data). | |||
# To encourage indirect or implicit use of ]s. | |||
# To shield a user from variations in file storage systems among different ]s. | |||
# To transfer ] reliably and efficiently. | |||
===NAT and firewall traversal=== | |||
==Criticisms of FTP== | |||
FTP normally transfers data by having the server connect back to the client, after the PORT command is sent by the client. This is problematic for both ] and firewalls, which do not allow connections from the Internet towards internal hosts.<ref name="ncftp">{{cite web |last=Gleason |first=Mike |year=2005 |title=The File Transfer Protocol and Your Firewall/NAT |url=https://www.ncftp.com/ncftpd/doc/misc/ftp_and_firewalls.html |publisher=Ncftp.com}}</ref> For NATs, an additional complication is that the representation of the IP addresses and port number in the PORT command refer to the internal host's IP address and port, rather than the public IP address and port of the NAT. | |||
There are two approaches to solve this problem. One is that the FTP client and FTP server use the PASV command, which causes the data connection to be established from the FTP client to the server.<ref name="ncftp" /> This is widely used by modern FTP clients. Another approach is for the NAT to alter the values of the PORT command, using an ] for this purpose.<ref name="ncftp" /> | |||
# ]s and file contents are sent in ], which can be intercepted by ]. There are protocol enhancements that circumvent this. | |||
] | |||
# Multiple TCP/IP connections are used, one for the control connection, and one for each download, upload, or directory listing. Firewall software needs additional logic to account for these connections. | |||
# It is hard to filter active mode FTP traffic on the client side by using a ], since the client must open an arbitrary ] in order to receive the connection. This problem is largely resolved by using passive mode FTP. | |||
# It is possible to abuse the protocol's built-in proxy features to tell a ] to send data to an arbitrary port of a third computer; see ]. | |||
# FTP is a high latency protocol due to the number of commands needed to initiate a transfer. | |||
# No integrity check on the receiver side. If transfer is interrupted the receiver has no way to know if the received file is complete or not. It is necessary to manage this externally for example with ] sums or ]. | |||
# No error detection. FTP relies on the underlying ] layer for error control, which uses a weak checksum by modern standards. | |||
# No date/timestamp attribute transfer. Uploaded files are given a new current timestamp, unlike other file transfer protocols such as ], which allow attributes to be included. There is no way in the standard FTP protocol to set the time-last-modified (or time-created) datestamp that most modern filesystems preserve. There is a of a proposed extension that adds new commands for this, but as of yet, most of the popular FTP servers do not support it. | |||
== |
===Data types=== | ||
While transferring data over the network, five data types are defined:<ref name="tcpip" /><ref name="net+" /><ref name="clark" /> | |||
The original FTP specification is an inherently insecure method of transferring files because there is no method specified for transferring data in an encrypted fashion. This means that under most network configurations, user names, passwords, FTP commands and transferred files can be "sniffed" or viewed by anyone on the same network using a ]. This is a problem common to many Internet protocol specifications written prior to the creation of ] such as ], ] and ]. The common solution to this problem is to use either ] (SSH File Transfer Protocol), or ] (FTP over ]), which adds SSL or ] ] to FTP as specified in RFC 4217. | |||
* ] (TYPE A): Used for text. Data is converted, if needed, from the sending host's character representation to ] before transmission, and (again, if necessary) to the receiving host's character representation, including ]s. As a consequence, this mode is inappropriate for files that contain data other than ASCII. | |||
* Image (TYPE I, commonly called ] mode): The sending machine sends each file ] by byte, and the recipient stores the ] as it receives it. (Image mode support has been recommended for all implementations of FTP). | |||
* ] (TYPE E): Used for plain text between hosts using the EBCDIC character set. | |||
* Local (TYPE L ''n''): Designed to support file transfer between machines which do not use 8-bit bytes, e.g. ] such as DEC ]s. For example, "TYPE L 9" would be used to transfer data in 9-bit bytes, or "TYPE L 36" to transfer 36-bit words. Most contemporary FTP clients/servers only support L 8, which is equivalent to I. | |||
* ] text files using ] (TYPE U): defined in an expired ]<ref>{{Cite IETF|last=Klensin|first=John|title=FTP TYPE Extension for Internationalized Text|draft=draft-klensin-ftpext-typeu-00|access-date=2020-06-09}}</ref> which never became an RFC, though it has been implemented by several FTP clients/servers. | |||
Note these data types are commonly called "modes", although ambiguously that word is also used to refer to active-vs-passive communication mode (see above), and the modes set by the FTP protocol MODE command (see below). | |||
==FTP return codes== | |||
{{main|List of FTP server return codes}} | |||
For text files (TYPE A and TYPE E), three different format control options are provided, to control how the file would be printed: | |||
FTP server return codes indicate their status by the digits within them. A brief explanation of various digits' meanings are given below: | |||
* Non-print (TYPE A N and TYPE E N) – the file does not contain any carriage control characters intended for a printer | |||
* ] (TYPE A T and TYPE E T) – the file contains Telnet (or in other words, ASCII C0) carriage control characters (CR, LF, etc) | |||
* ] (TYPE A A and TYPE E A) – the file contains ASA carriage control characters | |||
These formats were mainly relevant to ]s; most contemporary FTP clients/servers only support the default format control of N. | |||
===File structures=== | |||
*1yz: Positive Preliminary reply. The action requested is being initiated but there will be another reply before it begins. | |||
File organization is specified using the STRU command. The following file structures are defined in section 3.1.1 of RFC959: | |||
*2yz: Positive Completion reply. The action requested has been completed. The client may now issue a new command. | |||
* '''F''' or FILE structure (stream-oriented). Files are viewed as an arbitrary sequence of bytes, characters or words. This is the usual file structure on Unix systems and other systems such as CP/M, MS-DOS and Microsoft Windows. (Section 3.1.1.1) | |||
*3yz: Positive Intermediate reply. The command was successful, but a further command is required before the server can act upon the request. | |||
* '''R''' or RECORD structure (record-oriented). Files are viewed as divided into records, which may be fixed or variable length. This file organization is common on mainframe and midrange systems, such as MVS, VM/CMS, OS/400 and VMS, which support ]s. | |||
*4yz: Transient Negative Completion reply. The command was not successful, but the client is free to try the command again as the failure is only temporary. | |||
* '''P''' or PAGE structure (page-oriented). Files are divided into pages, which may either contain data or metadata; each page may also have a header giving various attributes. This file structure was specifically designed for ] systems, and is generally not supported on other platforms. RFC1123 section 4.1.2.3 recommends that this structure not be implemented. | |||
*5yz: Permanent Negative Completion reply. The command was not successful and the client should not attempt to repeat it again. | |||
Most contemporary FTP clients and servers only support STRU F. STRU R is still in use in mainframe and minicomputer file transfer applications. | |||
*x0z: The failure was due to a ] error. | |||
*x1z: This response is a reply to a request for information. | |||
*x2z: This response is a reply relating to connection information. | |||
*x3z: This response is a reply relating to accounting and authorization. | |||
*x4z: Unspecified as yet | |||
*x5z: These responses indicate the status of the Server file system vis-a-vis the requested transfer or other file system action | |||
===Data transfer modes=== | |||
==Anonymous FTP== | |||
Data transfer can be done in any of three modes:<ref name="for" /><ref name="tcpip" /> | |||
Many sites that run ]s enable so-called "] ftp". Under this arrangement, users do not need an ] on the server. The user name for anonymous access is typically 'anonymous' or 'ftp'. This account does not need a password. Although users are commonly asked to send their ] addresses as their passwords for authentication, usually there is trivial or no verification, depending on the FTP server and its configuration. ] has been suggested as an alternative to anonymous FTP, as well as ]. | |||
* Stream mode (MODE S): Data is sent as a continuous stream, relieving FTP from doing any processing. Rather, all processing is left up to ]. No End-of-file indicator is needed, unless the data is divided into ]. | |||
* Block mode (MODE B): Designed primarily for transferring record-oriented files (STRU R), although can also be used to transfer stream-oriented (STRU F) text files. FTP puts each record (or line) of data into several blocks (block header, byte count, and data field) and then passes it on to TCP.<ref name="clark" /> | |||
* Compressed mode (MODE C): Extends MODE B with data compression using ]. | |||
Most contemporary FTP clients and servers do not implement MODE B or MODE C; FTP clients and servers for mainframe and minicomputer operating systems are the exception to that. | |||
==Data format== | |||
Some FTP software also implements a ]-based compressed mode, sometimes called "Mode Z" after the command that enables it. This mode was described in an ], but not standardized.<ref>{{cite IETF |title=Deflate transmission mode for FTP |draft=draft-preston-ftpext-deflate-03 |first=J. |last=Preston |date=January 2005 |publisher=] |access-date=27 January 2016}}</ref> | |||
While transferring data over the network, several data representations can be used. The two most common transfer modes are: | |||
] defines additional modes, MODE E<ref>{{Cite web|last=Allcock|first=W.|date=April 2003|title=GridFTP: Protocol Extensions to FTP for the Grid|url=https://ogf.org/documents/GFD.20.pdf}}</ref> and MODE X,<ref>{{Cite web|last=Mandrichenko|first=I.|date=May 4, 2005|title=GridFTP v2 Protocol Description|url=https://ogf.org/documents/GFD.47.pdf}}</ref> as extensions of MODE B. | |||
# ] mode | |||
# ] mode | |||
===Additional commands=== | |||
The two types differ in the way they send the data. When a file is sent using an ASCII-type transfer, the individual letters, numbers, and characters are sent using their ASCII character codes. The receiving machine saves these in a text file in the appropriate format (for example, a Unix machine saves it in a Unix format, a Macintosh saves it in a Mac format). Hence if an ASCII transfer is used it can be assumed ] is sent, which is stored by the receiving computer in its own format. Translating between text formats entails substituting the end of line and end of file characters used on the source platform with those on the destination platform, e.g. a Windows machine receiving a file from a Unix machine will replace the ]s with ]-line feed pairs. ASCII transfer is also marginally faster, as the highest-order bit is dropped from each byte in the file. | |||
More recent implementations of FTP support the ''Modify Fact: Modification Time'' (MFMT) command, which allows a client to adjust that ] remotely, enabling the preservation of that attribute when uploading files.<ref>{{cite web |title=MFMT FTP command |url=https://support.solarwinds.com/SuccessCenter/s/article/MFMT-FTP-command |website=support.solarwinds.com |date=2018-10-11}}</ref><ref>{{cite web |title=FTP Commands: DSIZ, MFCT, MFMT, AVBL, PASS, XPWD, XMKD {{!}} Serv-U |url=https://www.serv-u.com/resources/tutorial/dsiz-mfct-mfmt-avbl-pass-xpwd-xmkd-ftp-command |website=www.serv-u.com |language=en}}</ref> | |||
To retrieve a remote file timestamp, there's ''MDTM'' command. Some servers (and clients) support nonstandard syntax of the ''MDTM'' command with two arguments, that works the same way as ''MFMT''<ref>{{cite web |title=MDTM FTP command |url=https://support.solarwinds.com/SuccessCenter/s/article/MDTM-FTP-command |website=support.solarwinds.com |date=2018-10-11}}</ref> | |||
Sending a file in binary mode is different. The sending machine sends each file ] for bit and as such the recipient stores the bitstream as it receives it. Any form of data that is not plain text will be corrupted if this mode is not used. | |||
==Login== | |||
By default, most FTP clients use ASCII mode. Some clients try to determine the required transfer-mode by inspecting the file's name or contents. | |||
] logging into an FTP server and transferring a file, in 1994]] | |||
FTP login uses normal username and password scheme for granting access.<ref name="tcpip" /> The username is sent to the server using the USER command, and the password is sent using the PASS command.<ref name="tcpip" /> This sequence is unencrypted "on the wire", so may be vulnerable to a network ].<ref>{{cite web|last1=Prince|first1=Brian|title=Should Organizations Retire FTP for Security?|url=https://www.securityweek.com/should-organizations-retire-ftp-security/|website=Security Week|date=24 January 2012 |access-date=14 September 2017}}</ref> If the information provided by the client is accepted by the server, the server will send a greeting to the client and the session will commence.<ref name="tcpip" /> If the server supports it, users may log in without providing login credentials, but the same server may authorize only limited access for such sessions.<ref name="tcpip" /> | |||
===Anonymous FTP=== | |||
The FTP specifications also list the following transfer modes: | |||
A host that provides an FTP service may provide ] FTP access.<ref name="tcpip" /> Users typically log into the service with an 'anonymous' (lower-case and case-sensitive in some FTP servers) account when prompted for user name. Although users are commonly asked to send their ] address instead of a password,<ref name="net+">{{cite book |last=Dean |first=Tamara |title=Network+ Guide to Networks |publisher=Delmar |year=2010 |pages=168–171}}</ref> no verification is actually performed on the supplied data.<ref name="rfc16">{{IETF RFC|1635}} (Informational) How to Use Anonymous FTP. P. & Emtage, A. & Marine, A. (May 1994).</ref> Many FTP hosts whose purpose is to provide software updates will allow anonymous logins.<ref name="net+" /> | |||
==Software support== | |||
# ] mode | |||
] client running on Windows, one of the best known FTP client software]] | |||
# Local mode | |||
=== File managers === | |||
In practice, these additional transfer modes are rarely used. They are however still used by some ] ] systems. | |||
Many file managers tend to have FTP access implemented, such as ] (formerly Windows Explorer) on ]. This client is only recommended for small file transfers from a server, due to limitations compared to dedicated client software.<ref></ref> It does not support ].<ref>{{Cite web |title=CSC373/406: SSH |url=https://fpl.cs.depaul.edu/jriely/373/lectures/class-01-014.html |access-date=2023-10-13 |website=fpl.cs.depaul.edu}}</ref> | |||
Both the native file managers for ] on Linux (] and ]) support FTP as well as SFTP.<ref>{{Cite web |title=FTP |url=https://docs.kde.org/stable5/en/konqueror/konqueror/ftp.html |access-date=2023-10-13 |website=docs.kde.org}}</ref><ref>{{Cite web |last=Cohen |first=Brent |date=2023-07-26 |title=How To Connect to FTP/SFTP in Dolphin {{!}} DeviceTests |url=https://devicetests.com/connect-ftp-sftp-dolphin |access-date=2023-10-13 |language=en-US}}</ref> | |||
==FTP and web browsers== | |||
] | |||
On ], the My Files file manager on ] has a built-in FTP and ] client.<ref>{{Cite web |last=Staff |first=Moyens |date=2022-02-28 |title=Samsung My Files vs Google Files: Which File Manager is Better on Galaxy Phones |url=https://uk.moyens.net/android/samsung-my-files-vs-google-files-which-file-manager-is-better-on-galaxy-phones/ |access-date=2023-10-13 |website=Moyens I/O |language=en-GB}}</ref> | |||
===Web browser=== | |||
Most recent ]s and ]s can connect to FTP servers, although they may lack the support for protocol extensions such as ]. This allows manipulation of remote files over FTP through an interface similar to that used for local files. This is done via an FTP ], which takes the form ftp(s)<tt>://</tt><''ftpserveraddress''> (e.g., ). A password can optionally be given in the URL, e.g.: ftp(s)<tt>://</tt><''login''><tt>:</tt><''password''><tt>@</tt><''ftpserveraddress''>:<''port''>. Most web-browsers require the use of passive mode FTP, which not all FTP servers are capable of handling. Some browsers allow only the downloading of files, but offer no way to upload files to the server. | |||
For a long time, most common ]s were able to retrieve files hosted on FTP servers, although not all of them had support for protocol extensions such as ].<ref name="net+" /><ref name="matthews">{{cite book |last=Matthews |first=J. |year=2005 |title=Computer Networking: Internet Protocols in Action |edition=1st |location=Danvers, MA |publisher=John Wiley & Sons Inc.}}</ref> When an FTP—rather than an HTTP—] is supplied, the accessible contents on the remote server are presented in a manner that is similar to that used for other web content. | |||
Google Chrome removed FTP support entirely in Chrome 88, also affecting other ]-based browsers such as ].<ref>{{cite web|url=https://www.omgubuntu.co.uk/2021/01/linux-release-roundup-chrome-lightworks-more|date=2021-01-26|access-date=2021-01-30|website=omgubuntu.co.uk|title=Linux Release Roundup: GParted, Lightworks, Google Chrome + More|first1=Joey|last1=Sneddon}}</ref> Firefox 88 disabled FTP support by default, with Firefox 90 dropping support entirely.<ref>{{cite web|date=2021-04-19|title=See what's new in Firefox: 88.0 Firefox Release|url=https://www.mozilla.org/en-US/firefox/88.0/releasenotes/|access-date=2021-04-20|website=mozilla.org}}</ref><ref name=":0" /> | |||
==FTP over SSH== | |||
] is a discontinued browser extension that was designed as a full-featured FTP client to be run within ], but when Firefox dropped support for FTP the extension developer recommended using ].<ref>{{Cite web |title=FireFTP - The Free FTP Client for Waterfox |url=https://fireftp.net/ |url-status=dead |archive-url=https://web.archive.org/web/20220301212656/https://fireftp.net/ |archive-date=2022-03-01 |website=FireFTP.net}}</ref> Some browsers, such as the text-based ], still support FTP.<ref>{{Cite web |title=URL Schemes Supported in Lynx |url=https://lynx.invisible-island.net/lynx_help/lynx_url_support.html |access-date=2023-07-06 |website=Lynx website}}</ref> | |||
''FTP over SSH'' refers to the practice of tunneling a normal FTP session over an ] connection. | |||
====Syntax==== | |||
Because FTP uses multiple ] connections (unusual for a TCP/IP protocol that is still in use), it is particularly difficult to tunnel over SSH. With many SSH clients, attempting to set up a tunnel for the ''control channel'' (the initial client-to-server connection on port 21) will only protect that channel; when data is transferred, the FTP software at either end will set up new TCP connections (''data channels'') which will bypass the SSH connection, and thus have no ], ], etc. | |||
FTP URL syntax is described in {{IETF RFC|1738}}, taking the form: <code>ftp://@]host/</code> (the bracketed parts are optional). | |||
For example, the URL <nowiki>ftp://public.ftp-servers.example.com/mydirectory/myfile.txt</nowiki> represents the file ''myfile.txt'' from the directory ''mydirectory'' on the server ''public.ftp-servers.example.com'' as an FTP resource. The URL <nowiki>ftp://user001:secretpassword@private.ftp-servers.example.com/mydirectory/myfile.txt</nowiki> adds a specification of the username and password that must be used to access this resource. | |||
If the FTP client is configured to use ''passive mode'' and to connect to a ] server interface that many SSH clients can present for tunnelling, it is possible to run all the FTP channels over the SSH connection. | |||
More details on specifying a username and password may be found in the browsers' documentation (e.g., ]<ref>{{cite web |url=https://support.mozilla.org/en-US/kb/Accessing%20FTP%20servers#w_ftp-servers-that-require-a-username-and-password |title=Accessing FTP servers | How to | Firefox Help |publisher=Support.mozilla.com |date=2012-09-05 |access-date=2013-01-16}}</ref> and ]<ref>{{Cite web |url=https://support.microsoft.com/en-us/kb/135975 |title=How to Enter FTP Site Password in Internet Explorer |access-date=13 February 2020 |archive-date=2 July 2015 |archive-url=https://web.archive.org/web/20150702005840/https://support.microsoft.com/en-us/kb/135975 |url-status=dead }} Written for IE versions 6 and earlier. Might work with newer versions.</ref>). By default, most web browsers use passive (PASV) mode, which more easily traverses end-user firewalls. | |||
Otherwise, it is necessary for the SSH client software to have specific knowledge of the FTP protocol, and monitor and rewrite FTP control channel messages and autonomously open new forwardings for FTP data channels. Version 3 of ]'s software suite, and the ] licensed are two software packages that support this mode. | |||
Some variation has existed in how different browsers treat path resolution in cases where there is a non-root home directory for a user.<ref>{{cite web |url=https://jkorpela.fi/ftpurl.html |title=FTP URLs |author=Jukka “Yucca” Korpela |publisher="IT and communication" (jkorpela.fi) |date=1997-09-18 |access-date=2020-01-26}}</ref> | |||
FTP over SSH is sometimes referred to as '''secure FTP'''; this should not be confused with other methods of securing FTP, such as with SSL/TLS (]). Other methods of transferring files using SSH that are not related to FTP include ] and ]; in each of these, the entire conversation (credentials and data) is always protected by the SSH protocol. | |||
===Download manager=== | |||
==References== | |||
Most common ]s can receive files hosted on FTP servers, while some of them also give the interface to retrieve the files hosted on FTP servers. ] allows not only download a file from FTP server but also view the list of files on a FTP server.<ref>{{cite web |url=http://www.conceiva.com/products/downloadstudio/features.asp |title=DownloadStudio - Internet Download Manager And Download Accelerator - Features |author= |publisher=Conceiva |date= |access-date=2021-10-19}}</ref> | |||
===Other=== | |||
The protocol is ] in ] 0959 by the ] as: | |||
] declared its FTP support deprecated from 7.4 release, this was later removed in 24.2 release.<ref>{{Cite web |url=https://wiki.documentfoundation.org/ReleaseNotes/7.4 |title=LibreOffice 7.4: Release Notes |publisher=The Document Foundation's Wiki |accessdate=2022-09-10 }}</ref><ref>{{Cite web |url=https://wiki.documentfoundation.org/ReleaseNotes/24.2 |title=ReleaseNotes/24.2 |publisher=The Document Foundation's Wiki |accessdate=2024-03-24 }}</ref> | |||
==Security== | |||
* RFC 959 File Transfer Protocol (FTP). J. Postel, J. Reynolds. Oct-1985. This obsoleted the preceding RFC 765 and earlier FTP RFCs back to the original RFC 114. | |||
FTP was not designed to be a secure protocol, and has many security weaknesses.<ref name="nurdle">{{cite web |title=Securing FTP using SSH |url=https://nurdletech.com/linux-notes/ftp/ssh.html |publisher=Nurdletech.com}}</ref> In May 1999, the authors of {{IETF RFC|2577}} listed a vulnerability to the following problems: | |||
* See also RFC 1579 Firewall-Friendly FTP. | |||
* ] | |||
* ] | |||
* ] | |||
* Port stealing (guessing the next open port and usurping a legitimate connection) | |||
* ] | |||
* Username enumeration | |||
* ] | |||
FTP does not encrypt its traffic; all transmissions are in clear text, and usernames, passwords, commands and data can be read by anyone able to perform packet capture (]) on the network.<ref name="tcpip" /><ref name="nurdle" /> This problem is common to many of the Internet Protocol specifications (such as ], ], ] and ]) that were designed prior to the creation of encryption mechanisms such as ] or SSL.<ref name="clark" /> | |||
Common solutions to this problem include: | |||
# Using the secure versions of the insecure protocols, e.g., ] instead of FTP and TelnetS instead of Telnet. | |||
# Using a different, more secure protocol that can handle the job, e.g. ] or ]. | |||
# Using a secure tunnel such as ] (SSH) or ] (VPN). | |||
===FTP over SSH=== <!-- This section is linked from ] --> | |||
FTP over SSH is the practice of tunneling a normal FTP session over a Secure Shell connection.<ref name="nurdle"/> Because FTP uses multiple ] connections (unusual for a TCP/IP protocol that is still in use), it is particularly difficult to tunnel over SSH. With many SSH clients, attempting to set up a tunnel for the control channel (the initial client-to-server connection on port 21) will protect only that channel; when data is transferred, the FTP software at either end sets up new TCP connections (data channels) and thus have no ] or ]. | |||
Otherwise, it is necessary for the SSH client software to have specific knowledge of the FTP protocol, to monitor and rewrite FTP control channel messages and autonomously open new ]s for FTP data channels. Software packages that support this mode include: | |||
* Tectia ConnectSecure (Win/Linux/Unix)<ref>{{cite web|url=https://www.ssh.com/manuals/mft-events-product/63/ssh-solutions-your-business-components.html|title=Components of the Information Assurance Platform (section Tectia ConnectSecure)|website=ssh.com|archive-url=https://web.archive.org/web/20200731160323/https://www.ssh.com/manuals/mft-events-product/63/ssh-solutions-your-business-components.html|archive-date=2020-07-31}}</ref> of ]'s software suite | |||
FTP over SSH should not be confused with ] (SFTP). | |||
==Derivatives== | |||
===FTPS=== | |||
{{Main article|FTPS}} | |||
Explicit FTPS is an extension to the FTP standard that allows clients to request FTP sessions to be encrypted. This is done by sending the "AUTH TLS" command. The server has the option of allowing or denying connections that do not request TLS. This protocol extension is defined in {{IETF RFC|4217}}. Implicit FTPS is an outdated standard for FTP that required the use of a SSL or TLS connection. It was specified to use different ports than plain FTP. | |||
===SSH File Transfer Protocol=== | |||
{{Main article|SSH File Transfer Protocol}} | |||
The SSH file transfer protocol (chronologically the second of the two protocols abbreviated SFTP) transfers files and has a similar command set for users, but uses the ] protocol (SSH) to transfer files. Unlike FTP, it encrypts both commands and data, preventing passwords and sensitive information from being transmitted openly over the network. It cannot interoperate with FTP software, though some FTP client software offers support for the SSH file transfer protocol as well. | |||
===Trivial File Transfer Protocol === | |||
{{Main article|Trivial File Transfer Protocol}} | |||
Trivial File Transfer Protocol (TFTP) is a simple, lock-step FTP that allows a client to get a file from or put a file onto a remote host. One of its primary uses is in the early stages of ], because TFTP is very simple to implement. TFTP lacks security and most of the advanced features offered by more robust file transfer protocols such as File Transfer Protocol. TFTP was first standardized in 1981 and the current specification for the protocol can be found in {{IETF RFC|1350}}. | |||
===Simple File Transfer Protocol=== | |||
<!--Simple File Transfer Protocol redirects here--> | |||
Simple File Transfer Protocol (the first protocol abbreviated SFTP), as defined by {{IETF RFC|913}}, was proposed as an (unsecured) file transfer protocol with a level of complexity intermediate between TFTP and FTP. It was never widely accepted on the ], and is now assigned Historic status by the ]. It runs through port 115, and often receives the initialism of ''SFTP''. It has a command set of 11 commands and support three types of data transmission: ], ] and continuous. For systems with a ] that is a multiple of 8 bits, the implementation of binary and continuous is the same. The protocol also supports login with user ID and password, hierarchical folders and file management (including ''rename'', ''delete'', ''upload'', ''download'', ''download with overwrite'', and ''download with append''). | |||
==FTP commands== | |||
{{Main article|List of FTP commands}} | |||
==FTP reply codes== | |||
{{main article|List of FTP server return codes}} | |||
Below is a summary of ] that may be returned by an FTP ]. These codes have been standardized in {{IETF RFC|959}} by the IETF. The reply code is a three-digit value. The first digit is used to indicate one of three possible outcomes — success, failure, or to indicate an error or incomplete reply: | |||
* 2yz – Success reply | |||
* 4yz or 5yz – Failure reply | |||
* 1yz or 3yz – Error or Incomplete reply | |||
The second digit defines the kind of error: | |||
* x0z – Syntax. These replies refer to syntax errors. | |||
* x1z – Information. Replies to requests for information. | |||
* x2z – Connections. Replies referring to the control and data connections. | |||
* x3z – Authentication and accounting. Replies for the login process and accounting procedures. | |||
* x4z – Not defined. | |||
* x5z – File system. These replies relay status codes from the server file system. | |||
The third digit of the reply code is used to provide additional detail for each of the categories defined by the second digit. | |||
==See also== | ==See also== | ||
{{columns-list|colwidth=20em| | |||
* ] | |||
* ] | |||
* ] | |||
* ] | |||
* ] – FTP/S loading/testing open-source software | |||
* ] | |||
* ] (FXP) | |||
* ] (FSP) | |||
* ] | * ] | ||
* ] | * ] | ||
* ] | |||
* ] | |||
* ] | * ] | ||
* ] | |||
* ] | |||
* ] | * ] | ||
* ] | * ] | ||
* ] | * ] | ||
}} | |||
==References== | |||
===FTP-like protocols=== | |||
{{Reflist}} | |||
* ] (FTP/SSL), FTP run over SSL | |||
* ] (SCP), a protocol running over ] | |||
* ] (SFTP), the historic protocol RFC 913 | |||
* ] (SFTP, SH-FTP, FTP/SSH), a protocol running over ] | |||
* ] (TFTP) | |||
== |
==Further reading== | ||
* {{IETF RFC|697}} – CWD Command of FTP. July 1975. | |||
* {{IETF RFC|959}} – (Standard) File Transfer Protocol (FTP). J. Postel, J. Reynolds. October 1985. | |||
* {{IETF RFC|1579}} – (Informational) Firewall-Friendly FTP. February 1994. | |||
* {{IETF RFC|1635}} – (Informational) How to Use Anonymous FTP. May 1994. | |||
* {{IETF RFC|1639}} – FTP Operation Over Big Address Records (FOOBAR). June 1994. | |||
* {{IETF RFC|1738}} – Uniform Resource Locators (URL). December 1994. | |||
* {{IETF RFC|2228}} – (Proposed Standard) FTP Security Extensions. October 1997. | |||
* {{IETF RFC|2389}} – (Proposed Standard) Feature negotiation mechanism for the File Transfer Protocol. August 1998. | |||
* {{IETF RFC|2428}} – (Proposed Standard) Extensions for IPv6, NAT, and Extended passive mode. September 1998. | |||
* {{IETF RFC|2577}} – (Informational) FTP Security Considerations. May 1999. | |||
* {{IETF RFC|2640}} – (Proposed Standard) Internationalization of the File Transfer Protocol. July 1999. | |||
* {{IETF RFC|3659}} – (Proposed Standard) Extensions to FTP. P. Hethmon. March 2007. | |||
* {{IETF RFC|5797}} – (Proposed Standard) FTP Command and Extension Registry. March 2010. | |||
* {{IETF RFC|7151}} – (Proposed Standard) File Transfer Protocol HOST Command for Virtual Hosts. March 2014. | |||
* – The official registry of FTP Commands and Extensions | |||
== External links == | |||
* ] | |||
* {{Wikibooks-inline|Communication Networks/File Transfer Protocol}} | |||
* ] | |||
* Authentication, encryption, mode and connectivity. | |||
* ] SSH-FTP tool | |||
* Anonymous FTP Servers by Country Code ] (2012): {{Cite web|url=https://www.jumpjet.info/Offbeat-Internet/Public/FTP/url.htm|title=Offbeat Internet - Public Access - FTP|website=www.jumpjet.info|access-date=2020-01-16|date=2012|archive-url=https://web.archive.org/web/20230328113445/https://www.jumpjet.info/Offbeat-Internet/Public/FTP/url.htm|archive-date=2023-03-28|url-status=dead}} | |||
* | |||
==External links== | |||
* RFC 959 — File Transfer Protocol (FTP). J. Postel, J. Reynolds. Oct-1985. | |||
* RFC 1579 — Firewall-Friendly FTP | |||
* RFC 2228 — FTP Security Extensions | |||
* — a review of the protocol notably from a security standpoint | |||
* | |||
* (in ] format) | |||
===Tutorial/overview=== | |||
* Useful introduction. | |||
* — explains how the FTP works at the protocol level | |||
* - Creation and Configuration of a Website. | |||
* | |||
* | |||
* — details FTP's problems with firewalls and how to deal with them | |||
{{URI scheme}} | |||
{{Authority control}} | |||
] | |||
] | |||
] | ] | ||
] | |||
] | |||
] | |||
] | ] | ||
] | ] | ||
] | ] | ||
] | ] | ||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] | |||
] |
Latest revision as of 20:33, 11 December 2024
Standard protocol for transferring files over TCP/IP networks "FTP" redirects here. For other uses, see FTP (disambiguation).
Communication protocol | |
Purpose | File transfer |
---|---|
Developer(s) | Abhay Bhushan for RFC 114 |
Introduction | April 16, 1971; 53 years ago (1971-04-16) |
OSI layer | Application layer |
Port(s) | 21 for control, 20 for data transfer |
RFC(s) | RFC 959 |
Internet protocol suite |
---|
Application layer |
Transport layer |
Internet layer |
Link layer |
Internet history timeline |
Early research and development:
Merging the networks and creating the Internet:
Commercialization, privatization, broader access leads to the modern Internet:
Examples of Internet services:
|
The File Transfer Protocol (FTP) is a standard communication protocol used for the transfer of computer files from a server to a client on a computer network. FTP is built on a client–server model architecture using separate control and data connections between the client and the server. FTP users may authenticate themselves with a plain-text sign-in protocol, normally in the form of a username and password, but can connect anonymously if the server is configured to allow it. For secure transmission that protects the username and password, and encrypts the content, FTP is often secured with SSL/TLS (FTPS) or replaced with SSH File Transfer Protocol (SFTP).
The first FTP client applications were command-line programs developed before operating systems had graphical user interfaces, and are still shipped with most Windows, Unix, and Linux operating systems. Many dedicated FTP clients and automation utilities have since been developed for desktops, servers, mobile devices, and hardware, and FTP has been incorporated into productivity applications such as HTML editors and file managers.
An FTP client used to be commonly integrated in web browsers, where file servers are browsed with the URI prefix "ftp://
". In 2021, FTP support was dropped by Google Chrome and Firefox, two major web browser vendors, due to it being superseded by the more secure SFTP and FTPS; although neither of them have implemented the newer protocols.
History of FTP servers
The original specification for the File Transfer Protocol was written by Abhay Bhushan and published as RFC 114 on 16 April 1971. Until 1980, FTP ran on NCP, the predecessor of TCP/IP. The protocol was later replaced by a TCP/IP version, RFC 765 (June 1980) and RFC 959 (October 1985), the current specification. Several proposed standards amend RFC 959, for example RFC 1579 (February 1994) enables Firewall-Friendly FTP (passive mode), RFC 2228 (June 1997) proposes security extensions, RFC 2428 (September 1998) adds support for IPv6 and defines a new type of passive mode.
Protocol overview
Communication and data transfer
FTP may run in active or passive mode, which determines how the data connection is established. (This sense of "mode" is different from that of the MODE command in the FTP protocol.)
- In active mode, the client starts listening for incoming data connections from the server on port M. It sends the FTP command PORT M to inform the server on which port it is listening. The server then initiates a data channel to the client from its port 20, the FTP server data port.
- In situations where the client is behind a firewall and unable to accept incoming TCP connections, passive mode may be used. In this mode, the client uses the control connection to send a PASV command to the server and then receives a server IP address and server port number from the server, which the client then uses to open a data connection from an arbitrary client port to the server IP address and server port number received.
Both modes were updated in September 1998 to support IPv6. Further changes were introduced to the passive mode at that time, updating it to extended passive mode.
The server responds over the control connection with three-digit status codes in ASCII with an optional text message. For example, "200" (or "200 OK") means that the last command was successful. The numbers represent the code for the response and the optional text represents a human-readable explanation or request (e.g. <Need account for storing file>). An ongoing transfer of file data over the data connection can be aborted using an interrupt message sent over the control connection.
FTP needs two ports (one for sending and one for receiving) because it was originally designed to operate on top of Network Control Protocol (NCP), which was a simplex protocol that utilized two port addresses, establishing two connections, for two-way communications. An odd and an even port were reserved for each application layer application or protocol. The standardization of TCP and UDP reduced the need for the use of two simplex ports for each application down to one duplex port, but the FTP protocol was never altered to only use one port, and continued using two for backwards compatibility.
NAT and firewall traversal
FTP normally transfers data by having the server connect back to the client, after the PORT command is sent by the client. This is problematic for both NATs and firewalls, which do not allow connections from the Internet towards internal hosts. For NATs, an additional complication is that the representation of the IP addresses and port number in the PORT command refer to the internal host's IP address and port, rather than the public IP address and port of the NAT.
There are two approaches to solve this problem. One is that the FTP client and FTP server use the PASV command, which causes the data connection to be established from the FTP client to the server. This is widely used by modern FTP clients. Another approach is for the NAT to alter the values of the PORT command, using an application-level gateway for this purpose.
Data types
While transferring data over the network, five data types are defined:
- ASCII (TYPE A): Used for text. Data is converted, if needed, from the sending host's character representation to "8-bit ASCII" before transmission, and (again, if necessary) to the receiving host's character representation, including newlines. As a consequence, this mode is inappropriate for files that contain data other than ASCII.
- Image (TYPE I, commonly called Binary mode): The sending machine sends each file byte by byte, and the recipient stores the bytestream as it receives it. (Image mode support has been recommended for all implementations of FTP).
- EBCDIC (TYPE E): Used for plain text between hosts using the EBCDIC character set.
- Local (TYPE L n): Designed to support file transfer between machines which do not use 8-bit bytes, e.g. 36-bit systems such as DEC PDP-10s. For example, "TYPE L 9" would be used to transfer data in 9-bit bytes, or "TYPE L 36" to transfer 36-bit words. Most contemporary FTP clients/servers only support L 8, which is equivalent to I.
- Unicode text files using UTF-8 (TYPE U): defined in an expired Internet Draft which never became an RFC, though it has been implemented by several FTP clients/servers.
Note these data types are commonly called "modes", although ambiguously that word is also used to refer to active-vs-passive communication mode (see above), and the modes set by the FTP protocol MODE command (see below).
For text files (TYPE A and TYPE E), three different format control options are provided, to control how the file would be printed:
- Non-print (TYPE A N and TYPE E N) – the file does not contain any carriage control characters intended for a printer
- Telnet (TYPE A T and TYPE E T) – the file contains Telnet (or in other words, ASCII C0) carriage control characters (CR, LF, etc)
- ASA (TYPE A A and TYPE E A) – the file contains ASA carriage control characters
These formats were mainly relevant to line printers; most contemporary FTP clients/servers only support the default format control of N.
File structures
File organization is specified using the STRU command. The following file structures are defined in section 3.1.1 of RFC959:
- F or FILE structure (stream-oriented). Files are viewed as an arbitrary sequence of bytes, characters or words. This is the usual file structure on Unix systems and other systems such as CP/M, MS-DOS and Microsoft Windows. (Section 3.1.1.1)
- R or RECORD structure (record-oriented). Files are viewed as divided into records, which may be fixed or variable length. This file organization is common on mainframe and midrange systems, such as MVS, VM/CMS, OS/400 and VMS, which support record-oriented filesystems.
- P or PAGE structure (page-oriented). Files are divided into pages, which may either contain data or metadata; each page may also have a header giving various attributes. This file structure was specifically designed for TENEX systems, and is generally not supported on other platforms. RFC1123 section 4.1.2.3 recommends that this structure not be implemented.
Most contemporary FTP clients and servers only support STRU F. STRU R is still in use in mainframe and minicomputer file transfer applications.
Data transfer modes
Data transfer can be done in any of three modes:
- Stream mode (MODE S): Data is sent as a continuous stream, relieving FTP from doing any processing. Rather, all processing is left up to TCP. No End-of-file indicator is needed, unless the data is divided into records.
- Block mode (MODE B): Designed primarily for transferring record-oriented files (STRU R), although can also be used to transfer stream-oriented (STRU F) text files. FTP puts each record (or line) of data into several blocks (block header, byte count, and data field) and then passes it on to TCP.
- Compressed mode (MODE C): Extends MODE B with data compression using run-length encoding.
Most contemporary FTP clients and servers do not implement MODE B or MODE C; FTP clients and servers for mainframe and minicomputer operating systems are the exception to that.
Some FTP software also implements a DEFLATE-based compressed mode, sometimes called "Mode Z" after the command that enables it. This mode was described in an Internet Draft, but not standardized.
GridFTP defines additional modes, MODE E and MODE X, as extensions of MODE B.
Additional commands
More recent implementations of FTP support the Modify Fact: Modification Time (MFMT) command, which allows a client to adjust that file attribute remotely, enabling the preservation of that attribute when uploading files.
To retrieve a remote file timestamp, there's MDTM command. Some servers (and clients) support nonstandard syntax of the MDTM command with two arguments, that works the same way as MFMT
Login
FTP login uses normal username and password scheme for granting access. The username is sent to the server using the USER command, and the password is sent using the PASS command. This sequence is unencrypted "on the wire", so may be vulnerable to a network sniffing attack. If the information provided by the client is accepted by the server, the server will send a greeting to the client and the session will commence. If the server supports it, users may log in without providing login credentials, but the same server may authorize only limited access for such sessions.
Anonymous FTP
A host that provides an FTP service may provide anonymous FTP access. Users typically log into the service with an 'anonymous' (lower-case and case-sensitive in some FTP servers) account when prompted for user name. Although users are commonly asked to send their email address instead of a password, no verification is actually performed on the supplied data. Many FTP hosts whose purpose is to provide software updates will allow anonymous logins.
Software support
File managers
Many file managers tend to have FTP access implemented, such as File Explorer (formerly Windows Explorer) on Microsoft Windows. This client is only recommended for small file transfers from a server, due to limitations compared to dedicated client software. It does not support SFTP.
Both the native file managers for KDE on Linux (Dolphin and Konqueror) support FTP as well as SFTP.
On Android, the My Files file manager on Samsung Galaxy has a built-in FTP and SFTP client.
Web browser
For a long time, most common web browsers were able to retrieve files hosted on FTP servers, although not all of them had support for protocol extensions such as FTPS. When an FTP—rather than an HTTP—URL is supplied, the accessible contents on the remote server are presented in a manner that is similar to that used for other web content.
Google Chrome removed FTP support entirely in Chrome 88, also affecting other Chromium-based browsers such as Microsoft Edge. Firefox 88 disabled FTP support by default, with Firefox 90 dropping support entirely.
FireFTP is a discontinued browser extension that was designed as a full-featured FTP client to be run within Firefox, but when Firefox dropped support for FTP the extension developer recommended using Waterfox. Some browsers, such as the text-based Lynx, still support FTP.
Syntax
FTP URL syntax is described in RFC 1738, taking the form: ftp://@]host/
(the bracketed parts are optional).
For example, the URL ftp://public.ftp-servers.example.com/mydirectory/myfile.txt represents the file myfile.txt from the directory mydirectory on the server public.ftp-servers.example.com as an FTP resource. The URL ftp://user001:secretpassword@private.ftp-servers.example.com/mydirectory/myfile.txt adds a specification of the username and password that must be used to access this resource.
More details on specifying a username and password may be found in the browsers' documentation (e.g., Firefox and Internet Explorer). By default, most web browsers use passive (PASV) mode, which more easily traverses end-user firewalls.
Some variation has existed in how different browsers treat path resolution in cases where there is a non-root home directory for a user.
Download manager
Most common download managers can receive files hosted on FTP servers, while some of them also give the interface to retrieve the files hosted on FTP servers. DownloadStudio allows not only download a file from FTP server but also view the list of files on a FTP server.
Other
LibreOffice declared its FTP support deprecated from 7.4 release, this was later removed in 24.2 release.
Security
FTP was not designed to be a secure protocol, and has many security weaknesses. In May 1999, the authors of RFC 2577 listed a vulnerability to the following problems:
- Brute-force attack
- FTP bounce attack
- Packet capture
- Port stealing (guessing the next open port and usurping a legitimate connection)
- Spoofing attack
- Username enumeration
- DoS or DDoS
FTP does not encrypt its traffic; all transmissions are in clear text, and usernames, passwords, commands and data can be read by anyone able to perform packet capture (sniffing) on the network. This problem is common to many of the Internet Protocol specifications (such as SMTP, Telnet, POP and IMAP) that were designed prior to the creation of encryption mechanisms such as TLS or SSL.
Common solutions to this problem include:
- Using the secure versions of the insecure protocols, e.g., FTPS instead of FTP and TelnetS instead of Telnet.
- Using a different, more secure protocol that can handle the job, e.g. SSH File Transfer Protocol or Secure Copy Protocol.
- Using a secure tunnel such as Secure Shell (SSH) or virtual private network (VPN).
FTP over SSH
FTP over SSH is the practice of tunneling a normal FTP session over a Secure Shell connection. Because FTP uses multiple TCP connections (unusual for a TCP/IP protocol that is still in use), it is particularly difficult to tunnel over SSH. With many SSH clients, attempting to set up a tunnel for the control channel (the initial client-to-server connection on port 21) will protect only that channel; when data is transferred, the FTP software at either end sets up new TCP connections (data channels) and thus have no confidentiality or integrity protection.
Otherwise, it is necessary for the SSH client software to have specific knowledge of the FTP protocol, to monitor and rewrite FTP control channel messages and autonomously open new packet forwardings for FTP data channels. Software packages that support this mode include:
- Tectia ConnectSecure (Win/Linux/Unix) of SSH Communications Security's software suite
FTP over SSH should not be confused with SSH File Transfer Protocol (SFTP).
Derivatives
FTPS
Main article: FTPSExplicit FTPS is an extension to the FTP standard that allows clients to request FTP sessions to be encrypted. This is done by sending the "AUTH TLS" command. The server has the option of allowing or denying connections that do not request TLS. This protocol extension is defined in RFC 4217. Implicit FTPS is an outdated standard for FTP that required the use of a SSL or TLS connection. It was specified to use different ports than plain FTP.
SSH File Transfer Protocol
Main article: SSH File Transfer ProtocolThe SSH file transfer protocol (chronologically the second of the two protocols abbreviated SFTP) transfers files and has a similar command set for users, but uses the Secure Shell protocol (SSH) to transfer files. Unlike FTP, it encrypts both commands and data, preventing passwords and sensitive information from being transmitted openly over the network. It cannot interoperate with FTP software, though some FTP client software offers support for the SSH file transfer protocol as well.
Trivial File Transfer Protocol
Main article: Trivial File Transfer ProtocolTrivial File Transfer Protocol (TFTP) is a simple, lock-step FTP that allows a client to get a file from or put a file onto a remote host. One of its primary uses is in the early stages of booting from a local area network, because TFTP is very simple to implement. TFTP lacks security and most of the advanced features offered by more robust file transfer protocols such as File Transfer Protocol. TFTP was first standardized in 1981 and the current specification for the protocol can be found in RFC 1350.
Simple File Transfer Protocol
Simple File Transfer Protocol (the first protocol abbreviated SFTP), as defined by RFC 913, was proposed as an (unsecured) file transfer protocol with a level of complexity intermediate between TFTP and FTP. It was never widely accepted on the Internet, and is now assigned Historic status by the IETF. It runs through port 115, and often receives the initialism of SFTP. It has a command set of 11 commands and support three types of data transmission: ASCII, binary and continuous. For systems with a word size that is a multiple of 8 bits, the implementation of binary and continuous is the same. The protocol also supports login with user ID and password, hierarchical folders and file management (including rename, delete, upload, download, download with overwrite, and download with append).
FTP commands
Main article: List of FTP commandsFTP reply codes
Main article: List of FTP server return codesBelow is a summary of FTP reply codes that may be returned by an FTP server. These codes have been standardized in RFC 959 by the IETF. The reply code is a three-digit value. The first digit is used to indicate one of three possible outcomes — success, failure, or to indicate an error or incomplete reply:
- 2yz – Success reply
- 4yz or 5yz – Failure reply
- 1yz or 3yz – Error or Incomplete reply
The second digit defines the kind of error:
- x0z – Syntax. These replies refer to syntax errors.
- x1z – Information. Replies to requests for information.
- x2z – Connections. Replies referring to the control and data connections.
- x3z – Authentication and accounting. Replies for the login process and accounting procedures.
- x4z – Not defined.
- x5z – File system. These replies relay status codes from the server file system.
The third digit of the reply code is used to provide additional detail for each of the categories defined by the second digit.
See also
- Comparison of FTP client software
- Comparison of FTP server software packages
- Comparison of file transfer protocols
- Curl-loader – FTP/S loading/testing open-source software
- DTXT
- File eXchange Protocol (FXP)
- File Service Protocol (FSP)
- FTAM
- FTPFS
- List of FTP commands
- List of FTP server return codes
- Managed File Transfer
- OBEX
- Shared file access
- TCP Wrapper
References
- ^ Forouzan, B.A. (2000). TCP/IP: Protocol Suite (1st ed.). New Delhi, India: Tata McGraw-Hill Publishing Company Limited.
- ^ Kozierok, Charles M. (2005). "The TCP/IP Guide v3.0". Tcpipguide.com.
- ^ Dean, Tamara (2010). Network+ Guide to Networks. Delmar. pp. 168–171.
- ^ Vonau, Manuel (7 July 2021). "Firefox follows in Chrome's footsteps and drops FTP support (APK Download)". Android Police. Retrieved 12 July 2021.
- "Remove FTP support - Chrome Platform Status". www.chromestatus.com. Retrieved 2 September 2021.
- by, Written (23 March 2020). "Firefox is dropping FTP support". Sophos News. Retrieved 13 October 2023.
- Edwards, Benj (14 July 2022). "Chrome and Firefox Killed FTP Support: Here's an Easy Alternative". How-To Geek. Retrieved 13 October 2023.
- ^ Clark, M.P. (2003). Data Networks IP and the Internet (1st ed.). West Sussex, England: John Wiley & Sons Ltd.
- ^ "Active FTP vs. Passive FTP, a Definitive Explanation". Slacksite.com.
- Weis, Olga (18 October 2022). "FTP Port: Full Guide about FTP and Port Numbers". Comprehensive Mac software apps. Retrieved 29 March 2024.
- RFC 959 (Standard) File Transfer Protocol (FTP). Postel, J. & Reynolds, J. (October 1985).
- RFC 2428 (Proposed Standard) Extensions for IPv6, NAT, and Extended Passive Mode. Allman, M. & Metz, C. & Ostermann, S. (September 1998).
- Stevens, W. Richard (1994). TCP/IP Illustrated Volume I. Vol. 1. Reading, Massachusetts, USA: Addison-Wesley Publishing Company. ISBN 0-201-63346-9.
- ^ Gleason, Mike (2005). "The File Transfer Protocol and Your Firewall/NAT". Ncftp.com.
- Klensin, John. FTP TYPE Extension for Internationalized Text. I-D draft-klensin-ftpext-typeu-00. Retrieved 9 June 2020.
- Preston, J. (January 2005). Deflate transmission mode for FTP. IETF. I-D draft-preston-ftpext-deflate-03. Retrieved 27 January 2016.
- Allcock, W. (April 2003). "GridFTP: Protocol Extensions to FTP for the Grid" (PDF).
- Mandrichenko, I. (4 May 2005). "GridFTP v2 Protocol Description" (PDF).
- "MFMT FTP command". support.solarwinds.com. 11 October 2018.
- "FTP Commands: DSIZ, MFCT, MFMT, AVBL, PASS, XPWD, XMKD | Serv-U". www.serv-u.com.
- "MDTM FTP command". support.solarwinds.com. 11 October 2018.
- Prince, Brian (24 January 2012). "Should Organizations Retire FTP for Security?". Security Week. Retrieved 14 September 2017.
- RFC 1635 (Informational) How to Use Anonymous FTP. P. & Emtage, A. & Marine, A. (May 1994).
- FTP Access through Windows Explorer
- "CSC373/406: SSH [2011/03/27-29]". fpl.cs.depaul.edu. Retrieved 13 October 2023.
- "FTP". docs.kde.org. Retrieved 13 October 2023.
- Cohen, Brent (26 July 2023). "How To Connect to FTP/SFTP in Dolphin | DeviceTests". Retrieved 13 October 2023.
- Staff, Moyens (28 February 2022). "Samsung My Files vs Google Files: Which File Manager is Better on Galaxy Phones". Moyens I/O. Retrieved 13 October 2023.
- Matthews, J. (2005). Computer Networking: Internet Protocols in Action (1st ed.). Danvers, MA: John Wiley & Sons Inc.
- Sneddon, Joey (26 January 2021). "Linux Release Roundup: GParted, Lightworks, Google Chrome + More". omgubuntu.co.uk. Retrieved 30 January 2021.
- "See what's new in Firefox: 88.0 Firefox Release". mozilla.org. 19 April 2021. Retrieved 20 April 2021.
- "FireFTP - The Free FTP Client for Waterfox". FireFTP.net. Archived from the original on 1 March 2022.
- "URL Schemes Supported in Lynx". Lynx website. Retrieved 6 July 2023.
- "Accessing FTP servers | How to | Firefox Help". Support.mozilla.com. 5 September 2012. Retrieved 16 January 2013.
- "How to Enter FTP Site Password in Internet Explorer". Archived from the original on 2 July 2015. Retrieved 13 February 2020. Written for IE versions 6 and earlier. Might work with newer versions.
- Jukka “Yucca” Korpela (18 September 1997). "FTP URLs". "IT and communication" (jkorpela.fi). Retrieved 26 January 2020.
- "DownloadStudio - Internet Download Manager And Download Accelerator - Features". Conceiva. Retrieved 19 October 2021.
- "LibreOffice 7.4: Release Notes". The Document Foundation's Wiki. Retrieved 10 September 2022.
- "ReleaseNotes/24.2". The Document Foundation's Wiki. Retrieved 24 March 2024.
- ^ "Securing FTP using SSH". Nurdletech.com.
- "Components of the Information Assurance Platform (section Tectia ConnectSecure)". ssh.com. Archived from the original on 31 July 2020.
Further reading
- RFC 697 – CWD Command of FTP. July 1975.
- RFC 959 – (Standard) File Transfer Protocol (FTP). J. Postel, J. Reynolds. October 1985.
- RFC 1579 – (Informational) Firewall-Friendly FTP. February 1994.
- RFC 1635 – (Informational) How to Use Anonymous FTP. May 1994.
- RFC 1639 – FTP Operation Over Big Address Records (FOOBAR). June 1994.
- RFC 1738 – Uniform Resource Locators (URL). December 1994.
- RFC 2228 – (Proposed Standard) FTP Security Extensions. October 1997.
- RFC 2389 – (Proposed Standard) Feature negotiation mechanism for the File Transfer Protocol. August 1998.
- RFC 2428 – (Proposed Standard) Extensions for IPv6, NAT, and Extended passive mode. September 1998.
- RFC 2577 – (Informational) FTP Security Considerations. May 1999.
- RFC 2640 – (Proposed Standard) Internationalization of the File Transfer Protocol. July 1999.
- RFC 3659 – (Proposed Standard) Extensions to FTP. P. Hethmon. March 2007.
- RFC 5797 – (Proposed Standard) FTP Command and Extension Registry. March 2010.
- RFC 7151 – (Proposed Standard) File Transfer Protocol HOST Command for Virtual Hosts. March 2014.
- IANA FTP Commands and Extensions registry – The official registry of FTP Commands and Extensions
External links
- Communication Networks/File Transfer Protocol at Wikibooks
- FTP Server Online Tester Authentication, encryption, mode and connectivity.
- Anonymous FTP Servers by Country Code TLD (2012): "Offbeat Internet - Public Access - FTP". www.jumpjet.info. 2012. Archived from the original on 28 March 2023. Retrieved 16 January 2020.
Uniform Resource Identifier (URI) schemes | |
---|---|
Official | |
Unofficial | |
Protocol list |