<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments on: More SSH Tips</title>
	<atom:link href="http://pthree.org/2007/03/24/more-ssh-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://pthree.org/2007/03/24/more-ssh-tips/</link>
	<description>Linux.  GNU.  Freedom.</description>
	<pubDate>Tue, 02 Dec 2008 12:02:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-almost-rc-9997</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Antono Vasiljev</title>
		<link>http://pthree.org/2007/03/24/more-ssh-tips/#comment-63691</link>
		<dc:creator>Antono Vasiljev</dc:creator>
		<pubDate>Fri, 03 Aug 2007 09:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/03/24/more-ssh-tips/#comment-63691</guid>
		<description>Thank you for the tips :)</description>
		<content:encoded><![CDATA[<p>Thank you for the tips <img src='http://pthree.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cool SSH tips &#171; technonerd.wordpress.com</title>
		<link>http://pthree.org/2007/03/24/more-ssh-tips/#comment-42045</link>
		<dc:creator>Cool SSH tips &#171; technonerd.wordpress.com</dc:creator>
		<pubDate>Mon, 26 Mar 2007 00:26:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/03/24/more-ssh-tips/#comment-42045</guid>
		<description>[...] Cool SSH&#160;tips  http://www.pthree.org/2007/03/24/more-ssh-tips/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Cool SSH&nbsp;tips  <a href="http://www.pthree.org/2007/03/24/more-ssh-tips/" rel="nofollow">http://www.pthree.org/2007/03/24/more-ssh-tips/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: niall</title>
		<link>http://pthree.org/2007/03/24/more-ssh-tips/#comment-41643</link>
		<dc:creator>niall</dc:creator>
		<pubDate>Sun, 25 Mar 2007 00:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/03/24/more-ssh-tips/#comment-41643</guid>
		<description>Oh, if you open several sessions to a single host, the ControlMaster options are awesomely kickass:
&lt;code&gt;
Host *
ControlMaster auto
ControlPath ~/.ssh/control-%r-%h-%p
&lt;/code&gt;
The first session to a host will create a socket of the form &lt;code&gt;~/.ssh/control-username-hostname-22&lt;/code&gt;. Any subsequent connections to that host will use the socket giving you a blindingly fast login :)</description>
		<content:encoded><![CDATA[<p>Oh, if you open several sessions to a single host, the ControlMaster options are awesomely kickass:<br />
<pre class="php">Host *
ControlMaster auto
ControlPath ~/.ssh/control-%r-%h-%p</pre><br />
The first session to a host will create a socket of the form <pre class="php">~/.ssh/control-username-hostname<span style="color: #cc66cc;">-22</span></pre>. Any subsequent connections to that host will use the socket giving you a blindingly fast login <img src='http://pthree.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: niall</title>
		<link>http://pthree.org/2007/03/24/more-ssh-tips/#comment-41639</link>
		<dc:creator>niall</dc:creator>
		<pubDate>Sun, 25 Mar 2007 00:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/03/24/more-ssh-tips/#comment-41639</guid>
		<description>My ssh config has started looking like this:
&lt;code&gt;
Host nerp
Hostname nerp.evil.ie
Port 22
User niall
&lt;/code&gt;

I also have a single host in front of all my home machines that I use as a bastion, so for those hosts I have something like:
&lt;code&gt;
Host home
Hostname my.ext.hostname
LocalForward 2222 toast.int:22
LocalForward 2223 scolex.int:22
User niall

Host toast
Hostname localhost
Port 2222
HostKeyAlias toast.int
User niall

Host scolex
Hostname localhost
Port 2223
HostKeyAlias scolex.int
User niall
&lt;/code&gt;

So to access any of my internal machines I just need to &lt;code&gt;ssh  -N -f home&lt;/code&gt; and I can then access any of my LAN machines using &lt;code&gt;ssh toast&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>My ssh config has started looking like this:<br />
<pre class="php">Host nerp
<span style="color: #ff0000">Hostname nerp.evil.ie</span>
Port <span style="color: #cc66cc;">22</span>
User niall</pre></p>
<p>I also have a single host in front of all my home machines that I use as a bastion, so for those hosts I have something like:<br />
<pre class="php">Host home
Hostname my.ext.hostname
<span style="color: #ff0000">LocalForward <span style="color: #cc66cc;">2222</span> toast.int:<span style="color: #cc66cc;">22</span>
LocalForward <span style="color: #cc66cc;">2223</span> scolex.int:<span style="color: #cc66cc;">22</span>
User niall
&nbsp;
Host toast</span>
Hostname localhost
<span style="color: #ff0000">Port <span style="color: #cc66cc;">2222</span></span>
HostKeyAlias toast.int
User niall
&nbsp;
Host scolex
Hostname localhost
<span style="color: #ff0000">Port <span style="color: #cc66cc;">2223</span></span>
HostKeyAlias scolex.int
User niall</pre></p>
<p>So to access any of my internal machines I just need to <pre class="php">ssh  -N -f home</pre> and I can then access any of my LAN machines using <pre class="php">ssh toast</pre>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JGJones</title>
		<link>http://pthree.org/2007/03/24/more-ssh-tips/#comment-41638</link>
		<dc:creator>JGJones</dc:creator>
		<pubDate>Sun, 25 Mar 2007 00:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/03/24/more-ssh-tips/#comment-41638</guid>
		<description>What finally made me use Linux full time and ditch Windows completely years ago was this most wonderful tool that I could not live without...

Yep it's OpenSSH.

The most utterly fantastic software tool ever. Thanks for your tips, some gems in there I wasn't aware of...ah so much to OpenSSH, no doubts I'll discover a few more gems in the years to come!

Cheers</description>
		<content:encoded><![CDATA[<p>What finally made me use Linux full time and ditch Windows completely years ago was this most wonderful tool that I could not live without&#8230;</p>
<p>Yep it&#8217;s OpenSSH.</p>
<p>The most utterly fantastic software tool ever. Thanks for your tips, some gems in there I wasn&#8217;t aware of&#8230;ah so much to OpenSSH, no doubts I&#8217;ll discover a few more gems in the years to come!</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
</channel>
</rss>
