QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 3570|回复: 3

[求助]vsftp的问题

[复制链接]
发表于 2007-5-23 18:25:39 | 显示全部楼层 |阅读模式
想安装一个ftp服务器来传文件。虽然有samba,但是配置起来比较麻烦,我也并未放弃这方面的努力。不过感觉ftp更稳定,更快一些。
先是选择了wu-ftp,结果安装的时候编译出错,选择pro-ftp,似乎需要采用数据库验证(官方推荐似乎是mysql),这个太麻烦了。最后选择了vsftp。还真别说,编译没有任何问题,装上后也可以访问。但是问题也接着来了。
就是只能用匿名用户访问。只有ftp可以通过验证,登录到服务器。我不敢为这个用户开上传权限。在配置文件中打开本地用户登录许可之后,本地用户却根本登不上去。返回信息为553,错误的登录~~~~
有那一位高手知道如何解决该问题的,请指点一下小弟~不胜感激~~
 楼主| 发表于 2007-5-26 23:16:45 | 显示全部楼层
本地用户无法登录,错误的信息是530,incorrect login
我的服务器是使用的源码安装方式。直接按照INSTALL文件的指导,先用make编译,再用make install安装。并拷贝了示例配置文件到/etc下
anonymous用户亦无法登录,提示要使用port,但ftp用户却可以登录。登入后是默认的/var/ftp目录,而且似乎这个用户与系统中的ftp用户无关(IE使用默认的密码也可以登入,而我配置的系统中ftp用户密码不是这个默认的密码)
修改了配置文件,打开了local_enable
回复

使用道具 举报

发表于 2008-3-17 20:20:31 | 显示全部楼层
VS ftp 是有这个问题
我当初折腾了 2-3 天才能本地登录的....

给你看我的配置文件

[root@BETERWORK etc]# cd vsftpd
[root@BETERWORK vsftpd]# ls
ftpusers  user_list  vsftpd.conf  vsftpd_conf_migrate.sh
[root@BETERWORK vsftpd]# cat 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.
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
#
# 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=BeterWork FTP Site
#
# 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_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 whith 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
anon_root=/var/ftp
pasv_max_port=35010
ftp_data_port=12
anon_world_readable_only=NO
pasv_min_port=35001
#userlist_deny=NO
anon_umask=033

=================================================
并不是配置文件和我一样就 OK 的!
好像 VS FTP 还和 linux 其他认证系统有联系 是其他的认证系统不让认证 不是 VSFTP !
这个事情也过去很久了 我也忘记了 你最好 google 一下 英文的资料
我当初 找了一大堆英文资料后 侬好的 但是是糊里糊涂侬好的 我也不清楚问题在哪里
回复

使用道具 举报

发表于 2009-5-6 17:12:23 | 显示全部楼层
可以试试输入命令
Setsebool ftpd_disable_trans 1
Service vsftpd restart
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-4-20 13:03 , Processed in 0.049474 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表