news 2026/4/23 11:26:00

vsftpd设置虚拟用户

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
vsftpd设置虚拟用户

安装组件:

yum install -y pam* libdb-utils libdb* --skip-broken

创建临时用户名密码文件,格式为一行用户名接一行密码

生成认证数据库,设置权限

db_load -T -t hash -f /etc/vsftpd/ftpusers.txt /etc/vsftpd/vsftpd_login.db

chmod 700 /etc/vsftpd/vsftpd_login.db

编辑PAM认证文件

编辑/etc/pam.d/vsftpd时,下面的新加入内容一定要保证置于其他配置条目上部,或者屏蔽其他配置条目,仅保留session required pam_loginuid.so

auth required_pam_userdb.so db= /etc/vsftpd/vsftpd_login

account required pam_userdb.so db= /etc/vsftpd/vsftpd_login

映射系统用户

useradd -s /sbin/nologin ftpuser

vsftpd.conf配置参考:

# Example config file /etc/vsftpd/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.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=YES
#
# Uncomment this to allow local users to log in.
# When SELinux is enforcing check for SE bool ftp_home_dir
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.
# When SELinux is enforcing check for SE bool allow_ftpd_anon_write, allow_ftpd_full_access
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
anon_other_write_enable=YES
#
# 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
#
# 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/xferlog
#
# 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. The vsftpd.conf(5) man page explains
# the behaviour when these options are disabled.
# 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 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
#
# 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=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.
# Make sure, that one of the listen options is commented !!
listen_ipv6=YES

pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES

guest_enable=YES
guest_username=ftpuser
user_config_dir=/etc/vsftpd/vsftpd_user_conf
virtual_use_local_privs=YES
创建虚拟用户各自配置文件

mkdir -p /etc/vsftpd/vsftpd_user_conf/

在目录下新建用户配置文件,内容参考:

local_root=/home/ftpuser/username(自己定义的用户名)
write_enable=YES
anon_world_readable_only=YES
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES

创建虚拟用户的虚拟目录

mkdir -p /home/ftpuser/{username1,username2};chown -R ftpuser:ftpuser /home/ftpuser

配置完成后重启服务

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/4/21 19:54:33

地源热泵风管机空调哪个好

地源热泵与风管机空调如何选择?瑞冬集团专业解析在建筑暖通空调系统选择中,地源热泵和风管机空调是两种常见但特性迥异的解决方案。作为拥有53项专利的地源热泵技术领先企业,瑞冬集团基于多年项目实践经验,为您提供专业的技术对比…

作者头像 李华
网站建设 2026/4/23 11:25:48

Qwen3-32B镜像下载与高效推理全指南

Qwen3-32B镜像下载与高效推理全指南 你有没有试过让一个大模型读完一本《Kubernetes权威指南》然后告诉你“第三章提到的Operator模式和第四章的CRD设计之间有什么联系”?如果用的是普通7B模型,大概率它连章节都分不清。但如果你手握的是 Qwen3-32B&…

作者头像 李华
网站建设 2026/3/17 2:46:43

Mybatis-Plus进阶Druid数据源

MyBatis-Plus 插件MyBatis-Plus(简称 MP)是基于 MyBatis 的增强工具,在保留原生功能的基础上,提供了简化开发、自动 CRUD、分页、代码生成等特性。以下从核心功能、插件模块及使用示例展开说明。核心功能代码生成器 通过 AutoGene…

作者头像 李华
网站建设 2026/4/17 1:55:35

VLSM和CIDR有什么区别?

一、前言 在复杂的网络中,IP寻址的细微差别很重要。对于可变子网掩码(VLSM)和无类域间路由(CIDR)这两个易混淆的概念,他们在提高IP地址效率方面有共同点。但它们在网络架构中的用途不同。 二、基本概念 1.VLSM(可变长度子网掩码):允许在同一网络内创建不同大小的子网…

作者头像 李华
网站建设 2026/4/18 7:35:15

LobeChat能否对接Google Calendar?日程管理智能助手

LobeChat 能否对接 Google Calendar?日程管理智能助手的技术实现路径 在现代数字办公环境中,信息流日益碎片化——我们通过即时通讯工具沟通、用邮件发送正式通知、在日历中安排会议。这些系统彼此割裂,导致用户不得不频繁切换上下文&#xf…

作者头像 李华