🗃️FTP Client
How to use your FTP client
Last updated
How to use your FTP client
Last updated
As of 0.1.0, this feature has been moved to the kernel addons.
File Transfer Protocol (FTP) was a standard network protocol used to transfer files from computer to another computer in the network. It used the client-server architecture to manage data and control connections between the source and the target. It normally uses the plain text usernames and passwords to authenticate to the FTP server, but if the server was configured for guest authentication, the client could log in to the server without the username and the password. It first appeared on April 16, 1971.
Various computer applications for both the connection to the FTP server and the hosting service for the protocol have appeared for multiple platforms, like Windows and Linux. The simulated kernel contains the FTP shell which allows you to perform FTP operations on a remote server.
The FTP protocol in general is being replaced by SFTP, although it's kept for historical purposes. This client should be used as a last resort.
To connect the client to the FTP server, you have two ways to initiate a connection to the server, which is connecting directly from the main shell, and connecting inside the FTP shell.
To connect directly from UESH, please follow the steps:
Use the ftp <server>
command
Authenticate using your username and your password
Select an FTP profile
You're connected!
To connect to your FTP server inside the FTP shell, please follow the steps:
Use the ftp
command
Now, execute the connect <server>
command
Authenticate using your username and your password
Select an FTP profile
You're connected!
For the list of available commands, head to the page below:
📄Commands List