【linux】Debian10.0配置vsftpd

一、基本步骤

在 Debian 10 (Buster) 上要配置 vsftpd (Very

Secure FTP Daemon),请按照以下步骤操作:

1. 安装 vsftpd:

sudo apt update
sudo apt install vsftpd

2. 在启动配置之前,建议备份原始的配置文件:

sudo cp /etc/vsftpd.conf /etc/vsftpd.conf.orig

3. 使用文本编辑器编辑 vsftpd 配置文件:

sudo nano /etc/vsftpd.conf

或者

sudo vi /etc/vsftpd.conf

根据你的喜好选择编辑器。

4. 修改配置文件中的条目来设置你的 FTP 服务器。以下是一些常见配置参数的说明和示例:

- 匿名访问:

anonymous_enable=NO

通常会禁用匿名访问,以提高安全性。

- 本地用户登录:

local_enable=YES

允许本地用户登录。

- 写权限:

write_enable=YES

为已认证用户启用上传/写入权限。

- 本地用户根目录限制 (chroot jail):

chroot_local_user=YES

将用户限制在其主目录中。

- 文件上传的默认权限:

local_umask=022

新上传的文件默认权限设置。

- PASV 模式配置:

pasv_enable=YES
pasv_min_port=40000
pasv_max_port=50000

为 PASV 模式指定端口范围。

- 端口模式支持:

port_enable=YES

允许使用端口模式 (PORT)。

- FTP 用户登录后的欢迎信息:

ftpd_banner=Welcome to My FTP service.

自定义登录后显示的欢迎信息。

5. 保存并关闭配置文件。

6. 重启 vsftpd 服务以应用更改:

sudo systemctl restart vsftpd

7. 如果有防火墙(如 ufw),请确保开放 FTP 所使用的端口:

sudo ufw allow 20/tcp
sudo ufw allow 21/tcp
sudo ufw allow 40000:50000/tcp
sudo ufw reload

8. 确保用户的主目录或指定的 FTP 服务器的根目录具有正确的权限。

如果你打算使用 vsftpd 作为安全 FTP 服务器,并且需要支持 FTPS (FTP over SSL/TLS),你还可以配置 SSL/TLS 相关的设置,如下所示:

- 在 /etc/vsftpd.conf 文件中添加以下行启用 SSL:

ssl_enable=YES
allow_anon_ssl=NO
force_local_data_ssl=YES
force_local_logins_ssl=YES

- 设置 SSL 证书和密钥的位置:

rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key

这里使用的是自签证书,对于生产环境,应考虑购买或使用 Let's Encrypt 等服务免费获得证书。

- 重启 vsftpd 使 SSL 配置生效:

sudo systemctl restart vsftpd

以上是基本的 vsftpd 安装和配置步骤。

二、一个配置实例

1. 配置文件/etc/vsftpd.conf :

# Example config file /etc/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
#
# Run standalone?  vsftpd can run either from an inetd or as a standalone
# daemon started from an initscript.
listen=NO
#
# This directive enables listening on IPv6 sockets. By default, listening
# on the IPv6 "any" address (::) will accept connections from both IPv6
# and IPv4 clients. It is not necessary to listen on *both* IPv4 and IPv6
# sockets. If you want that (perhaps because you want to listen on specific
# addresses) then you must run two copies of vsftpd with two configuration
# files.
listen_ipv6=YES
#
# Allow anonymous FTP? (Disabled by default).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# 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
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# If enabled, vsftpd will display directory listings with the time
# in  your  local  time  zone.  The default is to display GMT. The
# times returned by the MDTM FTP command are also affected by this
# option.
use_localtime=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
#
# 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_username=whoever
#
# You may override where the log file goes if you like. The default is shown
# below.
#xferlog_file=/var/log/vsftpd.log
#
# If you want, you can have your log file in standard ftpd xferlog format.
# Note that the default log file location is /var/log/xferlog in this case.
#xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=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
#
# 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
#
# You may fully customise the login banner string:
ftpd_banner=Welcome to blah FTP service.
#
# 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 restrict local users to their home directories.  See the FAQ for
# the possible risks in this before using chroot_local_user or
# chroot_list_enable below.
#chroot_local_user=YES
#
# 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().
# (Warning! chroot'ing can be very dangerous. If using chroot, make sure that
# the user does not have write access to the top level directory within the
# chroot)
#chroot_local_user=YES
#chroot_list_enable=YES
# (default follows)
#chroot_list_file=/etc/vsftpd.chroot_list
#
# 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
#
# Customization
#
# Some of vsftpd's settings don't fit the filesystem layout by
# default.
#
# This option should be the name of a directory which is empty.  Also, the
# directory should not be writable by the ftp user. This directory is used
# as a secure chroot() jail at times vsftpd does not require filesystem
# access.
secure_chroot_dir=/var/run/vsftpd/empty
#
# This string is the name of the PAM service vsftpd will use.
pam_service_name=vsftpd
#
# This option specifies the location of the RSA certificate to use for SSL
# encrypted connections.
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
ssl_enable=NO

