由 KO? 在 11-09-2002 22:09 发表:
ProFtp建立用户和设置权限的方法?
请教各位~~ 小弟才装的Proftp1.2.5,安装一切顺利,运行也很好.
可是~~~ 我不知道怎么建立新的用户和设置用户的权限,恳请各位给个详细的解释 
小弟在此谢过了~~~~~~~~~~~
另外不知道有没有图形界面的ftp工具??
有的话请介绍一下!!!
由 KO? 在 11-10-2002 21:05 发表:
晕~~~~~~
是不是问题太菜了,大家都不屑回答啊~~`~~
如果是的话版主回个话儿就得了!~~~ 也没什么嘛~
由 lin629xp 在 11-14-2002 20:05 发表:
帮忙看一下这个proftpd的配置有什么问题?
This is a basic ProFTPD configuration file (rename it to
'proftpd.conf' for actual use. It establishes a single server
and a single anonymous login. It assumes that you have a user/group
"nobody" and "ftp" for normal operation and anon.
ServerName "ProFTPD physics electronic lxb"
ServerType standalone
DefaultServer on
Port 21 is the standard FTP port.
Port 21
Umask 022 is a good standard umask to prevent new dirs and files
from being group and world writable.
Umask 022
ServerIdent off
To prevent DoS attacks, set the maximum number of child processes
to 30. If you need to allow more than 30 concurrent connections
at once, simply increase this value. Note that this ONLY works
in standalone mode, in inetd mode you should use an inetd server
that allows you to limit maximum number of processes per service
(such as xinetd)
MaxInstances 30
MaxLoginAttempts 2
UseReverseDNS off
TimeoutLogin 200
TimeoutStalled 300
TimeoutIdle 120
TimeoutNoTransfer 300
Set the user and group that the server normally runs at.
User nobody
Group nobody
RequireValidShell off
Normally, we want files to be overwriteable.
1<directory *="">
2
3AllowOverwrite on
4
5</directory>
A basic anonymous configuration, no upload directories.
1<anonymous ftp="" var="">
2
3User ftp
4
5Group ftp
6
7# We want clients to be able to login with "anonymous" as well as "ftp"
8
9UserAlias anonymous ftp
10
11AuthUsingAlias on
12
13# Limit the maximum number of anonymous logins
14
15MaxClients 30 "Sorry,max %m users --try again later"
16
17MaxClientsPerHost 5
18
19RequireValidShell off
20
21# We want 'welcome.msg' displayed at login, and '.message' displayed
22
23# in each newly chdired directory.
24
25DisplayLogin welcome.msg</anonymous>