<?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>Tuts4Tech &#187; vsftpd</title>
	<atom:link href="http://tuts4tech.net/tag/vsftpd/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuts4tech.net</link>
	<description>Tech Tutorials</description>
	<lastBuildDate>Sun, 18 Jul 2010 01:41:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Setting up a FTP Server on debian</title>
		<link>http://tuts4tech.net/2009/07/14/setting-up-a-ftp-server-on-debian/</link>
		<comments>http://tuts4tech.net/2009/07/14/setting-up-a-ftp-server-on-debian/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 16:26:21 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[file transfer]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[vsftpd]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=493</guid>
		<description><![CDATA[Install vsftpd apt-get install vsftpd Edit the file /etc/vsftpd.conf and make the following changes: Change Yes to No in the following line Anonymous_enable = YES Uncomment the following lines by removing the # #local_enable = YES #write_enable = YES #local_umask = 022 #chroot_local_user = YES Finally restart the vsftpd /etc/init.d/vsftpd You and any of your [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Install vsftpd
<pre class="brush: bash;">apt-get install vsftpd</pre>
</li>
<li>Edit the file /etc/vsftpd.conf and make the following changes:
<ol>
<li>Change Yes to No in the following line
<pre class="brush: plain;">Anonymous_enable = YES</pre>
</li>
<li>Uncomment the following lines by removing the #
<pre class="brush: plain;">#local_enable = YES
#write_enable = YES
#local_umask = 022
#chroot_local_user = YES</pre>
</li>
</ol>
<p>
</li>
<li>Finally restart the vsftpd
<pre class="brush: bash;">/etc/init.d/vsftpd</pre>
</li>
<li>You and any of your users should now be able to FTP the server</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/07/14/setting-up-a-ftp-server-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chroot Sftp</title>
		<link>http://tuts4tech.net/2009/05/03/chroot-sft/</link>
		<comments>http://tuts4tech.net/2009/05/03/chroot-sft/#comments</comments>
		<pubDate>Sun, 03 May 2009 19:55:46 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[chroot]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshd]]></category>
		<category><![CDATA[vsftpd]]></category>

		<guid isPermaLink="false">http://tuts4tech.co.cc/?p=175</guid>
		<description><![CDATA[Create a Chrooted group addgroup chrooted Open up /etc/ssh/sshd_config and add the following to the end of it Subsystem sftp internal-sftp Match group chrooted ChrootDirectory /home/%u X11Forwarding no ForceCommand internal-sftp Restart SSHD /etc/init.d/ssh restart Then make users chrooted by adding them to the chrooted group adduser user chrooted Now when the user sftps the server [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Create a Chrooted group
<pre class="brush: plain;">addgroup chrooted</pre>
</li>
<li>Open up /etc/ssh/sshd_config and add the following to the end of it
<pre class="brush: plain;">Subsystem sftp internal-sftp
Match group chrooted
ChrootDirectory /home/%u
X11Forwarding no
ForceCommand internal-sftp
</pre>
</li>
<li>Restart SSHD
<pre class="brush: plain;">/etc/init.d/ssh restart</pre>
</li>
<li>Then make users chrooted by adding them to the chrooted group
<pre class="brush: plain;">adduser user chrooted</pre>
</li>
<li>Now when the user sftps the server they will only see the contents of there home folder</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/05/03/chroot-sft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