#
# Uncomment this to indicate that vsftpd use a utf8 filesystem.
#utf8_filesystem=YES

port_enable=YES

2. 重启 vsftpd 服务

sudo systemctl restart vsftpd

3. 测试

用linux系统用户/密码登录,上传文件到/dev/shm目录,再下载文件到本地,传输成功。

三、配置可登录的用户名和密码并指定用户的根目录

要配置可登录的用户名和密码并指定用户的根目录,需要按照以下步骤配置 vsftpd

1. 创建 FTP 用户:

   - 创建一个新的系统用户,用于 FTP 登录。

sudo adduser ftpusername

     这将创建一个新用户 ftpusername 并提示你为该用户设置密码。

2. 配置用户的根目录:

   - 可以指定用户的家目录作为FTP的根目录,这通常在创建用户时就设定好了。例如,如果用户是 ftpusername,他们的家目录通常是 /home/ftpusername
   - 如果想改变这个目录或者创建一个特别的FTP根目录,可以使用以下命令:

     sudo mkdir /home/ftp/ftpusername  # 创建FTP根目录
     sudo chown ftpusername:ftpusername /home/ftp/ftpusername  # 将目录所有权分配给用户

   - 更改用户的主目录(如果需要):

sudo usermod -d /home/ftp/ftpusername ftpusername

3. 配置 vsftpd 以使用本地用户认证:

   - 编辑 vsftpd 配置文件 vsftpd.conf,通常位于 /etc/vsftpd.conf

