CentOS用vsftpd搭建FTP服务器
Linux #centos #vsftpd #ftp2014-12-23 14:34
FTP软件用的是vsftpd,下面分享一下我们根据实际需求进行的一些配置。
准备工作
安装vsftpd
yum install vsftpd
设置开机启动vsftpd ftp服务
chkconfig vsftpd on
打开vsftpd配置文件
vi /etc/vsftpd/vsftpd.conf
需求及配置
1. 不允许匿名访问
anonymous_enable=NO
2. 使用本地帐户进行FTP用户登录验证
2.1 允许使用本地帐户进行FTP用户登录验证
local_enable=YES
2.2 创建用于FTP登录的本地帐户
增加用户ftpuser,主目录为/home/ftp,禁止登录SSH权限。
useradd -d /home/ftp -g ftp -s /sbin/nologin ftpuser -p password
2.3 只允许刚创建的ftpuser登录FTP
vi /etc/vsftpd/vsftpd.conf
userlist_enable=YES
userlist_deny=NO
vi /etc/vsftpd/user_list
注释所有帐户,添加ftpuser
# vsftpd userlist # If userlist_deny=NO, only allow users in this file # If userlist_deny=YES (default), never allow users in this file, and # do not even prompt for a password. # Note that the default vsftpd pam config also checks /etc/vsftpd/ftpusers # for users that are denied. #root #bin #daemon #adm #lp #sync #shutdown #halt #mail #news #uucp #operator #games #nobody ftpuser
配置到这里,就可以远程用FTP客户端登录并上传文件,文件会保存在ftpuser的主目录,也就是/home/ftp。
3. 不允许FTP下载
vi /etc/vsftpd/vsftpd.conf
download_enable=NO
4. 只允许指定的IP才能连接
4.1 安装tcp_wrappers
yum -y install tcp_wrappers
4.2 检查tcp_wrappers是否被设置为YES
vi /etc/vsftpd/vsftpd.conf
tcp_wrappers=YES
4.3 添回允许的IP
vi /etc/hosts.allow
vsftpd:允许的IP地址
4.4 拒绝所有其他的IP
vi /etc/hosts.deny
vsftpd:ALL
相关文章
- FTP数字代码所代表的意义 2014/12/23
- CentOS安装Pureftpd出现:Your MySQL client libraries aren't properly installed 2014/12/23
- Centos查看单个文件大小的命令 2014/12/22
- Centos的Vim快捷键操作命令 2014/12/22
- CentOS查看硬盘空间磁盘空间的大小 2014/12/17
- Centos同步时间出现the NTP socket is in use, exiting解决方法 2014/12/09
- 升级linux bash的方法 2014/10/08
- ntpdate和ntpd的区别 2014/09/22
- Centos安装桌面环境的方法 2014/03/23
- CentOS防火墙打开80端口的方法 2014/02/22