<?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>erdelynet.com &#187; SSH</title>
	<atom:link href="http://erdelynet.com/category/tech/ssh/feed/" rel="self" type="application/rss+xml" />
	<link>http://erdelynet.com</link>
	<description>Mike Erdely's website (still faster than Scott's blog)</description>
	<lastBuildDate>Tue, 01 Jun 2010 04:24:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SSH List Shutdown</title>
		<link>http://erdelynet.com/tech/ssh/ssh-list-shutdown/</link>
		<comments>http://erdelynet.com/tech/ssh/ssh-list-shutdown/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:20:43 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://erdelynet.com/?p=444</guid>
		<description><![CDATA[The ssh@erdelynet.com mailing list is now closed. Most of the discussions cover running SSH on Windows using Cygwin (or a Cygwin derivative) and I don&#8217;t use those anymore (I haven&#8217;t for over 8 years). So, I recommend using the lists specific to the SSH implementation you&#8217;re using. The archives are still available (I will try [...]]]></description>
			<content:encoded><![CDATA[<p>The ssh@erdelynet.com mailing list is now closed.  Most of the discussions cover running SSH on Windows using Cygwin (or a Cygwin derivative) and I don&#8217;t use those anymore (I haven&#8217;t for over 8 years).  So, I recommend using the lists specific to the SSH implementation you&#8217;re using.</p>
<p>The archives are still available (I will try to remove the SPAM soon-ish): <a href="http://erdelynet.com/archive/ssh-l/">http://erdelynet.com/archive/ssh-l/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/ssh/ssh-list-shutdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using VNC+SSH to help remote users</title>
		<link>http://erdelynet.com/tech/ssh/using-vnc-ssh-remote/</link>
		<comments>http://erdelynet.com/tech/ssh/using-vnc-ssh-remote/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 15:27:41 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://erdelynet.com/?p=254</guid>
		<description><![CDATA[Recently, a BUG member asked about using SSH and VNC to remotely control a user&#8217;s computer to help them with a computer problem. I wrote a quick explanation of how to do it. Since I took the time, I thought I&#8217;d share here too.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.openssh.org/"><img src="/images/openssh.gif" width="128" height="126" border="0" align="right" /></a>Recently, a <a href="http://capbug.org/" title="BSD User Group">BUG</a> member asked about using SSH and VNC to remotely control a user&#8217;s computer to help them with a computer problem.  I wrote a <a href="http://capbug.org/archive/misc/2008-09/0442.html">quick explanation</a> of how to do it.  Since I took the time, I thought I&#8217;d share here too.</p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/ssh/using-vnc-ssh-remote/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quick SSH Tip: ProxyCommand</title>
		<link>http://erdelynet.com/tech/ssh/quick-ssh-tip-proxycommand/</link>
		<comments>http://erdelynet.com/tech/ssh/quick-ssh-tip-proxycommand/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 14:41:14 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://erdelynet.com/tech/ssh/quick-ssh-tip-proxycommand/</guid>
		<description><![CDATA[Here&#8217;s a quick tip for OpenSSH: Suppose there is an SSH server inside a remote network that does not have its SSH port exposed to the Internet (named &#8220;internal.hostname.tld&#8221;). If there is an SSH gateway host that you can SSH to (that has the ability to reach &#8220;internal&#8221;&#8216;s SSH port), you can use the netcat [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.openssh.org/"><img src="/images/openssh.gif" width="128" height="126" border="0" align="right" /></a>Here&#8217;s a quick tip for OpenSSH:</p>
<p>Suppose there is an SSH server inside a remote network that does not have its SSH port exposed to the Internet (named &#8220;internal.hostname.tld&#8221;).  If there is an SSH gateway host that you can SSH to (that has the ability to reach &#8220;internal&#8221;&#8216;s SSH port), you can use the netcat (<a href="http://www.openbsd.org/cgi-bin/man.cgi?query=nc&#038;sektion=1">nc(1)</a>) command to Proxy your SSH session to &#8220;internal&#8221; through &#8220;gateway&#8221;.</p>
<p>Put something like the following in your ~/.ssh/config (or /etc/ssh/ssh_config):</p>
<blockquote>
<pre>Host internal.hostname.tld internal
  User          merdely
  HostName      internal.hostname.tld
  ProxyCommand  ssh merdely@gateway.hostname.tld nc %h %p 2> /dev/null</pre>
</blockquote>
<p>Then, make connect to &#8220;internal&#8221; as if you could directly: <code>ssh internal.hostname.tld</code></p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/ssh/quick-ssh-tip-proxycommand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Support OpenBSD/OpenSSH</title>
		<link>http://erdelynet.com/tech/support-openbsdopenssh/</link>
		<comments>http://erdelynet.com/tech/support-openbsdopenssh/#comments</comments>
		<pubDate>Tue, 28 Mar 2006 05:28:00 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://erdelynet.com/2006/03/28/cygwin/support-openbsdopenssh/</guid>
		<description><![CDATA[Right now you should take a minute to support the OpenBSD Project. Chances are, if you&#8217;re viewing my website (geek!), you&#8217;ve used their work. They&#8217;ve developed OpenSSH. This software is included with operating systems from Apple Mac OS X to Redhat Enterprise Linux to Sun Solaris (pretty much all of them but Windows) as well [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.openbsd.org/orders.html"><img src="http://www.openbsd.org/images/cd39-s.gif" alt="OpenBSD 3.9" width="90" height="90" border="0" align="right" /></a>Right now you should take a minute to <a href="http://www.openbsd.org/orders.html">support the OpenBSD Project</a>.</p>
<p>Chances are, if you&#8217;re viewing my website (geek!), you&#8217;ve used their work.  They&#8217;ve developed <a href="http://www.openssh.com/">OpenSSH</a>.  This software is included with operating systems from Apple Mac OS X to Redhat Enterprise Linux to Sun Solaris (pretty much all of them but Windows) as well as HP, Cisco and other hardware vendors&#8217; devices.  These operating system and hardware companies have been including OpenSSH with their products for years, which saved them the time to develop it on their own.</p>
<p>And that&#8217;s just OpenSSH.  I&#8217;m not even going to get into why OpenBSD deserves your support&#8230; that should be self evident through the rest of the content on my site.</p>
<p>Free software is a double edged sword&#8230;<br />
<span id="more-83"></span></p>
<p>Maybe you use it because it&#8217;s free.  Maybe you use it because you can personally audit the source code and verify its integrity.  Maybe you use it because <a href="http://www.openbsd.org/tshirts.html#16">it&#8217;s cool</a>.  But this freedom doesn&#8217;t necessarily mean that you don&#8217;t have to pay for it.  Especially with OpenBSD, it means that you&#8217;re free to use it in anyway you see fit.  You can resell it for $1000!  But at some point you will pay for it.</p>
<p>Suppose down the line that the full-time developers for OpenBSD/OpenSSH decide that the <a href="http://www.openbsd.org/orders.html">donations and CD sales</a> just aren&#8217;t providing enough funding and they have to get other jobs.  Instead of 2 releases a year, we&#8217;d likely see less than that.  Or maybe the developers can&#8217;t afford to buy a specific server architecture that you have depended on&#8230; That won&#8217;t be included in the next version.</p>
<p>If you&#8217;re like me, you&#8217;ve probably benefitted financially from OpenBSD.  I&#8217;ve been able to use OpenBSD and OpenSSH in my workplace for several years now.  Experience and knowledge gained from the availability of such great, flexible software has enabled me to get jobs and, in some cases, enabled a previous company to make money.  I personally buy each release.  I used to, as it says at the bottom of the <a href="http://www.openbsd.org/donations.html">OpenBSD Donations page</a>, &#8220;buy one for a friend.&#8221; But instead started to just donate the amount of that extra CD.  I really don&#8217;t need two anyway.  I just buy the CD for the nostalgia and end up ftp&#8217;ing the software anyway.</p>
<p>So, <a href="http://www.openbsd.org/orders.html">buy a CD</a>.  <a href="http://www.openbsd.org/orders.html">Buy two</a> if you want.  <a href="http://www.openbsd.org/orders.html">Buy a t-shirt</a> (<a href="http://www.openbsd.org/tshirts.html#23">the wireframe ones</a> are really cool and they make good packing material for the CDs).  Better yet, <a href="http://www.openbsd.org/orders.html">make a dontation</a>.  But help the project out.  OpenBSD (and OpenSSH) are very solid, well done pieces of software.  You won&#8217;t regret it.</p>
<p>If you <b>REALLY</b> want to make an impact, convince your company to buy CDs, donate funds and equipment.  If you&#8217;re in the position to make the OS &#038; hardware vendors pay attention, have THEM invest into the technology they have been reselling for years.</p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/support-openbsdopenssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH List Upgrade Part 2</title>
		<link>http://erdelynet.com/tech/ssh/ssh-list-upgrade-part-2/</link>
		<comments>http://erdelynet.com/tech/ssh/ssh-list-upgrade-part-2/#comments</comments>
		<pubDate>Sun, 07 Aug 2005 22:28:04 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[SSH]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://erdelynet.com/2005/08/07/ssh/ssh-list-upgrade-part-2/</guid>
		<description><![CDATA[I've upgraded my mailing list manager to <a href="http://mlmmj.mmj.dk/">mlmmj</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="/ssh-l/"><img src="/images/mail.jpg" alt="ssh-l" width="128" height="128" border="0" align="right" /></a>I&#8217;ve finally gotten sick of Mailman <b>and</b> Majordomo. I&#8217;m only running one mailing list, <a href="/ssh-l/">ssh</a> and both mailing list managers are overkill.  Plus, neither of them works in OpenBSD&#8217;s Apache chroot, so&#8230;</p>
<p>I&#8217;ve upgraded my mailing list manager to <a href="http://mlmmj.mmj.dk/">mlmmj</a>.<span id="more-65"></span></p>
<p>What this means to you: hopefully &#8212; not much: There is no web interface to speak of, though I may make web pages that allow you to subscribe and unsubscribe.</p>
<p>The <a href="http://archive.erdelynet.com/ssh-l/">archives</a> have also gotten an upgrade.  I&#8217;m using hypermail now.  It&#8217;s much simpler to maintain than my mhonarc set up was.</p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/ssh/ssh-list-upgrade-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putty</title>
		<link>http://erdelynet.com/tech/ssh/putty/</link>
		<comments>http://erdelynet.com/tech/ssh/putty/#comments</comments>
		<pubDate>Sun, 20 Mar 2005 03:42:52 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">/wordpress/?p=42</guid>
		<description><![CDATA[Putty is a free SSH client for Windows. The Putty project also includes a command line client (plink), an scp client (pscp), an sftp client (psftp) and an ssh-agent application (pageant).]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/"><img src="/images/putty.jpg" alt="Putty" width="48" height="48" border="0" align="right" /></a><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a> is a <strong>free</strong> <a href="/category/ssh/">SSH</a> client for Windows.</p>
<p>The Putty project also includes a command line client (plink), an scp client (pscp), an sftp client (psftp) and an ssh-agent application (pageant).</p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/ssh/putty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH Agent</title>
		<link>http://erdelynet.com/tech/ssh/ssh-agent/</link>
		<comments>http://erdelynet.com/tech/ssh/ssh-agent/#comments</comments>
		<pubDate>Sun, 20 Mar 2005 03:38:00 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">/wordpress/?p=40</guid>
		<description><![CDATA[SSH Agent is a front end to ssh-agent for Mac OS X. This program does exactly what it&#8217;s supposed to do, but it doesn&#8217;t have the features that SSHKeyChain has. If SSHKeychain didn&#8217;t have problems with password protecting your screen saver, I&#8217;d use that. Until that gets fixed, this program gets the job done.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.phil.uu.nl/~xges/ssh/"><img src="/images/sshagent.jpg" alt="SSH Agent" width="128" height="128" border="0" align="right" /></a><a href="http://www.phil.uu.nl/~xges/ssh/">SSH Agent</a> is a front end to ssh-agent for Mac OS X.</p>
<p>This program does exactly what it&#8217;s supposed to do, but it doesn&#8217;t have the features that <a href="/2005/03/19/ssh/sshkeychain/">SSHKeyChain</a> has.  If SSHKeychain didn&#8217;t have problems with password protecting your screen saver, I&#8217;d use that.  Until that gets fixed, this program gets the job done.</p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/ssh/ssh-agent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSHKeychain</title>
		<link>http://erdelynet.com/tech/ssh/sshkeychain/</link>
		<comments>http://erdelynet.com/tech/ssh/sshkeychain/#comments</comments>
		<pubDate>Sun, 20 Mar 2005 03:32:57 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">/wordpress/?p=39</guid>
		<description><![CDATA[SSHKeychain is a GUI interface to ssh-agent for Mac OS X. This application is the best of its kind with many security features, including: locking the keychain when the computer goes to screensaver or goes to sleep. I would use this program instead of SSH Agent, but it has a problem recovering from when the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sshkeychain.org/"><img src="/images/sshkeychain.gif" alt="SSHKeychain" width="128" height="128" border="0" align="right" /></a><a href="http://www.sshkeychain.org/">SSHKeychain</a> is a GUI interface to ssh-agent for Mac OS X.</p>
<p>This application is the best of its kind with many security features, including: locking the keychain when the computer goes to screensaver or goes to sleep.</p>
<p>I would use this program instead of <a href="/2005/03/19/ssh/ssh-agent/">SSH Agent</a>, but it has a problem recovering from when the screensaver or going to sleep requires a password. If you don&#8217;t require a password on your screensaver or waking from sleep, this app is for you!</p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/ssh/sshkeychain/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>OpenSSH 4.0 Released</title>
		<link>http://erdelynet.com/tech/openbsd/openssh-40-released/</link>
		<comments>http://erdelynet.com/tech/openbsd/openssh-40-released/#comments</comments>
		<pubDate>Wed, 09 Mar 2005 22:19:24 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://erdelynet.com/wordpress/?p=20</guid>
		<description><![CDATA[OpenSSH 4.0 was released today! See my SSH section for more info.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.openssh.com/"><img src="/images/openssh.gif" width="128" height="126" border="0" align="right" /></a><a href="http://www.openssh.com/">OpenSSH 4.0</a> was released today!</p>
<p>See my <a href="/category/ssh/">SSH section</a> for more info.</p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/openbsd/openssh-40-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SSH List Upgrade</title>
		<link>http://erdelynet.com/tech/ssh/ssh-list-upgrade/</link>
		<comments>http://erdelynet.com/tech/ssh/ssh-list-upgrade/#comments</comments>
		<pubDate>Fri, 11 Feb 2005 08:51:49 +0000</pubDate>
		<dc:creator>merdely</dc:creator>
				<category><![CDATA[SSH]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">/2005/02/11/ssh/ssh-list-upgrade/</guid>
		<description><![CDATA[I&#8217;ve finally gotten sick of Mailman. There are so many issues with (at least on MY OpenBSD box) subscriptions. And, with the recent security issue found, I thought I&#8217;d switch to]]></description>
			<content:encoded><![CDATA[<p><a href="/ssh-l/"><img src="/images/mail.jpg" alt="ssh-l" width="128" height="128" border="0" align="right" /></a>I&#8217;ve finally gotten sick of Mailman. There are so many issues with (at least on MY OpenBSD box) subscriptions. And, with the recent security issue found, I thought I&#8217;d switch to <a href="http://www.math.uh.edu/majordomo/"Majordomo</a>.</p>
<p>Also, I figured if Majordomo was good enough for the OpenBSD lists, it&#8217;s good enough for my server running OpenBSD, right?<span id="more-49"></span></p>
<p>What this means to you: hopefully &#8212; not much. There are some extra features with Majordomo that several people have asked for:<br />
1. You can enable, for your self, a Subject Prefix (&#8220;[ssh]&#8220;). To do this, go to http://erdelynet.com/ssh-l/, sign in and check the box for &#8220;prefix&#8221;.<br />
2. You can add additional aliases for your address so you can post from multiple email accounts while only receiving mail at one account. Again, go into your settings and under Change Settings, you&#8217;ll find a section on aliases.</p>
<p>If you were using multiple addresses previously (using nomail for your send-only addresses), please add your send-only addresses to your &#8220;main&#8221; address as aliases and unsubscribe the nomail-set addresses (to reduce list clutter).</p>
<p>See the </a><a href="http://archive.erdelynet.com/ssh-l/2005-02/msg00029.php">list archive message</a> about the upgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://erdelynet.com/tech/ssh/ssh-list-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
