vsftpd 虚拟用户配置-程序员宅基地

技术标签: 运维  开发工具  操作系统  

1. #yum install vsftpd

2.#user add -s /sbin/nologin web  //添加一个用于ftp的主用户

3.
cd /etc/vsftpd
vi vftpuser.txt
#写入虚拟用户名和密码,一行用户名,一行密码,多用户依此类推
admin
admin
#这里添加了一个admin用户密码是admin
4.
#db_load –T –t hash –f /etc/vsftpd/vftpuser.txt /etc/vsftpd/vftpuser.db
#如果db_load用不了,请yum install db4-utils
5.
#vi /etc/pam.d/vsftpd
将所有行注释或删除掉,添加两行:
auth required /lib/security/pam_userdb.so db=/etc/vsftpd/vftpuser
account required /lib/security/pam_userdb.so db=/etc/vsftpd/vftpuser
#注意,如果是64位系统,这里/lib/要改成/lib64/

6.
#vi vsftpd.conf

添加:
guest_enable=YES 
#开启虚拟用户
guest_username=vftpuser
#FTP虚拟用户对应的系统用户
user_config_dir=/etc/vsftpd/vsftpd_user_conf
#用户独立配置文件所在目录
wq保存退出,附上测试自己用的vsftpd.conf文件,在最下面
7.
#mkdir  vsftpd_user_conf
#cd vsftpd_user_conf
#vi admin
#这里新建配置文件名和你添加的虚拟用户名保持一致
写入:
write_enable=YES
anon_world_readable_only=NO
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
virtual_use_local_privs=YES
chmod_enable=YES
#默认虚拟用户宿主目录就是web用户的目录,如果需要将虚拟用户绑定到指定目录添加以下
local_root=/home/wwwroot/admin

wq保存退出

8.
#mkdir /home/wwwroot/admin
#chown -R web:web /home/wwwroot/admin
#chmod -R 755 /home/wwwroot/admin

9.#service vsftpd restart

10.特殊情况
如果出现无法登陆的情况,请先关闭selinux
set enforce 0
当然,最好手动配置selinux,这样比较安全。
#getsebool -a|grep ftp
ftpd_disable_trans --> off
或者
ftp_home_dir-->off 

# setsebool -P ftpd_disable_trans 1
或者
# setsebool -P ftp_home_dir 1

11.限制虚拟用户只能在自己的目录内"活动"
#vi /etc/vsfptd/vsftpd.conf
找到以下几个配置项,将注释取消掉,意思是除了chroot_list里的用户可以随意“活动”,其他用户只能在自己家里"活动",设置各个虚拟用户"家目录"的方法在第7步已经说明local_root参数

chroot_local_user=YES

chroot_list_enable=YES

chroot_list_file=/etc/vsftpd/chroot_list

#wq
#vi /etc/vsftpd/chroot_list
#wq
#service vsftpd restart


附录:

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=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
#
# The target log file can be vsftpd_log_file or xferlog_file.
# This depends on setting xferlog_std_format parameter
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
#
# The name of log file when xferlog_enable=YES and xferlog_std_format=YES
# WARNING - changing this filename affects /etc/logrotate.d/vsftpd.log
#xferlog_file=/var/log/xferlog
#
# Switches between logging into vsftpd_log_file and xferlog_file files.
# NO writes to vsftpd_log_file, YES to xferlog_file
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 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_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=YES
#
# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
# sockets, 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=web
user_config_dir=/etc/vsftpd/vsftpd_user_conf




   

转载于:https://my.oschina.net/cxz001/blog/125542

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_34345753/article/details/91759509

智能推荐

移植Ubuntu-base-14.04到firefly-rk3288的开发板上_rk3328 ubuntu-base desktop-程序员宅基地

文章浏览阅读3.3k次,点赞3次,收藏9次。1.先从官方上获取ubuntu core的tar包:$ wget http://cdimage.ubuntu.com/ubuntu-base/releases/14.04/release/ubuntu-base-14.04-core-armhf.tar.gz2.下载完后,解压到rootfs/ubuntu目录:$ mkdir ubuntu$ sudo tar -xpf ubunt..._rk3328 ubuntu-base desktop

python编写时怎么换行_python换行-程序员宅基地

文章浏览阅读6.8k次,点赞2次,收藏4次。我们学习Python必然是为了找到高薪的工作,下面这些面试题是来自阿里、腾讯、字节等一线互联网大厂最新的面试资料,并且有阿里大佬给出了权威的解答,刷完这一套面试资料相信大家都能找到满意的工作。当我学到一定基础,有自己的理解能力的时候,会去阅读一些前辈整理的书籍或者手写的笔记资料,这些笔记详细记载了他们对一些技术点的理解,这些理解是比较独到,可以学到不一样的思路。Python所有方向的技术点做的整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照上面的知识点去找对应的学习资源,保证自己学得较为全面。_python换行

最小凸包算法-程序员宅基地

文章浏览阅读608次。使用Graham扫描法进新解决最小凸包问题先找到最左下端点然后根据极角来进行逆时针排序在根据相对极角增减来去除不需要的点C++代码 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5..._echarts 凸包算法

