 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; VSFTPD</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/vsftpd/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 15:49:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>check ftp users in Linux</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/check-ftp-users/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/check-ftp-users/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 08:30:58 +0000</pubDate>
		<dc:creator>Nabinlimbu</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[Linux FTP]]></category>
		<category><![CDATA[VSFTPD]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[In vsftpd server, how can I view the currently logged in users via ftp?]]></description>
				<content:encoded><![CDATA[<p>In vsftpd server, how can I view the currently logged in users via ftp?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/check-ftp-users/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FTP Server request time out problem.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/ftp-server-request-time-out-problem/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/ftp-server-request-time-out-problem/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 12:14:10 +0000</pubDate>
		<dc:creator>Memonboys</dc:creator>
				<category><![CDATA[FTP Server]]></category>
		<category><![CDATA[Red Hat Enterprise Linux]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[SFTP]]></category>
		<category><![CDATA[Very Secure FTP Daemon]]></category>
		<category><![CDATA[VSFTPD]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hi all, i had configured a FTP server at Red Had Enterprise Linux(RHEL). it&#8217;s working fine, if a FTP link works (only) on one computer for example ftp link is ftp://192.168.63.1 and this link is used by COMP1 for download and upload . Problem start when i connect this same ftp link from another comp [...]]]></description>
				<content:encoded><![CDATA[<p>hi all,</p>
<p>i had configured a FTP server at Red Had Enterprise Linux(RHEL). it&#8217;s working fine, if  a FTP link works  (only) on one computer for example ftp link is ftp://192.168.63.1 and this link is used by COMP1 for download and upload . Problem start when i connect this same ftp link from another comp say comp 2 and start download, some data from this link then at comp2 ftp link get down . when we try to ping ftp link ip from copm 2 i.e ping 192.168.63.1 then it shows request time out . at the same time when we ping ftp link ip from comp1 , then it&#8217;s ping as well as download and uploads also works fine. </p>
<p>how i configure vsftpd , steps are as follow </p>
<p>1) </p>
<p>[root@CHEERSFTP ~]# yum -y install vsftpd</p>
<p>[root@CHEERSFTP cheersftp]# service vsftpd start<br />
Starting vsftpd for vsftpd:                                [  OK  ]</p>
<p>[root@CHEERSFTP ~]# cd /home/cheersftp</p>
<p>[root@CHEERSFTP cheersftp]# mkdir ftpuser1</p>
<p>[root@CHEERSFTP cheersftp]# groupadd ftpgrp</p>
<p>[root@CHEERSFTP cheersftp]# useradd -g ftpgrp -d /home/cheersftp/ftpuser1/ ftpuser1<br />
useradd: warning: the home directory already exists.<br />
Not copying any file from skel directory into it.</p>
<p>[root@CHEERSFTP cheersftp]# passwd ftpuser1<br />
Changing password for user ftpuser1.<br />
New UNIX password:<br />
BAD PASSWORD: it is based on a dictionary word<br />
Retype new UNIX password:<br />
passwd: all authentication tokens updated successfully.</p>
<p>[root@CHEERSFTP cheersftp]# chown ftpuser1:ftpgrp /home/cheersftp/ftpuser1/</p>
<p>[root@CHEERSFTP cheersftp]# chmod 777 /home/cheersftp/ftpuser1/</p>
<p>[root@CHEERSFTP cheersftp]# chmod ugo+rwx /home/cheersftp/ftpuser1/</p>
<p>now configure vsftp.log files placed at /etc/vsftpd/vsftp.conf and set this values.<br />
2)</p>
<p> vi /etc/vsftpd/vsftpd.conf </p>
<p>this listed options are set in vsftpd.conf file </p>
<p>anonymous_enable=NO<br />
local_enable=YES<br />
write_enable=YES<br />
local_umask=022<br />
dirmessage_enable=YES<br />
xferlog_enable=YES<br />
connect_from_port_20=YES<br />
xferlog_file=/var/log/vsftpd.log<br />
xferlog_std_format=YES<br />
ascii_upload_enable=YES<br />
ascii_download_enable=YES<br />
chroot_list_enable=YES<br />
chroot_list_file=/etc/vsftpd/chroot_list<br />
### now open the terminal and restart the vsftp service.</p>
<p>[root@CHEERSFTP log]# service vsftpd reload<br />
Shutting down vsftpd:                                      [  OK  ]<br />
Starting vsftpd for vsftpd:                                [  OK  ]</p>
<p>Note :- when i set this type of configuration in centos , then i can connect one link from n numbers of comp , at the same time it&#8217;s working fine but in RHEL it&#8217;s fails. please corect me where i m making a mistake.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/ftp-server-request-time-out-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Issue with /etc/yum.repos.d/filename.repo file in RedHat 5 for yum command</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/issue-with-etcyumreposdfilenamerepo-file-in-redhat-5-for-yum-command/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/issue-with-etcyumreposdfilenamerepo-file-in-redhat-5-for-yum-command/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 04:16:19 +0000</pubDate>
		<dc:creator>Moid</dc:creator>
				<category><![CDATA[Redhat Linux]]></category>
		<category><![CDATA[Software package manager]]></category>
		<category><![CDATA[Very Secure FTP Daemon]]></category>
		<category><![CDATA[VSFTPD]]></category>
		<category><![CDATA[Yum]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Discussion Post by rkwac453]]></description>
				<content:encoded><![CDATA[New Discussion Post by rkwac453]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/issue-with-etcyumreposdfilenamerepo-file-in-redhat-5-for-yum-command/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/16 queries in 0.023 seconds using memcached
Object Caching 461/502 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 16:26:21 -->