- 1、本文档共14页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
linux学习文档(详细版2009-1-5)
linux学习文档(修订版)
2008年9月
最小安装组件
(略)
Vsftpd的配置相关
可用root与anoymous登录ftp
启动:Service vsftpd start | resetart | stop
配置文件:/etc/vsftpd/vsftpd.conf
chroot_list_enable=YES 允许root有效
chroot_list_file=/etc/vsftpd.chroot_list习惯改为:chroot_list_file=/etc/vsftpd/chroot.list
添加chroot_local_user=YES 本地用户受阻隔
chroot.list文件内容:添加用户root,以允许root访问
在 /etc/vsftpd/下面用 vim chroot.list 命令建立一个chroot.list的新文件,文件内容为root即可。
/etc/vsftpd.ftpusers中,注释掉root用户
5、用vim 命令编辑/etc/vsftpd.user_list文件,在root用户前加上“#”即可。
使用anonymous在upload中上传文件
默认公用ftp目录:/var/ftp/pub
mkdir upload
chmod o+w upload或chmod 757 upload
修改/etc/vsftpd/vsftpd.conf
anon_upload_enable=YES
anon_mkdir_write_enable=YES
# Example config file /etc/vsftpd.conf
#
# The default compiled in settings are very paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
#
# Allow anonymous FTP?
anonymous_enable=YES
#
# 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 ftpds)
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
#
# 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_
文档评论(0)