QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 888|回复: 1

请问如何在mandrake9下面开ftp服务?

[复制链接]
发表于 2002-11-27 10:44:41 | 显示全部楼层 |阅读模式
有没有类似windows下的serv-u之类的软件?
发表于 2002-11-27 11:53:54 | 显示全部楼层
它默认的是用proftp,如果安装时没有选,可以自己加上去
配置文件/etc/proftpd.conf
给你一个匿名访问脚本
# 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 &! quot;test.com.cn FTP Server"  
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  

# 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&! nbsp;limit maximum number of processes per&nb sp;service  
# (such as xinetd)  
MaxInstances 30  


RequireValidShell off  
ServerIdent off  


# Set the user and group that the server normally runs at.  
User nobody  
Group nobody  

# Normally, we want files to be overwriteable.  
<Directory /*>  
AllowOverwrite on  
</Directory>  

# A basic anonymous configuration, no upload directories.  
<Anonymous /home/ftp>  
User ftp  
Group ftp  
# We want clients to be able to login with "anonymous" as well as "ftp"  
UserAlias anonymous ftp  

# Limit the maximum number of anonymous logins  
MaxClients 10  

# We ! ;want 'welcome.msg' displayed at login, and '.message' displayed  
# in each newly chdired directory.  
DisplayLogin welcome.msg  
DisplayFirstChdir .message  

# Limit WRITE everywhere in the anonymous chroot  
<Limit WRITE>  
DenyAll  
</Limit>  

</Anonymous>  


DefaultRoot ~ ftpusers  

<VirtualHost 192.168.2.35>   

ServerName "virtual FTP server"   

<Limit LOGIN>   
DenyAll   
</Limit>   

<Anonymous /usr/local/private>   

User private  
Group private   

<Limit LOGIN>   
AllowAll   
</Limit>  

</Anonymous>   

</VirtualHost>  

我要吃饭了,看不懂,我再给详细注释
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-17 18:29 , Processed in 0.039529 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

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