<?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; openssh</title>
	<atom:link href="http://tuts4tech.net/tag/openssh/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>Passwordless SSH login using SSH Keys</title>
		<link>http://tuts4tech.net/2009/07/01/passwordless-ssh-login-using-ssh-keys/</link>
		<comments>http://tuts4tech.net/2009/07/01/passwordless-ssh-login-using-ssh-keys/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 01:32:00 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[keys]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[passwordless]]></category>
		<category><![CDATA[rsa]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=401</guid>
		<description><![CDATA[SSH keys allow you to login without requiring you to type in your password this tutorial will teach you how to set them up First we need to create the key Then we need to move it over to the machine that we want to be able to login too without the need for a [...]]]></description>
			<content:encoded><![CDATA[<p>SSH keys allow you to login without requiring you to type in your password this tutorial will teach you how to set them up</p>
<ol>
<li>First we need to create the key
<pre class="brush: bash; title: ; notranslate">ssh-keygen -t rsa</pre>
</li>
<li>Then we need to move it over to the machine that we want to be able to login too without the need for a password to do this run the following command
<pre class="brush: bash; title: ; notranslate">scp .ssh/id_rsa.pub OTHER-MACHINES-IP:.ssh/authorized_keys</pre>
</li>
<li>You should now be able to ssh into that machine without needing a password</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/07/01/passwordless-ssh-login-using-ssh-keys/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>
		<item>
		<title>SSH Tunnel</title>
		<link>http://tuts4tech.net/2009/04/05/ssh-tunnel/</link>
		<comments>http://tuts4tech.net/2009/04/05/ssh-tunnel/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 00:27:02 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[socks]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tunnel]]></category>
		<category><![CDATA[tunneling]]></category>

		<guid isPermaLink="false">http://duffys-place.co.cc/?p=62</guid>
		<description><![CDATA[Download Putty From Here Run Putty and insert your servers host name Expand ssh on the sidebar and select tunnels Check the Dynamic Box and in Source port enter a port e.g 3000 and then Press Add Press open and login to your ssh account. Open the event log if you want by holding down [...]]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="465" data="http://www.youtube.com/v/Fm1Nvj-yfPQ&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Fm1Nvj-yfPQ&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<ol>
<li>Download Putty From <a href="http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe">Here</a></li>
<li>Run Putty and insert your servers host name</li>
<li>Expand ssh on the sidebar and select tunnels</li>
<li>Check the Dynamic Box and in Source port enter a port e.g 3000 and then Press Add</li>
<li>Press open and login to your ssh account. Open the event log if you want by holding down ctrl right clicking and then selecting event log</li>
<li>Open firefox and click on tools > Options</li>
<li>Click On Advanced and then select the networking tab</li>
<li>Click on the Setting button under connection</li>
<li>check the manual proxy configuration box</li>
<li>Across from socks host type in localhost and in the Port box type in the port you set for source port on the tunnel page in putty</li>
<li>Press Ok and exit options and you should be good to go</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/04/05/ssh-tunnel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

