CentOS7.2启用FTP

1. 安装vsftpd


$yum check-update

$yum -y install vsftpd

2. 配置参数


$vi /etc/vsftpd/vsftpd.conf

->修改为如下参数

anonymous_enable=NO

chroot_local_user=YES

allow_writeable_chroot=YES

pasv_enable=YES

pasv_min_port=40000

pasv_max_port=40100

3. 启动FTP


$systemctl restart vsftpd.service

$systemctl enable vsftpd.service

你可能感兴趣的:(CentOS7.2启用FTP)