<?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>alan.lamielle.net &#187; sshd_config</title>
	<atom:link href="http://alan.lamielle.net/tags/sshd_config/feed" rel="self" type="application/rss+xml" />
	<link>http://alan.lamielle.net</link>
	<description>Alan LaMielle</description>
	<lastBuildDate>Fri, 16 Sep 2011 16:50:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>SSHD: Allow SSH Connections from localhost only</title>
		<link>http://alan.lamielle.net/2009/07/16/sshd-allow-ssh-connections-from-localhost-only</link>
		<comments>http://alan.lamielle.net/2009/07/16/sshd-allow-ssh-connections-from-localhost-only#comments</comments>
		<pubDate>Thu, 16 Jul 2009 16:53:39 +0000</pubDate>
		<dc:creator>Alan LaMielle</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[listenaddress]]></category>
		<category><![CDATA[lo]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[loopback]]></category>
		<category><![CDATA[mpi]]></category>
		<category><![CDATA[mpich]]></category>
		<category><![CDATA[port 22]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshd]]></category>
		<category><![CDATA[sshd_config]]></category>

		<guid isPermaLink="false">http://alan.lamielle.net/?p=338</guid>
		<description><![CDATA[I am doing some MPI development on my notebook using the MPICH MPI implementation.  This implementation needs an rsh/ssh connection to work properly.  I was reluctant to run a full sshd instance on my notebook as I didn&#8217;t want to open up port 22 to the world to attempt to gain access (even with password [...]]]></description>
			<content:encoded><![CDATA[<p>I am doing some MPI development on my notebook using the MPICH MPI implementation.  This implementation needs an rsh/ssh connection to work properly.  I was reluctant to run a full <code>sshd</code> instance on my notebook as I didn&#8217;t want to open up port 22 to the world to attempt to gain access (even with password authentication disabled, root login disabled, etc.).  I did some digging and found that the <code>sshd_config</code> setting <code>'ListenAddress'</code> would allow me to force <code>sshd</code> to bind to the interface associated with the specified address.  So, for example:</p>
<p><code>ListenAddress 127.0.0.1</code></p>
<p>tells sshd to bind to lo, the loopback device.  This means connections over eth* and wlan* will not work as sshd isn&#8217;t even listening on these interfaces.  As far as I can tell this will do exactly what I&#8217;m looking for as I only want ssh working on my local machine and not over interfaces other than lo.</p>
]]></content:encoded>
			<wfw:commentRss>http://alan.lamielle.net/2009/07/16/sshd-allow-ssh-connections-from-localhost-only/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

