SETTING LAYANAN FTP SERVER
1. Pada linux terdapat banyak sekali aplikasi FTP Server (vsftpd, wu-ftpd, wzdftpd, pureftpd, tftpd). Namun disini yang digunakan vsftpd.
2. Install paket vsftpd.
# apt-get install vsftpd
3. Setelah semua instalasi selesai dilakukan. Edit file vsftpd.conf, namun terlebih dahulu anda bisa back-up file tersebut terlebih dahulu.
4. Kemudian ubah beberapa opsi file /etc/vsftpd.conf berikut,
# Allow anonymous FTP?
anonymous_enable=NO
# Uncomment this to allow local users to log in.
local_enable=YES
# Uncomment this to enable any form of FTP write
command.
write_enable=YES
# You may fully customise the login banner string:
ftpd_banner=Welcome to my FTP.
# chroot_list_enable below.
chroot_local_user=YES
5. Simpan file diatas, kemudian restart FTP server.
# /etc/init.d/vsftpd restart
6. FTP Server anda siap digunakan. Untuk tes lakukan ftp ke localhost.
# ftp localhost
Tags: ftp server, ftp, linux ftp server