FTP服务Markdown
作者:互联网
FTP
文章目录
1.ftp简介
网络文件共享服务主流的主要有三种,分别是ftp、nfs、samba。
FTP是File Transfer Protocol(文件传输协议)的简称,用于internet上的控制文件的双向传输。
FTP也是一个应用程序,基于不同的操作系统有不同的FTP应用程序,而所有这些应用程序都遵守同一种协议以传输文件。
在FTP的使用当中,用户经常遇到两种概念:下载和上传
下载(Download) | 上传(Upload) |
---|---|
从远程主机拷贝文件至自己的计算机上 | 将文件从自己的计算机上拷贝至远程主机上 |
2.ftp架构
FTP工作于应用层,监听于tcp的21号端口,是一种C/S架构的应用程序。其有多种客户端和服务端的应用程序,下面来简单介绍一下
客户端工具 | 服务端软件 |
---|---|
ftp lftp,lftpget wget,curl filezilla gftp(Linux GUI) 商业软件(flashfxp,cuteftp) |
wu-ftpd proftpd(提供web接口的一种ftp服务端程序) pureftp vsftpd(Very Secure) ServU(windows平台的一种强大ftp服务端程序) |
3. ftp数据连接模式
ftp有2种数据连接模式:命令连接和数据连接
- 命令连接:是指文件管理类命令,始终在线的持久性连接,直到用户退出登录为止
- 数据连接:是指数据传输,按需创建及关闭的连接
其中数据连接需要关注的有2点,一是数据传输格式,二是数据传输模式
数据传输格式有以下两种:
- 文件传输
- 二进制传输
数据传输模式也有2种:
- 主动模式:由服务器端创建数据连接
- 被动模式:由客户端创建数据连接
两种数据传输模式的建立过程:
传输模式 | 建立过程 |
---|---|
主动模式 | 命令连接: Client(1025)–> Server(21) 客户端以一个随机端口(大于1023)来连服务器端的21号端口 数据连接: Server(20/tcp) --> Client(1025+1) 服务器端以自己的20号端口去连客户端创建命令连接时使用的随机端口+1的端口号 |
被动模式 | 命令连接: Client(1110) --> Server(21) 客户端以一个随机端口来连成服务器端的21号端口 数据连接: Client(1110+1) --> Server(随机端口) 客户端以创建命令连接的端口 +1的端口号去连服务器端通过命令连接告知自己的一个随机端口号来创建数据连接 |
主动模式有个弊端,因为客户端的端口是随机的,客户端如果开了防火墙,
则服务器端去连客户端创建数据连接时可能会被拒绝
4. 用户认证
ftp的用户主要有三种:
- 虚拟用户:仅用于访问某特定服务中的资源
- 系统用户:可以登录系统的真实用户
- 匿名用户
5. vsftpd
此处我们要说的ftp应用程序是vsftpd,这也是在公司中用得最多的一款ftp软件。
5.1 vsftpd安装
[root@hanyuce ~]# yum -y install vsftpd
5.2 vsftpd配置
/etc/pam.d/vsftpd //vsftpd用户认证配置文件
/etc/vsftpd/ //配置文件目录
/etc/vsftpd/vsftpd.conf //主配置文件
//匿名用户(映射为ftp用户)的共享资源位置是/var/ftp
//系统用户通过ftp访问的资源位置为用户的家目录
//虚拟用户通过ftp访问的资源位置为给虚拟用户指定的映射成为的系统用户的家目录
vsftpd常见的配置参数:
参数 | 作用 |
---|---|
anonymous_enable=YES | 启用匿名用户登录 |
anon_upload_enable=YES | 允许匿名用户上传 |
anon_mkdir_write_enable=YES | 允许匿名用户创建目录,但是不能删除 |
anon_other_write_enable=YES | 允许匿名用户创建和删除目录 |
local_enable=YES | 启用本地用户登录 |
write_enable=YES | 允许本地用户有写权限 |
local_umask=022 | 通过ftp上传文件的默认遮罩码 |
chroot_local_user=YES | 禁锢所有的ftp本地用户于其家目录中 |
chroot_list_enable=YES | 开启禁锢文件列表 需要与chroot_list_file参数一起使用 |
chroot_list_file=/etc/vsftpd/chroot_list | 指定禁锢列表文件路径 在此文件里面的用户将被禁锢在其家目录中 |
allow_writeable_chroot=YES | 允许被禁锢的用户家目录有写权限 |
xferlog_enable=YES | 是否启用传输日志,记录ftp传输过程 |
xferlog_std_format=YES | 传输日志是否使用标准格式 |
xferlog_file=/var/log/xferlog | 指定传输日志存储的位置 |
chown_uploads=YES | 是否启用改变上传文件属主的功能 |
chown_username=whoever | 指定要将上传的文件的属主改为哪个用户 此用户必须在系统中存在 |
pam_service_name=vsftpd | 指定vsftpd使用/etc/pam.d下的 哪个pam配置文件进行用户认证 |
userlist_enable=YES | 是否启用控制用户登录的列表文件: 默认为/etc/vsftpd/user_list文件 |
userlist_deny=YES | 是否拒绝userlist指定的列表文件中存在的用户登录ftp |
max_clients=# | 最大并发连接数 |
max_per_ip=# | 每个IP可同时发起的并发请求数 |
anon_max_rate | 匿名用户的最大传输速率,单位是“字节/秒” |
local_max_rate | 本地用户的最大传输速率,单位是“字节/秒” |
dirmessage_enable=YES | 启用某目录下的.message描述信息 假定有一个目录为/upload,在其下创建一个文件名为.message, 在文件内写入一些描述信息, 则当用户切换至/upload目录下时会自动显示.message文件中的内容 |
message_file | 设置访问一个目录时获得的目录信息文件的文件名,默认是.message |
idle_session_timeout=600 | 设置默认的断开不活跃session的时间 |
data_connection_timeout=120 | 设置数据传输超时时间 |
ftpd_banner=“Welcome to chenlf FTP service.” | 定制欢迎信息,登录ftp时自动显示 |
//虚拟用户的配置:
//所有的虚拟用户会被统一映射为一个指定的系统帐号,访问的共享位置即为此系统帐号的家目录
//各虚拟用户可被赋予不同的访问权限,通过匿名用户的权限控制参数进行指定
//虚拟用户帐号的存储方式:
1.文件:编辑文件,此文件需要被编码为hash格式。
奇数行为用户名
偶数行为密码
2.关系型数据库的表中:
通过即时查询数据库完成用户认证
mysql库:pam要依赖于pam_mysql软件,可以通过epel源yum安装
5.3 vsftpd虚拟用户配置
vsftpd虚拟用户的配置步骤如下:
//安装依赖的程序:
[root@hanyuce ~]# cd /etc/yum.repos.d/
[root@hanyuce yum.repos.d]# wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
[root@hanyuce ~]# sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@hanyuce ~]# [root@hanyuce ~]# sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@hanyuce ~]# yum clean all
[root@hanyuce ~]# yum -y install epel-release
[root@hanyuce ~]# yum -y install vsftpd
//创建文本格式的用户名、密码列表,例如若要添加两个用户haha,xixi,密码分别为123、456
[root@hanyuce ~]# echo "haha" >> /etc/vsftpd/vu.list
[root@hanyuce ~]# echo "123" >> /etc/vsftpd/vu.list
[root@hanyuce ~]# echo "xixi" >> /etc/vsftpd/vu.list
[root@hanyuce ~]# echo "456" >> /etc/vsftpd/vu.list
[root@hanyuce ~]# cat /etc/vsftpd/vu.list
haha
123
xixi
456
//这里的用户名和密码是一一对应的,前面输的是帐号,后面跟的是密码
//安装db4工具
[root@hanyuce ~]# yum -y install db4*
//将刚创建的文本格式用户名、密码文件使用db4工具转换成数据库文件
[root@hanyuce ~]# db_load -T -t hash -f /etc/vsftpd/vu.list /etc/vsftpd/vu.db
//上面的-T表示转换,-t表示加密方式使用hash算法加密
//为提高虚拟用户帐号文件的安全性,应将文件权限设置为600,以避免数据外泄
[root@hanyuce ~]# chmod 600 /etc/vsftpd/vu.*
[root@hanyuce ~]# ll /etc/vsftpd/
总用量 36
-rw------- 1 root root 125 10月 31 2018 ftpusers
-rw------- 1 root root 361 10月 31 2018 user_list
-rw------- 1 root root 5116 10月 31 2018 vsftpd.conf
-rwxr--r-- 1 root root 338 10月 31 2018 vsftpd_conf_migrate.sh
-rw------- 1 root root 12288 7月 29 19:02 vu.db
-rw------- 1 root root 18 7月 29 18:51 vu.list
//添加虚拟用户的映射帐号、创建ftp根目录。例如要将使用的ftp根目录设置为/var/ftproot, \
//映射帐号的名称为vftp,可以执行以下操作
[root@hanyuce ~]# useradd -d /var/ftproot -s /sbin/nologin vftp
[root@hanyuce ~]# id vftp
uid=1014(vftp) gid=1015(vftp) 组=1015(vftp)
[root@hanyuce ~]# chmod 755 /var/ftproot/
[root@hanyuce ~]# ll -d /var/ftproot/
drwxr-xr-x 2 vftp vftp 76 7月 29 19:05 /var/ftproot/
//为虚拟用户建立PAM认证
[root@hanyuce ~]# cp /etc/pam.d/vsftpd /etc/pam.d/vsftpd.bak
[root@hanyuce ~]# vim /etc/pam.d/vsftpd.bak
[root@hanyuce ~]# cat /etc/pam.d/vsftpd.bak
#%PAM-1.0
auth required pam_userdb.so db=/etc/vsftpd/vu
account required pam_userdb.so db=/etc/vsftpd/vu
//修改vsftpd配置文件,添加虚拟用户支持
[root@hanyuce ~]# echo 'guest_enable=YES' >> /etc/vsftpd/vsftpd.conf
[root@hanyuce ~]# echo 'guest_username=vftp' >> /etc/vsftpd/vsftpd.conf
//为不同的虚拟用户建立独立的配置文件
[root@hanyuce ~]# echo 'user_config_dir=/etc/vsftpd/vusers_dir' >> /etc/vsftpd/vsftpd.conf
[root@hanyuce ~]# echo 'allow_writeable_chroot=YES' >> /etc/vsftpd/vsftpd.conf
//有了上述配置后,就可以在/etc/vsftpd/vusers_dir目录中为每个虚拟用户分别建立配置文件了。 \
//例如,若要使用虚拟用户tom能够上传文件、创建目录,而jerry只有默认的下载权限, \
//可以执行以下操作
[root@hanyuce ~]# mkdir /etc/vsftpd/vusers_dir
[root@hanyuce ~]# ll /etc/vsftpd/
总用量 36
-rw------- 1 root root 125 10月 31 2018 ftpusers
-rw------- 1 root root 361 10月 31 2018 user_list
-rw------- 1 root root 5219 7月 29 19:15 vsftpd.conf
-rwxr--r-- 1 root root 338 10月 31 2018 vsftpd_conf_migrate.sh
-rw------- 1 root root 12288 7月 29 19:02 vu.db
-rw------- 1 root root 18 7月 29 18:51 vu.list
drwxr-xr-x 2 root root 6 7月 29 19:21 vusers_dir
//设置haha用户可上传文件、创建目录
[root@hanyuce ~]# echo 'anon_upload_enable=YES' >> /etc/vsftpd/vusers_dir/haha
[root@hanyuce ~]# echo 'anon_mkdir_write_enable=YES' >> /etc/vsftpd/vusers_dir/haha
//设置xixi用户只有默认的下载权限,只需要创建一个名为xixi的空文件即可
[root@hanyuce ~]# touch /etc/vsftpd/vusers_dir/xixi
//注意:虚拟用户是通过匿名访问的,所以必须开启匿名访问功能!!!
//启动服务
[root@hanyuce ~]# systemctl start vsftpd
[root@hanyuce ~]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 *:22 *:*
LISTEN 0 100 127.0.0.1:25 *:*
LISTEN 0 32 :::21 :::*
LISTEN 0 128 :::22 :::*
LISTEN 0 100 ::1:25 :::*
LISTEN 0 80 :::3306 :::*
客户端
服务端给用户haha的权限
[root@hanyuce ~]# cat /etc/vsftpd/vusers_dir/haha
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
anon_umask=022
[root@hyc ~]# yum -y install lftp
登陆用户haha
[root@hyc ~]# lftp -u haha,123 192.168.28.129
lftp haha@192.168.28.129:~> ls
-rw-r--r-- 1 0 0 0 Jul 30 06:38 123
lftp haha@192.168.28.129:/> get 123 从服务端下载文件
[root@hyc ~]# ls
123 daxiong httpd-2.4.34.tar.bz2
222 hanyuce.tar.gz Q
anaconda-ks.cfg httpd-2.4.34
lftp haha@192.168.28.129:/> put 222 上传文件到服务端
lftp haha@192.168.28.129:/> ls
-rw-r--r-- 1 0 0 0 Jul 30 06:38 123
-rw-r--r-- 1 1014 1015 0 Jul 30 06:53 222
lftp haha@192.168.28.129:/> mkdir 333 创建服务端目录
mkdir 成功, 建立 `333'
lftp haha@192.168.28.129:/> ls
-rw-r--r-- 1 0 0 0 Jul 30 06:38 123
-rw-r--r-- 1 1014 1015 0 Jul 30 06:53 222
drwxr-xr-x 2 1014 1015 6 Jul 30 06:55 333
lftp haha@192.168.28.129:/> rm -rf 333 删除服务端目录
rm 成功, 删除 `333'
lftp haha@192.168.28.129:/> ls
-rw-r--r-- 1 0 0 0 Jul 30 06:38 123
-rw-r--r-- 1 1014 1015 0 Jul 30 06:53 222
lftp haha@192.168.28.129:/> mirror -R 789 上传目录到服务端
Total: 1 directory, 0 files, 0 symlinks
lftp haha@192.168.28.129:/> ls
-rw-r--r-- 1 0 0 0 Jul 30 06:38 123
-rw-r--r-- 1 1014 1015 0 Jul 30 06:53 222
drwxr-xr-x 2 1014 1015 6 Jul 30 06:57 789
lftp haha@192.168.28.129:/> mirror 555 从服务端下载目录
Total: 1 directory, 0 files, 0 symlinks
[root@hyc ~]# ls
123 789 hanyuce.tar.gz Q
222 anaconda-ks.cfg httpd-2.4.34
555 daxiong httpd-2.4.34.tar.bz2
登陆用户xixi 用户xixi只有下载权限
lftp xixi@192.168.28.129:/> get 666 从服务端下载文件
[root@hyc ~]# ls
123 789 httpd-2.4.34
222 anaconda-ks.cfg httpd-2.4.34.tar.bz2
555 daxiong Q
666 hanyuce.tar.gz
lftp xixi@192.168.28.129:/> put 999 因为xixi只有下载权限 所有上传失败
put: Access failed: 550 Permission denied. (999)
lftp xixi@192.168.28.129:~> mirror 000 从服务端下载目录
Total: 1 directory, 0 files, 0 symlinks
lftp xixi@192.168.28.129:~> mirror 000
Total: 1 directory, 0 files, 0 symlinks
匿名用户
修改 /etc/vsftpd/vsftp.conf 文件:(建议复制一个备份文件在同一目录下,以防直接修改错误,而无法恢复。)
//例如匿名用户有创建目录和上传文件的权限
[root@hanyuce ~]# echo 'anon_mkdir_write_enable=YES' >>/etc/vsftpd/vsftpd.conf
[root@hanyuce ~]# echo 'anon_upload_enable=YES' >>/etc/vsftpd/vsftpd.conf
[root@hanyuce ~]# tail /etc/vsftpd/vsftpd.conf
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
guest_enable=YES
guest_username=vftp
user_config_dir=/etc/vsftpd/vusers_dir
allow_writeable_chroot=YES
anon_mkdir_write_enable=YES
anon_upload_enable=YES
[root@hanyuce ~]# systemctl restart vsftpd
//将/var/ftp/ 目录权限改为777
[root@hanyuce ~]# chmod -R 777 /var/ftp
客户端验证
服务端匿名用户文件权限必须为777 /var/ftp
[root@hyc ~]# lftp -u ftp 192.168.28.129
口令:
lftp ftp@192.168.28.129:~> ls
-rwxrwxrwx 1 0 0 0 Jul 31 10:21 123
drwxrwxrwx 2 0 0 6 Oct 30 2018 pub
从服务端下载文件
lftp ftp@192.168.28.129:/> get 123
lftp ftp@192.168.28.129:/> quit
[root@hyc ~]# ls
123 hanyuce.tar.gz Q
anaconda-ks.cfg httpd-2.4.34
daxiong httpd-2.4.34.tar.bz2
上传文件到服务端
lftp ftp@192.168.28.129:/> put 555
lftp ftp@192.168.28.129:/> ls
-rwxrwxrwx 1 0 0 0 Jul 31 10:21 123
-rw------- 1 14 50 0 Jul 31 10:42 555
drwxrwxrwx 2 0 0 6 Oct 30 2018 pub
服务端创建目录
lftp ftp@192.168.28.129:/> mkdir 888
mkdir 成功, 建立 `888'
lftp ftp@192.168.28.129:/> ls
-rwxrwxrwx 1 0 0 0 Jul 31 10:21 123
-rw------- 1 14 50 0 Jul 31 10:42 555
drwx------ 2 14 50 6 Jul 31 10:43 888
drwxrwxrwx 2 0 0 6 Oct 30 2018 pub
//删除文件会失败因为没有删除的权限
lftp ftp@192.168.28.129:/> rm -rf 123
lftp ftp@192.168.28.129:/> ls
-rwxrwxrwx 1 0 0 0 Jul 31 10:21 123
-rw------- 1 14 50 0 Jul 31 10:42 555
drwx------ 2 14 50 6 Jul 31 10:43 888
drwxrwxrwx 2 0 0 6 Oct 30 2018 pub
系统用户
修改 /etc/vsftpd/vsftp.conf 文件
[root@hanyuce ~]# echo 'chroot_local_user=YES' >>/etc/vsftpd/vsftpd.conf
[root@hanyuce ~]# echo 'chroot_list_enable=YES' >>/etc/vsftpd/vsftpd.conf
[root@hanyuce ~]# echo 'chroot_list_file=/etc/vsftpd/chroot_list' >>/etc/vsftpd/vsftpd.conf
//在 /etc/vsftpd 目录下建立chroot_liste文件,将用户名添加进去
[root@hanyuce ~]# touch /etc/vsftpd/chroot_list
[root@hanyuce ~]# echo 'haha' >/etc/vsftpd/chroot_list
[root@hanyuce ~]# usermod haha -d /data
//客户端验证:
//系统用户登录
[root@hyc ~]# lftp -u haha,123 192.168.28.129
lftp haha@192.168.28.129:~> ls
-rw-r--r-- 1 0 0 0 Jul 31 08:04 123
上传文件到服务端
lftp haha@192.168.28.129:~> put 555
lftp haha@192.168.28.129:~> ls
-rw-r--r-- 1 0 0 0 Jul 31 08:04 123
-rw-r--r-- 1 1014 1015 0 Jul 31 10:57 555
从服务端下载文件
lftp haha@192.168.28.129:/> get 777
[root@hyc ~]# ls
123 444 anaconda-ks.cfg hanyuce.tar.gz
234 777 daxiong Q
服务端创建
lftp haha@192.168.28.129:/> mkdir 999
mkdir 成功, 建立 `999'
lftp haha@192.168.28.129:/> ls
-rw-r--r-- 1 0 0 0 Jul 31 10:55 123
-rw-r--r-- 1 0 0 0 Jul 31 10:58 777
drwxr-xr-x 2 1014 1015 6 Jul 31 11:09 999
删除服务端文件
lftp haha@192.168.28.129:/> rm -rf 123
rm 成功, 删除 `123'
lftp haha@192.168.28.129:/> ls
-rw-r--r-- 1 0 0 0 Jul 31 10:58 777
drwxr-xr-x 2 1014 1015 6 Jul 31 11:09 999
从服务端下载目录
lftp haha@192.168.28.129:~> mirror 999
Total: 1 directory, 0 files, 0 symlinks
lftp haha@192.168.28.129:/> quit
[root@hyc ~]# ls
123 444 999 daxiong Q
234 777 anaconda-ks.cfg hanyuce.tar.gz
上传目录到服务端
lftp haha@192.168.28.129:~> mirror -R 444
Total: 1 directory, 0 files, 0 symlinks
lftp haha@192.168.28.129:/> ls
drwxr-xr-x 2 1014 1015 6 Jul 31 11:11 444
-rw-r--r-- 1 0 0 0 Jul 31 10:58 777
drwxr-xr-x 2 1014 1015 6 Jul 31 11:09 999
标签:FTP,lftp,Markdown,服务,etc,192.168,hanyuce,vsftpd,root 来源: https://blog.csdn.net/hanyuce/article/details/98104295