wolfg 回复于:2005-08-02 11:38:59 |
什么ftp服务器软件?操作系统? |
Hilinux 回复于:2005-08-02 11:40:37 |
FC3 vsftp |
wolfg 回复于:2005-08-02 13:09:20 |
[quote:3c942becfe="Hilinux"]FC3 vsftp[/quote:3c942becfe]看到vsftpd,原本想回复换成proftpd吧。不过,想到了tcp_wrappers。google了以后,发现结合tcp_wrappers,vsftpd也可以做到类似wu-ftpd的分类(Class)设置。
我找到的参考是这个: http://www.muug.mb.ca/tutorials/vsftpd-class.html 针对你的情况,可以试试这样的设置: 1. 确定vsftpd支持tcp_wrappers(FC3自带的应该支持) ldd /usr/sbin/vsftpd 看结果中有没有libwrap.so.0,有则支持。 2. 在 vsftpd.conf中启用tcp_wrappers tcp_wrappers=YES 3. 修改hosts.allow文件 加入: [quote:3c942becfe]vsftpd: 10.0.1.* : setenv VSFTPD_LOAD_CONF /etc/vsftpd/local.class vsftpd: ALL : setenv VSFTPD_LOAD_CONF /etc/vsftpd/other.class[/quote:3c942becfe] 4. 分别编辑/etc/vsftpd/local.class和/etc/vsftpd/other.class这两个文件 /etc/vsftpd/local.class [quote:3c942becfe]write_enable=YES anon_mkdir_write_enable=YES[/quote:3c942becfe] /etc/vsftpd/other.class [quote:3c942becfe]write_enable=NO anon_mkdir_write_enable=NO[/quote:3c942becfe] |
Hilinux 回复于:2005-08-02 21:30:30 |
呵呵,多谢斑竹。回去好好研究! |
Hilinux 回复于:2005-08-08 11:26:37 |
行了,不过得在local.class加上一行
anon_upload_enable=YES |