Tutorial Install FTP Server
First install the proftpd app with the command "apt-get install proftpd", then hit enter.
Then you will see 2 options for running applications proftpd in inetd or standalone mode. Inetd and standalone difference is when an ftp server accessed only occasionally or accessing a bit with the reasons for saving resources / memory. If an ftp server accessible continuously and many users accessing select standalone mode.
After the installation is complete, check whether proftpd is running or not with the command "nmap localhost". If nmap has not been installed, install "apt-get install nmap" first. If port 21 exists, then the ftp server is already running.
Then, test the ftp server from the client, use the command "ftp 10.252.108.44". Then enter the user name on the server, do not forget to enter the password as well. In this case i use user "student".
Once logged in on the ftp server, type the command "ls" to find out what files are on the ftp server. "Get" command is used to download files.
When using the command line, it must be very difficult to memorize the commands. For easier use of GUI applications, one of them is FileZilla. If the client does not have FileZilla, type the command "apt-get install filezilla" to install it.
Enter password for user student. Then click Quick Connection. To transfer files, just drag and drop from remote site to the local site or otherwise.
Configure ftp for anonymous login. Type the command "nano /etc/proftpd/proftpd.conf".
Successful login, but if you want to send the file can't because it is restricted access rights.
Then you will see 2 options for running applications proftpd in inetd or standalone mode. Inetd and standalone difference is when an ftp server accessed only occasionally or accessing a bit with the reasons for saving resources / memory. If an ftp server accessible continuously and many users accessing select standalone mode.
After the installation is complete, check whether proftpd is running or not with the command "nmap localhost". If nmap has not been installed, install "apt-get install nmap" first. If port 21 exists, then the ftp server is already running.
Then, test the ftp server from the client, use the command "ftp 10.252.108.44". Then enter the user name on the server, do not forget to enter the password as well. In this case i use user "student".
When using the command line, it must be very difficult to memorize the commands. For easier use of GUI applications, one of them is FileZilla. If the client does not have FileZilla, type the command "apt-get install filezilla" to install it.
Enter password for user student. Then click Quick Connection. To transfer files, just drag and drop from remote site to the local site or otherwise.
Configure ftp for anonymous login. Type the command "nano /etc/proftpd/proftpd.conf".
Remove the hash mark on the "<Anonymous>" until "</ Anonymous>". When finished press ctrl + x, y, enter.
Then restart the proftpd service.
after restart, try logging in FileZilla with user "ftp" password do not have to be filled.
Comments
Post a Comment