Hello All:
I have VSFTPD running on openSUSE 13.1 and everything is running OK. Except when users click on the link ftp.blabla.com and it open with Internet Explorer and it open the root of the server, not the home of the user.
Here is my config file, please advise.
# zypper in vsftpd
# systemctl enable vsftpd.service
# systemctl start vsftpd.service
# mkdir /srv/ftp
# groupadd ftp-users
# useradd -g ftp-users -d /srv/ftp/ test
# passwd test
# chmod 750 /srv/ftp/
# chown test:ftp-users /srv/ftp/
# vi /etc/vsftpd.conf
write_enable=YES
ftpd_banner=Welcome to TEST FTP service.
local_enable=YES
anonymous_enable=NO
use_localtime=YES
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list
#vi /etc/vsftpd.chroot_list
added test
# systemctl restart vsftpd.service
Thanks
I have VSFTPD running on openSUSE 13.1 and everything is running OK. Except when users click on the link ftp.blabla.com and it open with Internet Explorer and it open the root of the server, not the home of the user.
Here is my config file, please advise.
# zypper in vsftpd
# systemctl enable vsftpd.service
# systemctl start vsftpd.service
# mkdir /srv/ftp
# groupadd ftp-users
# useradd -g ftp-users -d /srv/ftp/ test
# passwd test
# chmod 750 /srv/ftp/
# chown test:ftp-users /srv/ftp/
# vi /etc/vsftpd.conf
write_enable=YES
ftpd_banner=Welcome to TEST FTP service.
local_enable=YES
anonymous_enable=NO
use_localtime=YES
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list
#vi /etc/vsftpd.chroot_list
added test
# systemctl restart vsftpd.service
Thanks