<?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: Phone Home</title>
	<atom:link href="http://www.bennee.com/~alex/blog/2010/06/30/phone-home/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bennee.com/~alex/blog/2010/06/30/phone-home/</link>
	<description>the wanderings of a supposed digital native</description>
	<lastBuildDate>Tue, 24 Jan 2012 11:01:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: JFM</title>
		<link>http://www.bennee.com/~alex/blog/2010/06/30/phone-home/comment-page-1/#comment-166</link>
		<dc:creator>JFM</dc:creator>
		<pubDate>Fri, 02 Jul 2010 17:50:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.bennee.com/~alex/blog/?p=1924#comment-166</guid>
		<description>Set those users&#039; shell to &lt;a href=&quot;http://sublimation.org/scponly/wiki/index.php/Main_Page&quot; rel=&quot;nofollow&quot;&gt;scponly&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Set those users&#8217; shell to <a href="http://sublimation.org/scponly/wiki/index.php/Main_Page" rel="nofollow">scponly</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.bennee.com/~alex/blog/2010/06/30/phone-home/comment-page-1/#comment-163</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 30 Jun 2010 21:15:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.bennee.com/~alex/blog/?p=1924#comment-163</guid>
		<description>Thanks for the pointer, I shall have a look at it.</description>
		<content:encoded><![CDATA[<p>Thanks for the pointer, I shall have a look at it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suresh Kumar</title>
		<link>http://www.bennee.com/~alex/blog/2010/06/30/phone-home/comment-page-1/#comment-162</link>
		<dc:creator>Suresh Kumar</dc:creator>
		<pubDate>Wed, 30 Jun 2010 18:24:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.bennee.com/~alex/blog/?p=1924#comment-162</guid>
		<description>May you can try autossh instead of the while loop.</description>
		<content:encoded><![CDATA[<p>May you can try autossh instead of the while loop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Birch</title>
		<link>http://www.bennee.com/~alex/blog/2010/06/30/phone-home/comment-page-1/#comment-161</link>
		<dc:creator>Birch</dc:creator>
		<pubDate>Wed, 30 Jun 2010 17:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.bennee.com/~alex/blog/?p=1924#comment-161</guid>
		<description>I&#039;ve had the same problem with connections dropping in the past, but now I use autossh and do not have any problems. In fact, if I use autossh to create the link, it will automatically reconnect after suspending my laptop for the night.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve had the same problem with connections dropping in the past, but now I use autossh and do not have any problems. In fact, if I use autossh to create the link, it will automatically reconnect after suspending my laptop for the night.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.bennee.com/~alex/blog/2010/06/30/phone-home/comment-page-1/#comment-160</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 30 Jun 2010 17:27:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.bennee.com/~alex/blog/?p=1924#comment-160</guid>
		<description>That does work although I&#039;m sure there is a way to restrict actions to specific keys rather than users. In a vaguely unrelated note I have users who have shell access to my machine despite all they need it for is uploading files to their websites via scp. It would be nice to be able to lock them down a bit more.

Thanks for the brevity tip ;-)</description>
		<content:encoded><![CDATA[<p>That does work although I&#8217;m sure there is a way to restrict actions to specific keys rather than users. In a vaguely unrelated note I have users who have shell access to my machine despite all they need it for is uploading files to their websites via scp. It would be nice to be able to lock them down a bit more.</p>
<p>Thanks for the brevity tip <img src='/~alex/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Jones</title>
		<link>http://www.bennee.com/~alex/blog/2010/06/30/phone-home/comment-page-1/#comment-159</link>
		<dc:creator>Peter Jones</dc:creator>
		<pubDate>Wed, 30 Jun 2010 16:23:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.bennee.com/~alex/blog/?p=1924#comment-159</guid>
		<description>I think you can have ssh connect as a user with /bin/true as his shell.  I&#039;ve not tried it though.  I would guess you&#039;d need the -N option to ssh when the shell is /bin/true.

One very minor change to your shell loop to make it smaller:


while :; do ssh backchannel; done
</description>
		<content:encoded><![CDATA[<p>I think you can have ssh connect as a user with /bin/true as his shell.  I&#8217;ve not tried it though.  I would guess you&#8217;d need the -N option to ssh when the shell is /bin/true.</p>
<p>One very minor change to your shell loop to make it smaller:</p>
<p>while :; do ssh backchannel; done</p>
]]></content:encoded>
	</item>
</channel>
</rss>

