Linux中FTP服务器的搭建教程

  • 下载
yum install -y vsftpd
  • 修改配置 /etc/vsftpd/vsftpd.conf:vsftpd 的核心配置文件
cd /etc/vsftpd/
cp vsftpd.conf vsftpd.conf.back
vim vsftpd.conf

vsftpd.conf具体配置如下:

anonymous_enable=NO #允许匿名用户访问为了安全选择关闭
local_root=/var/ftp/pub #根目录
local_enable=YES # 允许本地用户登录
write_enable=YES # 是否允许写入
local_umask=022 # 本地用户上传文件的umask
dirmessage_enable=YES #为YES则进入目录时显示此目录下由message_file选项指定的文本文件(,默认为.message)的内容
xferlog_enable=YES #开启日志
xferlog_std_format=YES #标准格式
connect_from_port_20=YES
xferlog_file=/var/log/xferlog #ftp日志目录
idle_session_timeout=6000 #设置客户端连接时间
data_connection_timeout=1200 #设置数据连接时间 针对上传,下载
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list #设置为YES则下面的控制有效
chroot_list_enable=YES #若为NO,则记录在chroot_list_file所指定的文件(默认是/etc/vsftpd.chroot_list)中的用户将被chroot在登录后所在目录中,无法离开.如果为YES,则所记录的用户将不被chroot.这里YES.
chroot_local_user=YES
userlist_deny=NO #若设置为YES则记录在userlist_file选项指定文件(默认是/etc/vsftpd.user_list)中的用户将无法login,并且将检察下面的userlist_deny选项
userlist_enable=YES #若为NO,则仅接受记录在userlist_file选项指定文件(默认是/etc/vsftpd.user_list)中的用户的login请求.若为YES则不接受这些用户的请求.
userlist_file=/etc/vsftpd/user_list #白名单
chroot_list_enable=YES
listen=YES
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES

  • 启动服务
systemctl start vsftpd.service
  • 下载ftp
yum -y install ftp
  • 上传文件
ftp> put 1.htm /usr/your/2.log
  • 下载文件
ftp> get /usr/your/1.htm 1.log

参考资料
linux命令行模式下对FTP服务器进行文件上传下载
linux下ftp连接:530 Permission denied
Linux下FTP连接报错530 Permission denied解决方法

你可能感兴趣的:(Linux中FTP服务器的搭建教程)