<?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>
	<lastBuildDate>Fri, 17 May 2013 20:46:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta2-24176</generator>
	<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><![CDATA[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><![CDATA[[...] 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><![CDATA[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:</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Host *<br />
ControlMaster auto<br />
ControlPath ~/.ssh/control-%r-%h-%p</div></td></tr></tbody></table></div>
<p>The first session to a host will create a socket of the form</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">~/.ssh/control-username-hostname-22</div></td></tr></tbody></table></div>
<p>. 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><![CDATA[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:</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Host nerp<br />
Hostname nerp.evil.ie<br />
Port 22<br />
User niall</div></td></tr></tbody></table></div>
<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:</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Host home<br />
Hostname my.ext.hostname<br />
LocalForward 2222 toast.int:22<br />
LocalForward 2223 scolex.int:22<br />
User niall<br />
<br />
Host toast<br />
Hostname localhost<br />
Port 2222<br />
HostKeyAlias toast.int<br />
User niall<br />
<br />
Host scolex<br />
Hostname localhost<br />
Port 2223<br />
HostKeyAlias scolex.int<br />
User niall</div></td></tr></tbody></table></div>
<p>So to access any of my internal machines I just need to</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ssh &nbsp;-N -f home</div></td></tr></tbody></table></div>
<p>and I can then access any of my LAN machines using</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ssh toast</div></td></tr></tbody></table></div>
<p>.</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><![CDATA[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&#039;s OpenSSH.

The most utterly fantastic software tool ever. Thanks for your tips, some gems in there I wasn&#039;t aware of...ah so much to OpenSSH, no doubts I&#039;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>
