菜单
个人主页
(当前)
写文章
浏览博文
    
搜索
登录
微信公众号
站点链接
半根蓝白个人主页
CSDN
Github
友情链接
摘繁华个人博客
博文目录
#custom-toc-container
centos系统搭建ftp服务器
BGLB0324
2020年7月18日 17:01
最后发布:2020年7月18日 17:01
首发:2020年7月18日 17:01
461
0
博文分类:
计算机基础
博文标签:
linux
ftp
版权声明:本文为博主[BGLB0324]原创文章,遵循
CC 4.0 BY
版权协议,转载请附上原文出处链接和本声明。
本文链接:
http://blog.bglb.work/blog/blog-detail/15
版权
# centos系统搭建ftp 服务器 #### 服务器已经安装完成了 用虚拟机来演示 主要还是记录一下 #### 系统 centos 7 ## 一、安装相对应的软件 ### 1. 安装vsftpd ```shell #安装 yum install -y vsftpd #设置开机启动 systemctl enable vsftpd.service #启动 systemctl start vsftpd.service #停止 systemctl stop vsftpd.service #查看状态 systemctl status vsftpd.service ``` ## 二、建立系统用户 ```shell #建立Vsftpd服务的宿主用户 useradd vsftpd -s /sbin/nologin #建立Vsftpd虚拟宿主用户 useradd overlord -s /sbin/nologin ``` #### vsftpd 的宿主用户:默认的Vsftpd的服务宿主用户是root,但是这不符合安全性的需要。这里建立名字为vsftpd的用户,用他来作为支持Vsftpd的服务宿主用户。由于该用户仅用来支持Vsftpd服务用,因此没有许可他登陆系统的必要,并设定他为不能登陆系统的用户。 ##### 虚拟用户: 本篇主要是介绍Vsftp的虚拟用户,虚拟用户并不是系统用户,也就是说这些FTP的用户在系统中是不存在的。他们的总体权限其实是集中寄托在一个在系统中的某一个用户身上的,所谓Vsftpd的虚拟宿主用户,就是这样一个支持着所有虚拟用户的宿主用户。由于他支撑了FTP的所有虚拟的用户,那么他本身的权限将会影响着这些虚拟的用户,因此,处于安全性的考虑,也要非分注意对该用户的权限的控制,该用户也绝对没有登陆系统的必要,这里也设定他为不能登陆系统的用户。 ## 三.编辑Vsftpd的配置文件 #### 1、修改vsftpd的配置文件 ```shell # 备份源文件 cp /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.backup2 # 编辑源文件 # vim 也可以 vi /etc/vsftpd/vsftpd.conf ``` - [ ] 自己的配置 ```shell # Allow anonymous FTP? (Beware - allowed by default if you comment this out). # anonymous_enable=YES anonymous_enable=NO # 设定不允许匿名访问 # # Uncomment this to allow local users to log in. local_enable=YES # 设定本地用户可以访问。注意:主要是为虚拟宿主用户,如果该项目设定为NO那么所有虚拟用户将无法访问。 # # # # Uncomment this to enable any form of FTP write command. write_enable=YES # 设定可以进行写操作。 # # # # Default umask for local users is 077. You may wish to change this to 022, # # if your users expect that (022 is used by most other ftpd's) local_umask=022 # 设定上传后文件的权限掩码。 # # # # Uncomment this to allow the anonymous FTP user to upload files. This only # # has an effect if the above global write enable is activated. Also, you will # # obviously need to create a directory writable by the FTP user. # #anon_upload_enable=YES anon_upload_enable=NO # 禁止匿名用户上传。 # # # # Uncomment this if you want the anonymous FTP user to be able to create # # new directories. # #anon_mkdir_write_enable=YES anon_mkdir_write_enable=NO # 禁止匿名用户建立目录。 # # # # Activate directory messages - messages given to remote users when they # # go into a certain directory. dirmessage_enable=YES # 设定开启目录标语功能。 # # # # Activate logging of uploads/downloads. xferlog_enable=YES # 设定开启日志记录功能。 # # # # Make sure PORT transfer connections originate from port 20 (ftp-data). connect_from_port_20=YES # 设定端口20进行数据连接。 # # # # If you want, you can arrange for uploaded anonymous files to be owned by # # a different user. Note! Using "root" for uploaded files is not # # recommended! # #chown_uploads=YES chown_uploads=NO # 设定禁止上传文件更改宿主。 # #chown_username=whoever # # # # You may override where the log file goes if you like. The default is shown # # below. xferlog_file=/var/log/vsftpd.log # 设定Vsftpd的服务日志保存路径。注意,该文件默认不存在。必须要手动touch出来,并且由于这里更改了Vsftpd的服务宿主用户为手动建立的Vsftpd。必须注意给与该用户对日志的写入权限,否则服务将启动失败。 # # # # If you want, you can have your log file in standard ftpd xferlog format xferlog_std_format=YES # 设定日志使用标准的记录格式。 # # # # You may change the default value for timing out an idle session. # #idle_session_timeout=600 # 设定空闲连接超时时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值600,单位秒。 # # # # You may change the default value for timing out a data connection. # #data_connection_timeout=120 # 设定单次最大连续传输时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值120,单位秒。 # # # # It is recommended that you define on your system a unique user which the # # ftp server can use as a totally isolated and unprivileged user. # #nopriv_user=ftpsecure nopriv_user=vsftpd # 设定支撑Vsftpd服务的宿主用户为手动建立的Vsftpd用户。注意,一旦做出更改宿主用户后,必须注意一起与该服务相关的读写文件的读写赋权问题。比如日志文件就必须给与该用户写入权限等。 # # # # Enable this and the server will recognise asynchronous ABOR requests. Not # # recommended for security (the code is non-trivial). Not enabling it, # # however, may confuse older FTP clients. async_abor_enable=YES # 设定支持异步传输功能。 # # # # By default the server will pretend to allow ASCII mode but in fact ignore # # the request. Turn on the below options to have the server actually do ASCII # # mangling on files when in ASCII mode. # # Beware that on some FTP servers, ASCII support allows a denial of service # # attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd # # predicted this attack and has always been safe, reporting the size of the # # raw file. # # ASCII mangling is a horrible feature of the protocol. ascii_upload_enable=YES ascii_download_enable=YES # 设定支持ASCII模式的上传和下载功能。 # # # # You may fully customise the login banner string: ftpd_banner=Welcome To BGLB's ftp server ^_^ # 设定Vsftpd的登陆标语。 # # # # You may specify a file of disallowed anonymous e-mail addresses. Apparently # # useful for combatting certain DoS attacks. # #deny_email_enable=YES # # (default follows) # #banned_email_file=/etc/vsftpd/banned_emails # # # # You may specify an explicit list of local users to chroot() to their home # # directory. If chroot_local_user is YES, then this list becomes a list of # # users to NOT chroot(). # #chroot_list_enable=YES # chroot_list 中的用户不受限制 chroot_list_enable=YES # 1.所有用户都被限制在其主目录下 chroot_local_user=YES # 禁止用户登出自己的FTP主目录。 # # (default follows) chroot_list_file=/etc/vsftpd/chroot_list allow_writeable_chroot=YES # # # # You may activate the "-R" option to the builtin ls. This is disabled by # # default to avoid remote users being able to cause excessive I/O on large # # sites. However, some broken FTP clients such as "ncftp" and "mirror" assume # # the presence of the "-R" option, so there is a strong case for enabling it. # #ls_recurse_enable=YES ls_recurse_enable=NO # 禁止用户登陆FTP后使用"ls -R"的命令。该命令会对服务器性能造成巨大开销。如果该项被允许,那么挡多用户同时使用该命令时将会对该服务器造成威胁。 # # When "listen" directive is enabled, vsftpd runs in standalone mode and # # listens on IPv4 sockets. This directive cannot be used in conjunction # # with the listen_ipv6 directive. listen=YES # 设定该Vsftpd服务工作在StandAlone模式下。顺便展开说明一下,所谓StandAlone模式就是该服务拥有自己的守护进程支持,在ps -A命令下我们将可用看到vsftpd的守护进程名。如果不想工作在StandAlone模式下,则可以选择SuperDaemon模式,在该模式下 vsftpd将没有自己的守护进程,而是由超级守护进程Xinetd全权代理,与此同时,Vsftp服务的许多功能将得不到实现。 # # # # This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6 # # sockets, you must run two copies of vsftpd whith two configuration files. # # Make sure, that one of the listen options is commented !! # #listen_ipv6=YES pam_service_name=vsftpd # 设定PAM服务下Vsftpd的验证配置文件名。因此,PAM验证将参考/etc/pam.d/下的vsftpd文件配置。 userlist_enable=YES userlist_file=/etc/vsftpd/user_list # 设定userlist_file中的用户将不得使用FTP。 tcp_wrappers=YES # 设定支持TCP Wrappers。#KC: The following entries are added for supporting virtual ftp users. # 以下这些是关于Vsftpd虚拟用户支持的重要配置项目。默认Vsftpd.conf中不包含这些设定项目,需要自己手动添加配置。 guest_enable=YES # 设定启用虚拟用户功能。 guest_username=overlord # 指定虚拟用户的宿主用户。 virtual_use_local_privs=YES # 设定虚拟用户的权限符合他们的宿主用户。 user_config_dir=/etc/vsftpd/vconf # 设定虚拟用户个人Vsftp的配置文件存放路径。也就是说,这个被指定的目录里,将存放每个Vsftp虚拟用户个性的配置文件,一个需要注意的地方就是这些配置文件名必须和虚拟用户名相同。 pasv_enable=YES pasv_max_port=30000 pasv_min_port=35000 ``` #### 2、建立Vsftpd的日志文件,并更该属主为Vsftpd的服务宿主用户 ```shell touch /var/log/vsftpd.log chown vsftpd.vsftpd /var/log/vsftpd.log ``` #### 3、建立虚拟用户配置文件存放路径: ```shell mkdir /etc/vsftpd/vconf/ ``` ## 四、制作虚拟用户数据库文件 1.先建立虚拟用户名单文件:(也就是用来登陆ftp服务器的用户名及密码) ```shell touch /etc/vsftpd/virtusers ``` 建立了一个虚拟用户名单文件,这个文件就是来记录vsftpd虚拟用户的用户名和口令的数据文件,我这里给它命名为virtusers。为了避免文件的混乱,我把这个名单文件就放置在/etc/vsftpd/下 2.编辑虚拟用户名单文件: ```shell vi /etc/vsftpd/virtusers ``` 格式如下 ----(一行用户名,一行密码) ```shell ftpuser1 pwd1 ftpuser2 pwd2 ``` 3.生成虚拟用户数据文件: ```shell db_load -T -t hash -f /etc/vsftpd/virtusers /etc/vsftpd/virtusers.db ``` 4.注意: 在增加了ftp用户的之后,需要执行上述命令,不然不会生效 ## 五、设定PAM验证文件,并指定虚拟用户数据库文件进行读取 ```shell # 备份源文件 cp /etc/pam.d/vsftpd /etc/pam.d/vsftpd.backup # 编辑文件 vi /etc/pam.d/vsftpd ``` ```csharp #%PAM-1.0 # 增加的两行 auth sufficient /lib64/security/pam_userdb.so db=/etc/vsftpd/virtusers account sufficient /lib64/security/pam_userdb.so db=/etc/vsftpd/virtusers # 下面是原先的文件 session optional pam_keyinit.so force revoke auth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeed auth required pam_shells.so auth include system-auth account include system-auth session include system-auth session required pam_loginuid.so ``` ## 六、虚拟用户目录的配置--(ftp用户登陆之后的家目录) 以我的ftp目录为例,我有两个 ftp用户分别是bglb ftpuser 首先建立ftp服务器存放文件的主目录 ```shell mkdir /opt/vsftpd/ ``` 其次建立 ftp 用户主目录 ```shell mkdir /opt/vsftp/bglb /opt/vsftp/ftpuser # bglb 这个用户相当于ftp 管理员 可以管理其他用户的文件 其他用户只能在自己目录下工作 ``` 最后定制每个ftp用户的操作权限 建立一个模版文件 ```shell vi /etc/vsftpd/vconf/vconf.tmp ``` 我自己模版 ```shell cal_root=/opt/vsftp/virtuser # 指定虚拟用户的具体主路径。 anonymous_enable=NO # 设定不允许匿名用户访问。 write_enable=YES # 设定允许写操作。 local_umask=022 # 设定上传文件权限掩码。 anon_upload_enable=NO # 设定不允许匿名用户上传。 anon_mkdir_write_enable=NO # 设定不允许匿名用户建立目录。 idle_session_timeout=600 # 设定空闲连接超时时间。 data_connection_timeout=120 # 设定单次连续传输最大时间。 max_clients=10 # 设定并发客户端访问个数。 max_per_ip=5 # 设定单个客户端的最大线程数,这个配置主要来照顾Flashget、迅雷等多线程下载软件。 local_max_rate=50000 # 设定该用户的最大传输速率,单位b/s。 ``` 编辑每个用户的配置文件 ```shell # 建立bglb 用户的配置文件 cp /etc/vsftpd/vconf/vconf.tmp /etc/vsftpd/bglb ``` 我自己的配置 ```shell # bglb 也就是ftp 管理员 local_root=/opt/vsftp # 指定虚拟用户的具体主路径。 anonymous_enable=NO # 设定不允许匿名用户访问。 write_enable=YES # 设定允许写操作。 local_umask=022 # 设定上传文件权限掩码。 anon_upload_enable=NO # 设定不允许匿名用户上传。 anon_mkdir_write_enable=NO # 设定不允许匿名用户建立目录。 idle_session_timeout=600 # 设定空闲连接超时时间。 data_connection_timeout=120 # 设定单次连续传输最大时间。 max_clients=10 # 设定并发客户端访问个数。 max_per_ip=5 # 设定单个客户端的最大线程数,这个配置主要来照顾Flashget、迅雷等多线程下载软件。 local_max_rate=50000 # 设定该用户的最大传输速率,单位b/s ``` ```shell # 建立ftpuser 用户的配置文件 cp /etc/vsftpd/vconf/vconf.tmp /etc/vsftpd/ftpuser ``` 我自己的配置 ```shell # ftpuser 也就是普通用户 local_root=/opt/vsftp/ftpuser # 指定虚拟用户的具体主路径。 anonymous_enable=NO # 设定不允许匿名用户访问。 write_enable=YES # 设定允许写操作。 local_umask=022 # 设定上传文件权限掩码。 anon_upload_enable=NO # 设定不允许匿名用户上传。 anon_mkdir_write_enable=NO # 设定不允许匿名用户建立目录。 idle_session_timeout=600 # 设定空闲连接超时时间。 data_connection_timeout=120 # 设定单次连续传输最大时间。 max_clients=10 # 设定并发客户端访问个数。 max_per_ip=5 # 设定单个客户端的最大线程数,这个配置主要来照顾Flashget、迅雷等多线程下载软件。 local_max_rate=50000 # 设定该用户的最大传输速率,单位b/s。 allow_writeable_chroot=YES ``` 更改虚拟用户的主目录的属主为虚拟宿主用户: ```shell chown -R overlord.overlord /opt/vsftp/ ``` 最后启动服务试试吧 ## 启动错误排查 1.配置文件中不能出现空格 如 allow_writeable_chroot = YES # 这种就是错误的 会报错 启动错误 2.资源管理器不能访问ftp 这个是你的windows 设置问题 百度一下就解决了 注意一下:需要开启端口:20/21 ### 参考链接: [Linux公社 vsftp配置](https://www.linuxidc.com/Linux/2013-09/90562.htm)
点赞
0
打赏
暂时没有评论
请
登录
后评论
暂时没有评论