这不是一篇教学文章,是技术笔记,请原谅我不写太多的说明。
centos6 下的 FTP server 配置:
yum install vsftpd –y
/etc/init.d/vsftpd start
chkconfig vsftpd on
cat /etc/vsftpd/vsftpd.conf |grep -v ^# ##vsftpd配置文件
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
listen=YES
dual_log_enable=YES
vsftpd_log_file=/var/log/vsftpd.log
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
vim /etc/vsftpd/chroot_list #linux系统允许的用户
user01
/etc/init.d/vsftpd restart
centos7 下的 FTP server 配置:
yum install -y vsftpd
vim /etc/vsftpd/vsftpd.conf ##vsftpd配置文件
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
listen=NO
listen_ipv6=YES
allow_writeable_chroot=YES
pam_service_name=vsftpd
userlist_enable=NO
tcp_wrappers=YES
vim /etc/vsftpd/chroot_list #linux系统允许的用户
user01
systemctl start vsftpd
systemctl enable vsftpd