<?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>kb.hurricane-ridge.com &#187; ssh</title>
	<atom:link href="http://kb.hurricane-ridge.com/tag/ssh/feed" rel="self" type="application/rss+xml" />
	<link>http://kb.hurricane-ridge.com</link>
	<description>My personal - but public - knowledge base</description>
	<lastBuildDate>Mon, 09 Jan 2012 14:49:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>rsync with a non-default ssh port</title>
		<link>http://kb.hurricane-ridge.com/applications/rsync-with-a-non-default-ssh-port</link>
		<comments>http://kb.hurricane-ridge.com/applications/rsync-with-a-non-default-ssh-port#comments</comments>
		<pubDate>Wed, 28 Dec 2011 13:49:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=1109</guid>
		<description><![CDATA[The rsync man page notes that the &#8220;-e&#8221; or &#8220;&#8211;rsh&#8221; flag lets you &#8220;specify the remote shell to use&#8221;. This can be used to specify transfer over a non-standard SSH port using the &#8220;-p&#8221; flag to the ssh binary:]]></description>
			<content:encoded><![CDATA[<p>The rsync man page notes that the &#8220;-e&#8221; or &#8220;&#8211;rsh&#8221; flag lets you &#8220;specify the remote shell to use&#8221;.  This can be used to specify transfer over a non-standard SSH port using the &#8220;-p&#8221; flag to the ssh binary:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
SSH_PORT=...
rsync [OPTION...] -e &quot;ssh -p $SSH_PORT&quot; [USER@]HOST:SRC... [DEST]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/applications/rsync-with-a-non-default-ssh-port/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.ssh/config settings for EC2 hosts</title>
		<link>http://kb.hurricane-ridge.com/aws/ec2/sshconfig-settings-for-ec2-hosts</link>
		<comments>http://kb.hurricane-ridge.com/aws/ec2/sshconfig-settings-for-ec2-hosts#comments</comments>
		<pubDate>Sun, 21 Feb 2010 15:25:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EC2]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=854</guid>
		<description><![CDATA[Seen multiple places around the web; I&#8217;m not sure where attribution should lie, but this is not original to me: # ~/.ssh/config # Host *.amazonaws.com CheckHostIP no StrictHostKeyChecking no UserKnownHostsFile /dev/null]]></description>
			<content:encoded><![CDATA[<p>Seen multiple places around the web; I&#8217;m not sure where attribution should lie, but this is not original to me:</p>
<p><code><br />
# ~/.ssh/config<br />
#<br />
Host *.amazonaws.com<br />
  CheckHostIP no<br />
  StrictHostKeyChecking no<br />
  UserKnownHostsFile /dev/null<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/aws/ec2/sshconfig-settings-for-ec2-hosts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using sftp on an alternate port</title>
		<link>http://kb.hurricane-ridge.com/applications/using-sftp-on-an-alternate-port</link>
		<comments>http://kb.hurricane-ridge.com/applications/using-sftp-on-an-alternate-port#comments</comments>
		<pubDate>Fri, 07 Aug 2009 16:43:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=580</guid>
		<description><![CDATA[Unlike ssh and scp, sftp does not have a &#8220;-p&#8221; or &#8220;-P&#8221; flag to specify an alternate port. Instead, if the host you are connecting to has ssh running on a port other than 22, you need to use the &#8220;-o&#8221; flag: sftp -oPort=2345 remote.hurricane-ridge.com According to the man page, &#8220;-o&#8221; allows you to &#8220;give [...]]]></description>
			<content:encoded><![CDATA[<p>Unlike ssh and scp, sftp does not have a &#8220;-p&#8221; or &#8220;-P&#8221; flag to specify an alternate port.  Instead, if the host you are connecting to has ssh running on a port other than 22, you need to use the &#8220;-o&#8221; flag:</p>
<p><code>sftp -oPort=2345 remote.hurricane-ridge.com</code></p>
<p>According to the man page, &#8220;-o&#8221; allows you to &#8220;give options in the format used in the configuration file.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/applications/using-sftp-on-an-alternate-port/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bookmarks for April 25, 2009</title>
		<link>http://kb.hurricane-ridge.com/links/bookmarks-for-april-25-2009</link>
		<comments>http://kb.hurricane-ridge.com/links/bookmarks-for-april-25-2009#comments</comments>
		<pubDate>Tue, 28 Apr 2009 21:07:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[healthcheck]]></category>
		<category><![CDATA[rdp]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tripwire]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=415</guid>
		<description><![CDATA[Links for April 25, 2009: Backup, Restore, and Disaster Recovery Solutions for PostgreSQL Database on NetApp Storage Systems &#8211; &#34;This document describes the operation of PostgreSQL on NetApp&#174; storage systems. This report serves as a guide to get a PostgreSQL database up and running on NetApp. This guide assumes a basic knowledge of both NetApp [...]]]></description>
			<content:encoded><![CDATA[<p>Links for April 25, 2009:</p>
<ul>
<li><a href="http://media.netapp.com/documents/tr-3763.pdf">Backup, Restore, and Disaster Recovery Solutions for PostgreSQL Database on NetApp Storage Systems</a> &#8211; &quot;This document describes the operation of PostgreSQL on NetApp&reg; storage systems. This report serves as a guide to get a PostgreSQL database up and running on NetApp. This guide assumes a basic knowledge of both NetApp and PostgreSQL and the underlying systems.&quot;</li>
<li><a href="http://www.tripwire.com/configcheck/">Tripwire ConfigCheck &#8211; Configuration Control for Virtual and Physical Infrastructures</a> &#8211; &quot;Tripwire&reg; ConfigCheckTM is a free utility that rapidly assesses the security of VMware ESX 3.0 and 3.5 hypervisor configurations compared to the VMware Infrastructure 3 Security Hardening guidelines.&quot;</li>
<li><a href="http://sourceforge.net/projects/esxhealthscript/">SourceForge.net: ESX Healthcheck Script</a> &#8211; &quot;A script to automatically create documentation for ESX hosts. The output is in HTML format and can be emailed to you directly.&quot;</li>
<li><a href="http://www.mremote.org/wiki/default.aspx?AspxAutoDetectCookieSupport=1">Main Page &#8211; mRemote</a> &#8211; &quot;mRemote is a full-featured, multi-tab remote connections manager.&quot;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/links/bookmarks-for-april-25-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

