FTP Server with Users Authentication

H r U Friends ,

Well i want to tell you , How can we  Setup FTP Server with user Authentication:-

Letup follow below steps:-

 

 

Install Vsftpd Package

# yum install vsftpd* -y

 

create a user abd set the password which is use to access ftp

#useradd sahil

#passwd sahil

 

put the data which you want to give client

# cd /home/sahil/

# mkdir IT

 

do some changes in configuration file

# vim /etc/vsftpd/vsftpd.conf

#anonymous_enable=YES # note >> disable anonymous user access

#chroot_list_file=/etc/vsftpd/chroot_list

 

chroot_local_user=YES

#Note >> put this line under #chroot_list_file=/etc/vsftpd/chroot_list

 

 

:wq!

 

#service vsftpd restart

#chkconfig vsftpd on

 

 

Access on your Browser :>>

 

ftp://sahil@192.168.11.18

 

give user name and password

you can download the file

 

Enjoy !!

Shahil

sahil.jet786@gmail.com

Just Love Linux   :)

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top