sudo nano /etc/vsftpd.conf

   - 确保以下行未被注释(去掉行首的 #)或者被正确设置:

     local_enable=YES
     chroot_local_user=YES

     这两行的设置会启用本地用户认证,并且将用户限制在各自的家目录中。

4. 指定用户的根目录:

   - 在 vsftpd 中,可以设置 chroot 环境,这将限制用户在他们的家目录中活动。如果还未配置 chroot_local_user,可以添加或修改以下配置:

     user_sub_token=$USER
     local_root=/home/ftp/$USER

这样设置后,`$USER` 将会被替换为登录的用户名,从而将该用户限制在 /home/ftp/<用户名> 目录中。

5. 重启 vsftpd 服务:

   - 保存更改并退出编辑器,重启 vsftpd 以应用更改。

sudo systemctl restart vsftpd

6. 设置防火墙规则:

   - 如果使用防火墙,确保开放 21 端口以允许 FTP 流量。

sudo ufw allow 21/tcp

在这些设置之后,应该能够使用刚刚创建的 ftpusername 和对应的密码通过 FTP 客户端登录,并且用户将被限制在指定的根目录内。

四、虚拟用户登录

在 Debian 中使用 vsftpd (Very Secure FTP Daemon) 还可以配置使其允许虚拟用户登录,这些虚拟用户并不是系统用户。要做到这一点,可以使用 PAM (Pluggable Authentication Modules) 来进行认证,并结合使用如 db4-utils 或者 libpam-pwdfile 等工具来管理虚拟用户的账户信息。

下面是使用 libpam-pwdfile 模块设置虚拟用户的基本步骤:

1. 安装 libpam-pwdfile:

   sudo apt-get update
   sudo apt-get install libpam-pwdfile

2. 配置 vsftpd 开启虚拟用户模式:

   编辑配置文件 /etc/vsftpd.conf,在文件中添加或修改以下选项:

   anonymous_enable=NO
   local_enable=YES
   write_enable=YES
   local_umask=022
   nopriv_user=vsftpd
   virtual_use_local_privs=YES
   guest_enable=YES
   user_sub_token=$USER
   local_root=/home/vsftpd/$USER
   chroot_local_user=YES
   hide_ids=YES
   guest_username=vsftpd
   pam_service_name=vsftpd

   这个配置将会启用虚拟用户模式,并且虚拟用户将会被映射到本地用户 vsftpd。此外,还将设置每个虚拟用户的家目录为 /home/vsftpd/$USER,其中 $USER 会被替换为虚拟用户名。

3. 配置 PAM 以使用 pwdfile:

   创建 PAM 配置文件 /etc/pam.d/vsftpd,里面包含如下内容以使用 libpam-pwdfile 进行用户验证:

   auth    required    pam_pwdfile.so pwdfile /etc/vsftpd/ftpd.passwd
   account required    pam_permit.so

   这里的 /etc/vsftpd/ftpd.passwd 是用来存储虚拟用户信息的文件。

4. 创建虚拟用户和密码文件:

   创建上述文件并添加用户,并且使用 htpasswd 命令(通常包含于 apache2-utils 包)来创建和管理密码文件。例如,创建一个名为 user1 的虚拟用户:

sudo htpasswd -cd /etc/vsftpd/ftpd.passwd user1

   -c 选项用于创建文件,如文件已存在请不要使用此选项,因为它会导致文件被覆盖。 -d 选项用于使用 crypt() 加密密码。

5. 创建映射本地用户与用户家目录:

   创建映射到虚拟用户的本地用户(如果尚未创建):

sudo useradd --home /home/vsftpd --gid nogroup -m --shell /bin/false vsftpd

   并为每个虚拟用户创建家目录:

   sudo mkdir /home/vsftpd/user1
   sudo chown vsftpd:nogroup /home/vsftpd/user1

6. 重启 vsftpd:

sudo systemctl restart vsftpd

现在,虚拟用户 user1 此时应该可以使用之前设置的密码通过 FTP 连接到服务器,而且没有一个对应的系统用户与其相关联。需要注意的是,此种方式并不是最安全的方式,且管理多个虚拟用户时会有些繁琐。在使用虚拟用户时,确保使用 SSL/TLS 等方式保护传输的数据,防止凭证泄露。

五、图形界面ftp服务器

在 Debian 10 (Buster) 上,默认并没有带有图形用户界面(GUI)的 FTP 服务器,因为大多数 FTP 服务器都是以命令行界面 (CLI) 形式运行的守护进程(例如 vsftpd, proftpd, pure-ftpd 等)。然而,可以使用一些具有图形界面的工具来管理和配置你的 FTP 服务器。以下是一些可选方案:

1. GAdmin-ProFTPD:

   GAdmin-ProFTPD 是一个基于 GTK+ 的图形界面,用于管理 ProFTPD 服务器。尽管它的更新可能不太频繁,但它可能在 Debian 10 的仓库中可用。可以通过执行以下命令尝试安装它:

   sudo apt update
   sudo apt install gadmin-proftpd

   安装完成后,可以从应用菜单中找到 GAdmin-ProFTPD 并运行它以配置 ProFTPD 服务器。

2. Webmin:

   Webmin 是一个基于 web 的系统管理界面,它允许通过浏览器管理服务器。Webmin 支持许多服务的管理,其中包括 ProFTPD 和 vsftpd。通过使用 Webmin,可以以图形方式配置 FTP 服务器而无需直接编辑配置文件。

   要在 Debian 10 上安装 Webmin,可能需要下载 Webmin 的 .deb 包或者添加 Webmin 的官方仓库到系统中。可以在 [Webmin 的官方网站](https://www.webmin.com/deb.html)上找到更多安装说明。

3. FileZilla:

   虽然 FileZilla 是一款流行的 FTP 客户端软件,但它也可以用来管理 FTP 服务器,尽管它不提供 FTP 服务本身。可以使用 FileZilla 连接到任何 FTP 服务器,并获取一个友好的界面来上传、下载和管理文件。可以通过以下命令在 Debian 10 上安装 FileZilla 客户端:

   sudo apt update
   sudo apt install filezilla

如果重点是在图形界面下轻松管理 FTP 服务,推荐尝试 Webmin,因为它集成了丰富的功能同时又比较容易安装和使用。对于只需偶尔手动管理文件的情况,标准的 FileZilla 客户端就足够用了。

六、相关链接

ubuntu16启动vsftpd服务_ubuntu16配置vsftpd-CSDN博客

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/330251.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

2024美赛数学建模思路 - 案例:ID3-决策树分类算法

文章目录 0 赛题思路1 算法介绍2 FP树表示法3 构建FP树4 实现代码 建模资料 0 赛题思路 &#xff08;赛题出来以后第一时间在CSDN分享&#xff09; https://blog.csdn.net/dc_sinor?typeblog 1 算法介绍 FP-Tree算法全称是FrequentPattern Tree算法&#xff0c;就是频繁模…

[晓理紫]每日论文分享(有中文摘要,源码或项目地址)--具身智能、强化学习

专属领域论文订阅 VX关注 晓理紫&#xff0c;每日更新论文&#xff0c;如感兴趣&#xff0c;请转发给有需要的同学&#xff0c;谢谢支持 分类: 大语言模型LLM视觉模型VLM扩散模型视觉导航具身智能&#xff0c;机器人强化学习开放词汇&#xff0c;检测分割 [晓理紫]每日论文分享…

【机器学习300问】9、梯度下降是用来干嘛的?

当你和我一样对自己问出这个问题后&#xff0c;分析一下&#xff01;其实我首先得知道梯度下降是什么&#xff0c;也就它的定义。其次我得了解它具体用在什么地方&#xff0c;也就是使用场景。最后才是这个问题&#xff0c;梯度下降有什么用&#xff1f;怎么用&#xff1f; 所以…

02--数据库事务

1、数据库事务 1.1 数据库事务介绍 事务&#xff1a;一组逻辑操作单元,使数据从一种状态变换到另一种状态。 事务处理&#xff08;事务操作&#xff09;&#xff1a;保证所有事务都作为一个工作单元来执行&#xff0c;即使出现了故障&#xff0c;都不能改变这种执行方式。当…

【分布式技术】分布式存储ceph之RGW接口

目录 1、对象存储概念 2、创建 RGW 接口 //在管理节点创建一个 RGW 守护进程 #创建成功后默认情况下会自动创建一系列用于 RGW 的存储池 #默认情况下 RGW 监听 7480 号端口 //开启 httphttps &#xff0c;更改监听端口 #更改监听端口 ​ //创建 RadosGW 账户 …

STM32F103标准外设库——中断应用/事件控制器(六)

个人名片&#xff1a; &#x1f981;作者简介&#xff1a;一名喜欢分享和记录学习的在校大学生 &#x1f42f;个人主页&#xff1a;妄北y &#x1f427;个人QQ&#xff1a;2061314755 &#x1f43b;个人邮箱&#xff1a;2061314755qq.com &#x1f989;个人WeChat&#xff1a;V…

【记录】解决 git 仓库突然出现连接失败

问题描述 今天在 push 代码代码的时候突然发现无法 push(但是我可以正常打开 Gihub)&#xff0c;这可不行&#xff0c;我可是 git 的重度使用者&#x1f60d;&#xff0c;我所有的代码都托管在了 Github 上&#xff0c;没有它我的日子怎么活啊&#xff01;&#xff01;&#x…

Unity向量叉乘

叉乘计算公式 Unity中叉乘计算 Vector3.Cross(A.position, B.position); 几何意义 假设向量A和B 都在XZ平面上 向量A叉乘向量B y大于0 证明 B在A右侧 y小于0 证明 B在A左侧 示例 Vector3 C Vector3.Cross(A.position, B.position); if(C.y > 0) {print("B在A右侧&qu…

【不需要网络不需要显卡】本地部署GPT

【不需要网络/不需要显卡】本地部署GPT 大家好&#xff0c;我是老 J 我们都知道ChatGPT目前只有两种使用方式&#xff0c;一种是直接去官网访问&#xff0c;适合个人用户&#xff1b;另一种是API调用&#xff0c;适合企业或者网站使用。这两种方式的门槛都比较高&#xff0c;…

修改iview的表格table展开的默认icon和样式

修改前 修改后 修改内容 .title_label_list .ivu-icon-ios-add{font-size: 26px;color: #888888; } .title_label_list .ivu-icon-ios-add:hover{color: #11AAAA; } .title_label_list .ivu-icon-ios-add:before {content: "\F341"; } .title_label_list .ivu-icon-…

【论文阅读】Deep Graph Contrastive Representation Learning

目录 0、基本信息1、研究动机2、创新点3、方法论3.1、整体框架及算法流程3.2、Corruption函数的具体实现3.2.1、删除边&#xff08;RE&#xff09;3.2.2、特征掩盖&#xff08;MF&#xff09; 3.3、[编码器](https://blog.csdn.net/qq_44426403/article/details/135443921)的设…

请卸载这 12 个被淘汰的 VS Code 插件

你好&#xff0c;我是坚持分享干货的 EarlGrey&#xff0c;翻译出版过《Python编程无师自通》、《Python并行计算手册》等技术书籍。 如果我的分享对你有帮助&#xff0c;请关注我&#xff0c;一起向上进击。 本周赠书福利&#xff0c;点此查看详情 随着 VS Code 的发展&#x…

Springboot 子工程构建完后无法找到springboot依赖

问题: 构建完子工程后无法找到SpringBootTest 解决方案: 最好用这个构建 https://www.cnblogs.com/he-wen/p/16735239.html 1.先观察项目目录 是否正确 2.观察子工程目录 3.看pom.xml中是否引用springboot依赖 4.检查代码 查看父项目是否包含子模块 查看子模块的父项目是否…

新手基础易懂的创建javaweb项目的方法(适用于IDEA 2023版)

新手基础易懂的创建javaweb项目的方法 前言我的IDEA版本新建项目步骤1步骤2步骤3步骤4步骤5步骤6<font colorred>特别注意&#xff0c;一定要注意步骤7步骤8 配置Tomcat服务器步骤9步骤10步骤11步骤12步骤13修改前修改后 步骤14 点击修复修改前修改后 试运行 前言 创建ja…

利用IP应用场景API识别真实用户

引言 在当今数字化时代&#xff0c;随着互联网的普及和应用的广泛&#xff0c;验证用户身份的重要性变得越来越突出。在许多场景中&#xff0c;特别是在涉及安全性、用户体验以及个人隐私保护方面&#xff0c;确定用户的真实身份至关重要。而IP应用场景API则是一种强大的工具&…

error warning

&#xff08;持续更新&#xff09; 1、error C1189 错误 1 error C1189: #error : Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d] c:\program files (x86)\microsoft vi…

【ROS2-基于地图的定位 AMCL】-1 基本理念

所有内容请查看&#xff1a;博客学习目录_Howe_xixi的博客-CSDN博客 飞书原文档请联系我

IO网络编程Day4

广播 #include<myhead.h>int main(int argc, const char *argv[]) {//1、创建套接字int sfd socket(AF_INET, SOCK_DGRAM, 0);if(sfd -1){perror("socket error");return -1;}//2、将套接字设置成允许广播int broadcast 1;if(setsockopt(sfd, SOL_SOCKET, …

Jupyter Notebook五分钟基础速通

1 作用 常用于数据分析 2 安装 2.1 Anaconda 通过直接安装Anaconda&#xff0c;会自动安装Jupyter Notebook 2.2 命令行安装 ① 3.x版本 pip3 install --upgrade pip pip3 install jupyter ② 2.x版本 pip install --upgrade pip pip install jupyter 3 启动 cmd窗口下…

国标GB28181安防视频监控EasyCVR级联后上级平台视频加载慢的原因排查

国标GB28181协议安防视频监控系统EasyCVR视频综合管理平台&#xff0c;采用了开放式的网络结构&#xff0c;可以提供实时远程视频监控、视频录像、录像回放与存储、告警、语音对讲、云台控制、平台级联、磁盘阵列存储、视频集中存储、云存储等丰富的视频能力&#xff0c;同时还…