Linux限制ftp用户只在自己的家目录活动

安装到配置
yum install -y vsftpd
systemctl start vsftpd
useradd -d /home/ftpuser ftpuer
passwd ftpuser
vim /etc/vsftpd/vsftpd.conf

chroot_local_user=YES
allow_writeable_chroot=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list

注意:ftpuser用户不出现在/etc/vsftpd/chroot_list这个文件,才能实现ftpuser用户在 /home/ftpuser活动的效果

反之:在这个配置文件中添加用户,每个用户一行,则在这个文件里的用户登录ftp后,可以访问上级目录

你可能感兴趣的:(企业集群架构学习,linux,服务器,运维)