资源描述:
《使用 vsftpd 架设 FTP 服务器》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、使用vsftpd架设FTP服务器黄瑞琪//查看是否安装了vsftpd和anonftp#rpm-qa
2、grepvsftpd#rpm-qa
3、grepanonftp//将Redhat8.0的第1张安装光盘放入光驱后挂装#mount/mnt/cdrom//进入光盘的RedHat/RPMS目录#cd/mnt/cdrom/RedHat/RPMS//安装所需的RPM包#rpm-ivhvsftpd*#rpm-ivhanonftp*//弹出光盘#cd;eject2Redhat默认vsftpd以xinetd方式启动//修改/etc/xinet
4、d.d/vsftpd#vi/etc/xinetd.d/vsftpd//键入i进入插入模式//将disable=yes//改为disable=no//按Esc键返回编辑模式,再键入命令:wq存盘退出vi//重新启动xinetd守护进程#servicexinetdrestart3检验vsftpd是否被启动#telnet127.0.0.121Trying127.0.0.1...Connectedto127.0.0.1.Escapecharacteris'^]'.220ready,dude(vsFTPd1.1.0:beatme,b
5、reakme)//从上面的内容可以确认vsftpd已经被启动,按Ctrl+]中断会话//按q退出telnettelnet>qConnectionclosed.4查看vsftpd的默认主配置文件#cat/etc/vsftpd.conf
6、grep=5测试ReHat8.0中vsftpd的默认配置-匿名账号//生成目录信息文件/var/ftp/pub/.message#echo"WelcometothisDirectory.">/var/ftp/pub/.message/同时也可以写入更多的内容,如://#ls-F/var/ftp
7、/pub/>/var/ftp/pub/.message等//使用FTP客户端连接本地FTP服务器#ftp127.0.0.1Connectedto127.0.0.1(127.0.0.1).220ready,dude(vsFTPd1.1.0:beatme,breakme)6使用匿名FTP账号(ftp或anonymous)登录Name(127.0.0.1:root):ftp331Pleasespecifythepassword.//输入Email地址作为FTP匿名账号的口令Password:230Loginsuccessful.
8、Havefun.RemotesystemtypeisUNIX.Usingbinarymodetotransferfiles.//列表显示匿名FTP服务器目录ftp>ls227EnteringPassiveMode(127,0,0,1,179,2)150Herecomesthedirectorylisting.d--x--x--x2004096Oct0908:36bind--x--x--x2004096Oct0908:36etcdrwxr-xr-x2004096Oct0908:36libdrwxr-sr-x20504096M
9、ar0919:45pub226DirectorysendOK.7//进入匿名FTP服务器下载目录ftp>cdpub250-WelcometothisDirectory.//此处显示了.message文件的内容250Directorysuccessfullychanged.ftp>ls227EnteringPassiveMode(127,0,0,1,45,163)150Herecomesthedirectorylisting.-r-xr-xr-x10506477959Mar0919:41webmin-1.000-1.noar
10、ch.rpm226DirectorysendOK.8//下载文件webmin-1.000-1.noarch.rpmftp>mgetweb*mgetwebmin-1.000-1.noarch.rpm?y227EnteringPassiveMode(127,0,0,1,37,151)150OpeningBINARYmodedataconnectionforwebmin-1.000-1.noarch.rpm(6477959bytes).226FilesendOK.6477959bytesreceivedin0.794secs(8
11、e+03Kbytes/sec)//显示本地文件ftp>!lsanaconda-ks.cfginstall.loginstall.log.syslogwebmin-1.000-1.noarch.rpm//确认已经将文件webmin-1.000-1.noarch.rpm下载到本地9//上传文件install