<?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>No Name &#187; serveraliveinterval</title>
	<atom:link href="http://blog.schoash.com/tag/serveraliveinterval/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.schoash.com</link>
	<description></description>
	<lastBuildDate>Thu, 07 Oct 2010 13:18:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Keeping SSH Session Alive</title>
		<link>http://blog.schoash.com/2009/12/03/keeping-ssh-session-alive/</link>
		<comments>http://blog.schoash.com/2009/12/03/keeping-ssh-session-alive/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 10:42:31 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[dropping ssh]]></category>
		<category><![CDATA[keep session alive]]></category>
		<category><![CDATA[prevent dropping ssh]]></category>
		<category><![CDATA[serveraliveinterval]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh connection]]></category>

		<guid isPermaLink="false">http://blog.schoash.com/?p=177</guid>
		<description><![CDATA[Preventing a SSH connection from dropping while you are inactive or waiting for a script to finish is quite easy. If you are on a Ubuntu or Debian client you only have to add one line to

/etc/ssh/ssh_config
ServerAliveInterval 5

In OSX the config file for ssh can be found in /etc/ssh_config.
Actually this line sends a keep-alive packet [...]]]></description>
			<content:encoded><![CDATA[<p>Preventing a SSH connection from dropping while you are inactive or waiting for a script to finish is quite easy. If you are on a Ubuntu or Debian client you only have to add one line to<br />
<code><br />
/etc/ssh/ssh_config<br />
ServerAliveInterval 5<br />
</code><br />
In OSX the config file for ssh can be found in /etc/ssh_config.</p>
<p>Actually this line sends a keep-alive packet to the server every 5 seconds. You can change the interval as you like, but for me it works best with 5 seconds.</p>
<p>Alternatively you can also use the parameter when connecting to the remote host. The command looks like this:<br />
<code><br />
ssh -o ServerAliveInterval=10<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schoash.com/2009/12/03/keeping-ssh-session-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

