简单使用ftpd假设Ftp文件传输服务器

2009-05-13 02:06:57来源:未知 阅读 ()

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

一、启动ftpd
1、inetd方式
编辑/etc/inetd.conf去掉ftp行注释
#ee /etc/inetd.conf
ftp strean tcp nowait root /usr/libexec/ftpd ftpd -us
设置开机启动inetd
#ee /etc/rc.conf
添加内容:
inetd_enable="YES"
2、直接执行ftpd命令
#/usr/libexec/ftpd -DA
-A    只允许匿名登陆
-D    ftpd将作为daemon运行,减少系统资源
-n    禁止匿名登陆
二、只允许使用系统帐户登陆
#ee /etc/rc.conf
添加
ftpd_flags="-D"
三、允许匿名用户登陆
1、添加ftp帐户并禁止该帐户使用shell,使其无法登陆系统。
在/etc/shells中添加无法实际使用的shell
#ee /etc/shells
添加
/usr/sbin/nologin
2、添加用户ftp
#adduser -shell /usr/sbin/nologin
Enter username []:ftp
Enter fullname []:ftpduser
Enter shell...[sh]:/usr/sbin/nologin
.......
不设置用户密码,默认目录为/usr/home/ftp。
四、增强/usr/home/ftp目录的安全性,将它设为root权限并任何人不可写,在ftp目录中添加提供下载的pub目录。
#mkdir -p /usr/home/ftp/pub
#chown -R root:wheel /usr/home/ftp
#chmod -R 555 /usr/home/ftp



本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/12766/showart_71716.html

标签:

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

上一篇:指令應用

下一篇:FreeBSD 4.10 下 bind-9.3.2 + mysql-4.1.9 详细配置全过程