mac安装python第三方库无法使用~_mac pycharm pypdf2库 运行0%-程序员宅基地

文章浏览阅读2k次,点赞3次,收藏6次。今天终于把接口自动化框架的方法封装成包,可以使用pip命令进行安装啦,灰常开心~but安装成功后发现无法使用~想哭经过各种查阅才发现原因有两点,使用pip命令安装的版本不对。pip安装地目录和项目里的第三方库路径不一致导致。首先针对第一点先排查电脑安装了几个python?mac自带python2,而你又安装了python3,那么使用pip 安装第三方库,默认安装到python2下~所以:只有一个python,直接使用pip安装没问题,但是如果既有python2又有python3,而你_mac pycharm pypdf2库 运行0%

postman本地测试接口的地址路径,如何获取和拼接_postman的地址怎么查-程序员宅基地

文章浏览阅读1.7w次,点赞14次,收藏48次。首先,在本地进行接口自测,那么就是本地的ip,既:http://localhost,其他就是其他的ip地址。接着是端口号以及所添加的共用路径,我们可以从springboot项目的配置文件application.yml获取,找到server: # 服务器的HTTP端口,默认为8081 port: 8202 servlet: # 应用的访问路径 context-path: /avrs这里的port就是端口号,context-path则是共用路径,此时的路径就拼接._postman的地址怎么查

随便推点

vsc 的c环境配置_vsc apt-程序员宅基地

文章浏览阅读1.1k次。vsc配置docker容器中的c环境环境:ubuntu,vsc,g++&gcc&gdb(确保有以上的GUN工具,没有安装的可以通过apt安装)创建工程文件夹(test)使用vsc打开该文件夹,在该文件夹中添加hello.c文件,编写简单程序,并通过gcc -g -o hello hello.c编译c文件,生成hello二进制可运行文件,可以使用./hello直接运行该文件。vsc配置在vsc的扩展中安装C/C++安装后按f5,选择C++(GDB/LLDB),选择默认配置,_vsc apt

MySQL获取当前日期、时间、时间戳的函数sysdate()、now()、current_timestamp()、localtimestamp()、localtime()对比,区别、异同点_sysdate和now-程序员宅基地

文章浏览阅读5.5w次,点赞9次,收藏5次。【代码】MySQL获取当前日期、时间、时间戳的函数sysdate()、now()、current_timestamp()、localtimestamp()、localtime()对比,区别、异同点。_sysdate和now

【RecyclerView】【Glide】列表加载多图卡顿_recyclerview+glide 卡顿-程序员宅基地

文章浏览阅读3.1k次。记录一次列表加载很多图片时卡顿的问题现象:仿微信朋友圈列表,多图九宫格布局,随着加载数据的增加,列表越来越卡顿,但是再次刷新之后,列表重归流畅问题猜测及尝试解决:1.图片缓存增多:采用图片加载栈缓存清除+预加载方案,实测效果并不理想,非本质问题2.图片缩放处理:调用override() 方法,对图片进行压缩,实测确实有效果,单还会有卡顿现象,增大压缩率后,卡顿现象确实有很大的优化,但是伴随的却是列表中的图片非常模糊.....3.图片的圆角处理:在咨询了一位安卓大佬后,提出了把图片的._recyclerview+glide 卡顿

Tomcat 8(二)server.xml详解_tomcat8 server.xml-程序员宅基地

文章浏览阅读1.6k次。Tomcat服务器是由一系列可配置的组件构成的,其中核心组件是Catalina Servlet,它是最顶层组件。Tomcat的各组件是在server.xml(CATALINA_HOME\conf\server.xml)配置的Tomcat各组件关系图1. ServerServer即Catalina servlet组件,它是server.xml的最外层元素常用属性:Ad_tomcat8 server.xml

day48:54. 二叉搜索树的第k大节点(递归)_给一个二叉查找树(bst),找出第 k 大的值,递归讲解-程序员宅基地

文章浏览阅读201次。问题描述:给定一棵二叉搜索树,请找出其中第k大的节点。使用递归,这里是求解第k大的节点 所以可以将中序遍历倒过来进行,中序遍历先遍历左子树,根节点,右子树,现在先遍历右子树,根节点,左子树,这样就可以倒着找第k大的节点。如果找到该节点立马返回,不用再遍历左子树了,节省时间。class Solution {public: int ans; int kthLargest(TreeNode* root, int k) { dfs(root,k); retur_给一个二叉查找树(bst),找出第 k 大的值,递归讲解

如何在AIX 4.3中安装联机手册?_aix联机-程序员宅基地

文章浏览阅读888次。使用联机手册之前,需安装相应的软件包。 解答 AIX 4.3 安装介质包含两张联机文档光盘(Documentation CD): Base Documentation CD 和 Extended Documentation CD。使用命令man查看系统命令之前 需要按照下列步骤安装相应的软件包: a. 正确设置环境变量LANG的值,如“en_US”为英文环境,“zh_CN”为简体中文环境。可以用_aix联机