FreeBSD平台下pure-ftpd服务架设

2009-05-13 09:42:35来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

freebsd#cd /usr/ports/ftp/pure-ftpd
freebsd#make install
用ports安装以后
freebsd#cd /usr/local/etc
freebsd#cp pure-ftpd.conf.sample pure-ftpd.conf
在rc.conf中加入 pureftpd_enable="YES" 就可以开机自动启动了
启动/关闭命令:
freebsd#/usr/local/etc/rc.d/pure-ftpd.sh start/stop
默认安装是支持匿名用户的,需要进行下面的步骤
freebsd#mkdir /home/ftp
freebsd#pw useradd ftp -d /home/ftp -s /sbin/nologin
freebsd#ftp -a localhost就可以进行匿名的登陆了
如果要进行验证用户的登陆,进行(以upload用户为例):
freebsd#mkdir /home/lingfeng       //给lingfeng新建一个目录
freebsd#pw groupadd ftp         //增加一个ftp组
freebsd#pw useradd lingfeng -g ftp -d /home/lingfeng -s /bin/sh        //增加用户lingfeng并放到ftp组里
freebsd#passwd lingfeng         //设置lingfeng的密码
freebsd#chown lingfeng /home/lingfeng
freebsd#chgrp lingfeng /home/lingfeng
    就可以可以用这个用户进行用户的认证了
还有注意pure-ftpd.conf中的几个配置文件的含义
MaxClientsNumber 50               服务器总共允许同时连接的最大用户数
DisplayDotFiles yes               即使客户端没有发送 '-a' 选项也列出隐藏文件( dot-files )
MaxIdleTime 15            客户端允许的最大的空闲时间(分钟,缺省15分钟)
UnixAuthentication yes            (注意从U到yes之间必须是28个字符的距离)如果你要启用 简单的 Unix系统认证方式(/etc/passwd), 去掉下面行的注释
AnonymousBandwidth 8               匿名用户的最大带宽(KB/s)
AllowUserFXP yes                   仅允许认证用户进行 FXP 传输
AnonymousCantUpload yes            不接受匿名用户上传新文件( no = 允许上传)
AltLog w3c:/var/log/pureftpd.log   使用标准的W3C格式创建一个额外的日志文件。(与大部分的商业日志分析器兼容)
         PureFTPd 系列中文文档之 PureFTPd 配置文件(中文注释)
############################################################
#                             #
#  Configuration file for pure-ftpd wrappers       #
#                             #
############################################################
# 如果你想要使用配置文件代替命令行选项来运行 Pure-FTPd ,请运行下面的命令:
#
# /usr/local/pureftpd/sbin/pure-config.pl /usr/local/pureftpd/etc/pure-ftpd.conf
#
# RPM 缺省使用另外一个配置文件:
# /etc/sysconfig/pure-ftpd
#
# 请不要忘了浏览一下
http://www.pureftpd.org/documentation.html

# 文档,查看全部的选项列表。
# 限制所有用户在其主目录中

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:FreeBSD基本安装过程

下一篇:FreeBSD上用tftpd备份恢复cisco路由器