<?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; ftp</title>
	<atom:link href="http://tuts4tech.net/tag/ftp/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuts4tech.net</link>
	<description>Tech Tutorials</description>
	<lastBuildDate>Tue, 04 May 2010 20:35:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</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 Edit the file /etc/vsftpd.conf and make the following changes: Change Yes to No in the following line Uncomment the following lines by removing the # Finally restart the vsftpd You and any of your users should now be able to FTP the server]]></description>
			<content:encoded><![CDATA[<ol>
<li>Install vsftpd
<pre class="brush: bash; title: ; notranslate">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; title: ; notranslate">Anonymous_enable = YES</pre>
</li>
<li>Uncomment the following lines by removing the #
<pre class="brush: plain; title: ; notranslate">#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; title: ; notranslate">/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 Open up /etc/ssh/sshd_config and add the following to the end of it Restart SSHD Then make users chrooted by adding them to the chrooted group Now when the user sftps the server they will only see the contents of there home folder]]></description>
			<content:encoded><![CDATA[<ol>
<li>Create a Chrooted group
<pre class="brush: plain; title: ; notranslate">addgroup chrooted</pre>
</li>
<li>Open up /etc/ssh/sshd_config and add the following to the end of it
<pre class="brush: plain; title: ; notranslate">Subsystem sftp internal-sftp
Match group chrooted
ChrootDirectory /home/%u
X11Forwarding no
ForceCommand internal-sftp
</pre>
</li>
<li>Restart SSHD
<pre class="brush: plain; title: ; notranslate">/etc/init.d/ssh restart</pre>
</li>
<li>Then make users chrooted by adding them to the chrooted group
<pre class="brush: plain; title: ; notranslate">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>

