forked from zhibolau/CloudSupportAssociate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFTP.txt
More file actions
12 lines (6 loc) · 1.19 KB
/
FTP.txt
File metadata and controls
12 lines (6 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
FTP.txt
File Transfer Protocol (FTP) is a standard Internet protocol for transmitting files between computers on the Internet over TCP/IP connections.
platform independent
FTP is a client-server protocol that relies on two communications channels between client and server: a command channel for controlling the conversation and a data channel for transmitting file content. Clients initiate conversations with servers by requesting to download a file. Using FTP, a client can upload, download, delete, rename, move and copy files on a server. A user typically needs to log on to the FTP server, although some servers make some or all of their content available without login, also known as anonymous FTP.
FTP sessions work in passive or active modes. In active mode, after a client initiates a session via a command channel request, the server initiates a data connection back to the client and begins transferring data. In passive mode, the server instead uses the command channel to send the client the information it needs to open a data channel. Because passive mode has the client initiating all connections, it works well across firewalls and Network Address Translation (NAT) gateways.
windows side: PuTTY