- # rpm -qa|grep Vsftpd
- vsftpd-2.0.5-10.el5
- # rpm -ivh vsftpd-2.0.5-10.el5.i386.rpm
(点击查看大图)图11.1 查看Vsftpd软件包 |
- # useradd nobody
- # mkdir /usr/share/empty
- # mkdir /var/ftp
- # useradd -d /var/ftp ftp
- # chown root.root /var/ftp
- # chmod og-w /var/ftp
- # tar -zxvf vsftpd-2.0.5.tar.gz
- # cd vsftpd-2.0.5
- # make
- # make install
- # cp vsftpd.conf /etc/
- # cp RedHat/vsftpd.pam /etc/pam.d/ftp
- # vsftpd &
- [1] 3457
- # ftp localhost
- Connected to teacher.bit.edu.cn.
- 220 (vsFTPd 2.0.5)
- 530 Please login with USER and PASS.
- 530 Please login with USER and PASS.
- KERBEROS_V4 rejected as an authentication type
- Name (localhost:root): anonymous
- 331 Please specify the password.
- Password:
- 230 Login successful.
- Remote system type is UNIX.
- Using binary mode to transfer files.
- ftp> ls
- 227 Entering Passive Mode (127,0,0,1,71,146)
- 150 Here comes the directory listing.
- drwxr-xr-x 2 0 0 4096 Jan 17 2007 pub
- 226 Directory send OK.
- ftp> bye
- 221 Goodbye.
/etc/vsftpd/vsftpd.conf
|
主配置文件
|
/usr/sbin/vsftpd
|
Vsftpd
的主程序
|
/etc/rc.d/init.d/vsftpd
|
启动脚本
|
/etc/pam.d/vsftpd
|
PAM
认证文件
|
/etc/vsftpd.ftpusers
|
禁止使用
Vsftpd
的用户列表文件
|
/etc/vsftpd.user_list
|
禁止或允许使用
Vsftpd
的用户列表文件
|
/var/ftp
|
匿名用户主目录
|
/var/ftp/pub
|
匿名用户的下载目录
|
0人
|
了这篇文章 |