<?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>JAKERI &#187; Other</title>
	<atom:link href="http://www.jakeri.net/category/other/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jakeri.net</link>
	<description>Consulting/Development in Java, Objective-C for web based systems and iPhone</description>
	<lastBuildDate>Sun, 23 May 2010 20:04:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sixten 1 year old</title>
		<link>http://www.jakeri.net/2009/09/sixten-1-year-old/</link>
		<comments>http://www.jakeri.net/2009/09/sixten-1-year-old/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 13:48:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[1]]></category>
		<category><![CDATA[6-10]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">http://www.jakeri.net/2009/09/sixten-1-year-old/</guid>
		<description><![CDATA[<p>My son is now 1 year old!
That has to be celebrated with a post. His birthday was September 15th. </p>
<p></p>
]]></description>
			<content:encoded><![CDATA[<p>My son is now 1 year old!<br />
That has to be celebrated with a post. His birthday was September 15th. </p>
<p><a href="http://www.jakeri.net/wp-content/uploads/2009/09/p_1280_853_8DC6E743-1994-4718-A961-94797DB36C3B.jpeg"><img src="http://www.jakeri.net/wp-content/uploads/2009/09/p_1280_853_8DC6E743-1994-4718-A961-94797DB36C3B.jpeg" alt="" width="199" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jakeri.net/2009/09/sixten-1-year-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSL to SSH tunneling (stunnel)</title>
		<link>http://www.jakeri.net/2009/01/ssl-to-ssh-tunneling-stunnel/</link>
		<comments>http://www.jakeri.net/2009/01/ssl-to-ssh-tunneling-stunnel/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 22:35:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[forward]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[stunnel]]></category>
		<category><![CDATA[tunnel]]></category>

		<guid isPermaLink="false">http://www.jakeri.net/?p=99</guid>
		<description><![CDATA[<p>Sometimes it can be handy to reach your home server even if you have all sorts of proxy servers and firewalls between you and your home server (e.g. from work). </p>
<p>Stunnel to the rescue!. Compile it, install it or just download it from some repository (I used macports).</p>
<p>On the server:</p>

Create server configuration file for stunnel. Example [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it can be handy to reach your home server even if you have all sorts of proxy servers and firewalls between you and your home server (e.g. from work). </p>
<p><strong><a href="http://www.stunnel.org/">Stunnel</a> to the rescue!</strong>. Compile it, install it or just download it from some repository (I used <a href="http://www.macports.org/">macports</a>).</p>
<p>On the server:</p>
<ol>
<li>Create server configuration file for stunnel. Example below accepts ssl traffic on port 443 and forwards unencrypted traffic to the ssh port (22). Add your own certificate file for higher security.<br/><br />
<code>cert=stunnel.pem<br />
pid=/tmp/stunnel.pid<br />
[stunnel443]<br />
accept = 192.168.1.7:443<br />
connect = 192.168.1.7:22</code>
</li>
<li>Run <code>sudo stunnel &lt;server-config-file&gt;</code></li>
<li>Test to connect with openssl, <code>openssl s_client -connect 192.168.1.7:443</code>. After all ssl handshake code you should probably get something like: <em>SSH-1.99-OpenSSH_5.1</em></li>
<li>And now you have a SSH over SSL!</li>
</ol>
<p>On your client machine:</p>
<ol>
<li>Create a new client side configuration file. This will create a listener on port 21222 and all traffic will be sent ssl-encrypted to 192.168.1.7:443<br/><br />
<code>#cert = stunnel.pem<br />
pid=/tmp/stunnelclient.pid<br />
#foreground=yes<br />
client=yes<br />
[21222]<br />
accept=21222<br />
connect=192.168.1.7:443</code>
</li>
<li>Run <code>sudo stunnel &lt;client-config-file&gt;</code></li>
<li>It should now be possible to run <code>ssh -p 21222 localhost</code> to create a connection to your server machine</li>
</ol>
<p>Voilà, a SSL tunnel for transporting SSH!<br />
All SSH traffic nicely hidden in a SSL tunnel.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jakeri.net/2009/01/ssl-to-ssh-tunneling-stunnel/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Sixten John Hugo Sultan</title>
		<link>http://www.jakeri.net/2008/09/sixten-john-hugo-sultan/</link>
		<comments>http://www.jakeri.net/2008/09/sixten-john-hugo-sultan/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 07:55:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[6-10]]></category>
		<category><![CDATA[child]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[qik]]></category>
		<category><![CDATA[Sixten]]></category>
		<category><![CDATA[son]]></category>

		<guid isPermaLink="false">http://www.jakeri.net/?p=55</guid>
		<description><![CDATA[<p>Our first child was born the 15th September 2008. It is a small boy weighing 2270 g at birth. </p>

<p>

</p>
<p>He was born one month premature. After one week at the hospital we are now home at our apartment.</p>
<p></p>
<p>A small movie clip done using qik on my iPhone.</p>
<p></p>
]]></description>
			<content:encoded><![CDATA[<p>Our first child was born the 15th September 2008. It is a small boy weighing 2270 g at birth. </p>
<div id="Sixten_cupdwn" title=""></div>
<p><script type="text/javascript" src="http://countupdown.appspot.com/s/j.js"></script><br />
<script type="text/javascript" src="http://countupdown.appspot.com/Sixten?type=json&#038;cb=y"></script><br />
<a href="http://www.flickr.com/photos/jakeri/2885380472/" title="Sixten Sultan by jakeri, on Flickr"><img src="http://farm4.static.flickr.com/3257/2885380472_c8e3436f52.jpg" width="500" height="333" alt="Sixten Sultan" /></a></p>
<p>He was born one month premature. After one week at the hospital we are now home at our apartment.</p>
<p><a href="http://www.flickr.com/photos/jakeri/2885667240/" title="Sixten sleeping by jakeri, on Flickr"><img src="http://farm4.static.flickr.com/3012/2885667240_eea0d4ed59.jpg" width="333" height="500" alt="Sixten sleeping" /></a></p>
<p>A small movie clip done using <a href="http://qik.com/jakeri">qik</a> on my iPhone.</p>
<p><object width="425" height="319"><param name="movie" value="http://qik.com/swfs/qik_player.swf?streamname=881a2905894d44828c6d0ae1bd7443f7&#038;vid=335185&#038;playback=false&#038;polling=false&#038;user=jakeri&#038;displayname=jakeri&#038;safelink=jakeri&#038;userlock=true&#038;islive=&#038;username=anonymous" ></param><param name="wmode" value="transparent" ></param><param name="allowScriptAccess" value="always" ><embed src="http://qik.com/swfs/qik_player.swf?streamname=881a2905894d44828c6d0ae1bd7443f7&#038;vid=335185&#038;playback=false&#038;polling=false&#038;user=jakeri&#038;displayname=jakeri&#038;safelink=jakeri&#038;userlock=true&#038;islive=&#038;username=anonymous" type="application/x-shockwave-flash" wmode="transparent" width="425" height="319" allowScriptAccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jakeri.net/2008/09/sixten-john-hugo-sultan/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
