Network | Cara Konfigurasi FTP Server (Vsftpd) Debian 8
Admin
---
Solvedia - Cara Konfigurasi FTP Server di debian 8, apa sih FTP server ? FTP singakat dari File Transfer Protocol adalah suatu layanan server yang menjalankan software yang berfungsi untuk layanan tukar menukar file dimana server tersebut selalu siap memberikan layanan apabila mendapat permintaan (request) dari FTP client. Nah itu lah pengerian singkat dari FTP Server, berikut konfigurasinya.
root@www:~# apt-get install vsftpd
root@www:~# nano /etc/vsftpd.conf
# line 31: uncomment
write_enable=YES
# line 99,100: uncomment ( allow ascii mode transfer )
ascii_upload_enable=YES
ascii_download_enable=YES
# line 122: uncomment ( enable chroot )
chroot_local_user=YES
# line 123: uncomment ( enable chroot list )
chroot_list_enable=YES
# line 125: uncomment ( enable chroot list )
chroot_list_file=/etc/vsftpd.chroot_list
# line 131: uncomment
ls_recurse_enable=YES
# add to the end : specify chroot directory
# if not specify, users' home directory equals FTP home directory
local_root=public_html
# turn off seccomp filter
seccomp_sandbox=NO
root@www:~# nano /etc/vsftpd.chroot_list
# add users you allow to move over their home directory
jessie
root@www:~# service vsftpd restart
root@www:~# nano /etc/vsftpd.conf
# line 31: uncomment
write_enable=YES
# line 99,100: uncomment ( allow ascii mode transfer )
ascii_upload_enable=YES
ascii_download_enable=YES
# line 122: uncomment ( enable chroot )
chroot_local_user=YES
# line 123: uncomment ( enable chroot list )
chroot_list_enable=YES
# line 125: uncomment ( enable chroot list )
chroot_list_file=/etc/vsftpd.chroot_list
# line 131: uncomment
ls_recurse_enable=YES
# add to the end : specify chroot directory
# if not specify, users' home directory equals FTP home directory
local_root=public_html
# turn off seccomp filter
seccomp_sandbox=NO
root@www:~# nano /etc/vsftpd.chroot_list
# add users you allow to move over their home directory
jessie
root@www:~# service vsftpd restart
Baca juga: Cara Konfigurasi NTP Server Debian 8
Apa sih NETWORKING ???