<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>John Spencer&#039;s Blog</title>
	<atom:link href="http://johnspencerccie.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnspencerccie.wordpress.com</link>
	<description>Just another CCIE weblog</description>
	<lastBuildDate>Wed, 06 Jul 2011 16:43:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='johnspencerccie.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>John Spencer&#039;s Blog</title>
		<link>http://johnspencerccie.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://johnspencerccie.wordpress.com/osd.xml" title="John Spencer&#039;s Blog" />
	<atom:link rel='hub' href='http://johnspencerccie.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Tabbed Telnet Sessions for Gnome Terminal</title>
		<link>http://johnspencerccie.wordpress.com/2010/01/09/tabbed-telnet-sessions-for-gnome-terminal/</link>
		<comments>http://johnspencerccie.wordpress.com/2010/01/09/tabbed-telnet-sessions-for-gnome-terminal/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 10:39:08 +0000</pubDate>
		<dc:creator>John Spencer</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ccie lab]]></category>
		<category><![CDATA[ccna]]></category>
		<category><![CDATA[dynagen]]></category>
		<category><![CDATA[dynamips]]></category>
		<category><![CDATA[gnome-terminal]]></category>
		<category><![CDATA[gns3]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[tabs]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://johnspencerccie.wordpress.com/?p=8</guid>
		<description><![CDATA[GNS3 has become quite a popular tool with many people in the Networks field, either for learning or testing configurations. The ability to telnet simultaneously to the devices in a lab using tabbed sessions is quite useful.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnspencerccie.wordpress.com&amp;blog=11110713&amp;post=8&amp;subd=johnspencerccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog entry is adapted from a comment I originally posted on http://www.the-little-things.net/?p=16</p>
<p>GNS3 has become quite a popular tool with many people in the Networks field, either for learning or testing configurations. The ability to telnet simultaneously to the devices in a lab using tabbed sessions is quite useful.</p>
<p>The reason tabbed telnet sessions are useful, is that with many telnet sessions the tabbed sessions save desktop real estate, are more organised and if each tab has the name of the device, it helps to go to the device you wish to efficiently.</p>
<p>For those looking for using multiple tabs, there is a version of Tera Term with Tera term collector on Windows that can do it which is free or SecureCRT which is not free but is a great piece of software. Putty also has Putty Connection Manager for tabbed browsing on the Windows Platform.</p>
<div id="_mcePaste">However on Ubuntu or other Linux distros using gnome you can use the following to telnet to multiple devices in a lab or network and have the sessions appear in tabs.</div>
<div>
<pre>#!/bin/sh

# created John Spencer CCIE#14405 Fri 26 Oct 2007 21:15:01 BST

#

# Purpose to Telnet to routers in Dynagen or GNS Lab running on local machine

# Script would be adaptable to telnet to devices on other hosts without 

# difficulty by replacing localhost with a hostname or IP address.
# RouterTelnet is the name of a profile saved in gnome terminal 

# with preferred colours and fonts.
#

# To use without a specified profile use tab -t etc instead of tab-with-profile.

# e.g tab -t R1 -e telnet localhost 2000\

# For other options in a shell enter gnome-terminal help

# You may adapt or distribute but include the above text.

gnome-terminal \

tab-with-profile=RouterTelnet -t R1 -e telnet localhost 2000\

tab-with-profile=RouterTelnet -t R2 -e telnet localhost 2001\

tab-with-profile=RouterTelnet -t R3 -e telnet localhost 2002\

tab-with-profile=RouterTelnet -t R4 -e telnet localhost 2003\

tab-with-profile=RouterTelnet -t R5 -e telnet localhost 2004\

tab-with-profile=RouterTelnet -t R6 -e telnet localhost 2005\

tab-with-profile=RouterTelnet -t R7_SW1 -e telnet localhost 2006\

tab-with-profile=RouterTelnet -t R8_SW2 -e telnet localhost 2007\

tab-with-profile=RouterTelnet -t R9 -e telnet localhost 2008\
#---End of File---#</pre>
</div>
<p>Save the file as telnet.sh and make it executable. If you double click this file it will telnet to each device in the script with multiple tabs and set the name of each tab. If a router is not running the script will still open those that are.</p>
<p>I find this quite useful to keep on the desktop. Notice I also use a gnome-terminal profile called RouterTelnet which contains my colour preferences, to use the default it is explained within the comments in the script.</p>
<div id="_mcePaste">If the above scripts are saved in <strong>/usr/local/bin</strong> and a launcher is added to the desktop with the command <strong>sh </strong><strong>scriptname.sh</strong> where scriptname is whatever you decide to call the script, you can then just double click on the launcher shortcut on the desktop to run the script.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnspencerccie.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnspencerccie.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnspencerccie.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnspencerccie.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnspencerccie.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnspencerccie.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnspencerccie.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnspencerccie.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnspencerccie.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnspencerccie.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnspencerccie.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnspencerccie.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnspencerccie.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnspencerccie.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnspencerccie.wordpress.com&amp;blog=11110713&amp;post=8&amp;subd=johnspencerccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnspencerccie.wordpress.com/2010/01/09/tabbed-telnet-sessions-for-gnome-terminal/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d5acfa77f0b8a6e64ba042200f6298b1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnspencerccie</media:title>
		</media:content>
	</item>
		<item>
		<title>New Blog</title>
		<link>http://johnspencerccie.wordpress.com/2009/12/26/hello-world/</link>
		<comments>http://johnspencerccie.wordpress.com/2009/12/26/hello-world/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 09:10:46 +0000</pubDate>
		<dc:creator>John Spencer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[More to follow, in the meantime I hope you all had a great Christmas and wish you a prosperous New Year.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnspencerccie.wordpress.com&amp;blog=11110713&amp;post=1&amp;subd=johnspencerccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>More to follow, in the meantime I hope you all had a great Christmas and wish you a prosperous New Year.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johnspencerccie.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johnspencerccie.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johnspencerccie.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johnspencerccie.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johnspencerccie.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johnspencerccie.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johnspencerccie.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johnspencerccie.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johnspencerccie.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johnspencerccie.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johnspencerccie.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johnspencerccie.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johnspencerccie.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johnspencerccie.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johnspencerccie.wordpress.com&amp;blog=11110713&amp;post=1&amp;subd=johnspencerccie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johnspencerccie.wordpress.com/2009/12/26/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d5acfa77f0b8a6e64ba042200f6298b1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">johnspencerccie</media:title>
		</media:content>
	</item>
	</channel>
</rss>
