Contents
Ftp Server
Install
- Install Ftp Server ("Very secure ftp server")
apt-get update apt-get install vsftpd
- Ftp server has been installed
Configure
- Now configure your server
- Edit /etc/vsftpd.conf
vi /etc/vsftpd.conf
[Optional] Disable Anonymous account by finding the line that says anonymous_enable=YES and make it
anonymous_enable=NO
- [Optional] Allow Write access (upload access). Find and uncomment the following line:
write_enable=YES
[Optional] Add you banner when people log in. Find and uncomment this #ftpd_banner=Welcome to blah FTP service. line and make it:
ftpd_banner=Welcome to lucasmanual.com FTP service. Enjoy.
- [Optional] Allow local users to log in. Uncomment the following line:
local_enable=YES
Connect to ftp server
- Connect to your new ftp server
ftp localhost or ftp example.com