<?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>Cisco Tips &#38; Tricks</title>
	<atom:link href="http://ciscotips.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ciscotips.wordpress.com</link>
	<description>Make life easy for Cisco Engineers</description>
	<lastBuildDate>Sun, 08 Nov 2009 21:51:55 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ciscotips.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/4758be7c92a99d6fdaca6f3611741721?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Cisco Tips &#38; Tricks</title>
		<link>http://ciscotips.wordpress.com</link>
	</image>
			<item>
		<title>CCIE notes for GLBP</title>
		<link>http://ciscotips.wordpress.com/2009/11/08/ccie-notes-for-glbp/</link>
		<comments>http://ciscotips.wordpress.com/2009/11/08/ccie-notes-for-glbp/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 05:47:54 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[Technology and Software]]></category>
		<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=173</guid>
		<description><![CDATA[Gateway load balancing protocol performs similar function to HSRP and VRRP. In both HSRP and VRRP,  group of routers participating in first hop-redundancy has one Active and can have multiple Client routers. At one single time, traffic is being passed through Active router, leaving client routers with unused bandwidth. Client routers will only become active once Active router [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=173&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Gateway load balancing protocol performs similar function to HSRP and VRRP. In both HSRP and VRRP,  group of routers participating in first hop-redundancy has one Active and can have multiple Client routers. At one single time, traffic is being passed through Active router, leaving client routers with unused bandwidth. Client routers will only become active once Active router in a group fails. We can create multiple groups and create different active routers but it results in extra administrative burden.</p>
<p>GLBP on the other hand can provide load balancing over multiple routers (gateways) using a Single Virtual IP and multiple Virtual mac-addresses. The bandwidth/traffic load is shared between multiple routers participating in the group rather than being handled by a single active router.</p>
<p>Following are the important points conceptually for GLBP.</p>
<ol>
<li>GLBP uses single Virtual IP and multiple mac-addresses to provide first-hop Gateway redundancy.</li>
<li>In GLBP, there can be four routers/gateways in a group</li>
<li>Hello messages are used to communicate with in the group destined to 224.0.0.102, udp port 3222 and they will be sent every 3 secs by default.</li>
<li>initially group members will elect one AVG ( Active Virtual Gateway) and other routers will act as backup AVG&#8217;s incase the active AVG fails</li>
<li>AVG will assign Virtual mac-addresses to other routers, they are known as AVF&#8217;s ( Active Virtual Forwarders)</li>
<li>Each AVF assumes responsibility for  forwarding  packets sent to Virtual Mac&#8217;s assigned by AVG.</li>
<li>AVG is responsible for answering ARP requests for Virtual IP&#8217;s</li>
</ol>
<p>Configuring GLBP</p>
<p>R2(config-if)#glbp 1 load-balancing ?<br />
  host-dependent  Load balance equally, source MAC determines forwarder choice<br />
  round-robin     Load balance equally using each forwarder in turn<br />
  weighted        Load balance in proportion to forwarder weighting</p>
<p>There are three different types of Load balancing algorithms in GLBP.</p>
<p>Host-Dependent</p>
<ol>
<li>The Mac-address of the host is used to determine which AVF&#8217;s  mac is the host directed towards.</li>
<li>A given host is guaranteed to use the same Virtual Mac as long as number of VF&#8217;s in the GLBP group are constant</li>
<li>Host dependant GLBP is not recommended in situation where there are small number of hosts, for example, less than 20</li>
</ol>
<p>Weighted</p>
<ol>
<li>GLBP places a weight on each device to calculate the amount of load sharing that will occur through MAC assignment</li>
<li>Each GLBP router in a group will advertise its weight and AVG will act based on that value</li>
<li>For example  we have two routers, Router A and Router B. If router A has double the bandwidth capacity then router B. Router A will be configured with the double weighting value of router B</li>
</ol>
<p>Round-Robin</p>
<ol>
<li>With Round-robin VF mac-address is used sequentially in ARP replies for the virtual IP</li>
<li>This is the default type of GLBP algorithm</li>
<li>It is suitable for any number of hosts.</li>
</ol>
<p>Steps for  configuring GLBP</p>
<ol>
<li>enable GLBP with glbp 1 load-balancing</li>
<li>glbp 1 priority ( Higher is better, default is 100)</li>
<li>glbp 1 ip x.x.x.x</li>
<li>glbp 1 preempt &lt; To enable preempt, by default its disabled&gt;</li>
<li>glbp 1 authentication  ( Enabling authentication with in a group)</li>
</ol>
<p>Verification</p>
<p>Show glbp</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=173&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/11/08/ccie-notes-for-glbp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>BGP Regular expressions / Public route-servers</title>
		<link>http://ciscotips.wordpress.com/2009/10/25/bgp-regular-expressions-public-route-servers/</link>
		<comments>http://ciscotips.wordpress.com/2009/10/25/bgp-regular-expressions-public-route-servers/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 05:28:34 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[IP Routing]]></category>
		<category><![CDATA[bgp]]></category>
		<category><![CDATA[ccie]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=169</guid>
		<description><![CDATA[I was looking at some older posts at Groupstudy and Dale  posted the link to public route-servers. I agree the best way to practice regular-expressions for CCIE is to use one of the following public route-servers.
From: http://www.cymru.com/Documents/secure-bgp-template.html
 route-views.oregon-ix.net
 ner-routes.bbnplanet.net
 route-server.cerf.net
 route-server.ip.att.net
 route-server.east.attcanada.com
 route-server.west.attcanada.com
 route-server.cbbtier3.att.net
 route-server.gblx.net
 route-server.as5388.net
 route-server.savvis.net
 route-server.colt.net
 route-server.opentransit.net
 route-server.gt.ca
 public-route-server.is.co.za (South African routes only)
 route-server.belwue.de
 route-views.on.bb.telus.com
 route-views.ab.bb.telus.com
 route-server.ip.tiscali.net
 route-server.wcg.net
 route-server.manilaix.net.ph
 route-server.ip.ndsoftware.net
 route-server.utah.rep.net
 route-server.he.net
 zebra.swinog.ch
Just telnet to one of the above route-servers and you can login via guest/anonymous account. There you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=169&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was looking at some older posts at Groupstudy and Dale  posted the link to public route-servers. I agree the best way to practice regular-expressions for CCIE is to use one of the following public route-servers.</p>
<p>From: <a href="http://www.cymru.com/Documents/secure-bgp-template.html">http://www.cymru.com/Documents/secure-bgp-template.html</a></p>
<p> route-views.oregon-ix.net<br />
 ner-routes.bbnplanet.net<br />
 route-server.cerf.net<br />
 route-server.ip.att.net<br />
 route-server.east.attcanada.com<br />
 route-server.west.attcanada.com<br />
 route-server.cbbtier3.att.net<br />
 route-server.gblx.net<br />
 route-server.as5388.net<br />
 route-server.savvis.net<br />
 route-server.colt.net<br />
 route-server.opentransit.net<br />
 route-server.gt.ca<br />
 public-route-server.is.co.za (South African routes only)<br />
 route-server.belwue.de<br />
 route-views.on.bb.telus.com<br />
 route-views.ab.bb.telus.com<br />
 route-server.ip.tiscali.net<br />
 route-server.wcg.net<br />
 route-server.manilaix.net.ph<br />
 route-server.ip.ndsoftware.net<br />
 route-server.utah.rep.net<br />
 route-server.he.net<br />
 zebra.swinog.ch</p>
<p>Just telnet to one of the above route-servers and you can login via guest/anonymous account. There you go and you can use some basic show commands.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=169&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/10/25/bgp-regular-expressions-public-route-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>A Sneak Peek at the v4 CCIE R/S Lab by Wendell</title>
		<link>http://ciscotips.wordpress.com/2009/10/21/a-sneak-peek-at-the-v4-ccie-rs-lab-by-wendell/</link>
		<comments>http://ciscotips.wordpress.com/2009/10/21/a-sneak-peek-at-the-v4-ccie-rs-lab-by-wendell/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:23:25 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=167</guid>
		<description><![CDATA[The recently announced changes to the CCIE R/S written and lab exams took effect this week. I recently had the chance to take the R/S lab again, as part of the Beta testing &#8211; so I decided to save up some observations and post them around the time the new exam has come out. Today [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=167&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The recently announced changes to the <a href="http://www.cisco.com/go/ccie">CCIE R/S written and lab exams</a> took effect this week. I recently had the chance to take the R/S lab again, as part of the Beta testing &#8211; so I decided to save up some observations and post them around the time the new exam has come out. Today I&#8217;ll look at a variety of things about the lab exam, and make another post next week concentrating on the biggest change: The 2-hour troubleshooting section.</p>
<p>You know, the strange thing is that many times over the years, I&#8217;ve wondered if they&#8217;d let me take the CCIE R/S Lab again &#8211; and not take away my CCIE number if I failed. It has certainly changed a lot since I took it back in 1995. I&#8217;ve always had the itch to try for another CCIE, but I think I&#8217;ve had a cumulative 3-4 weeks in the last 5 years without a book to work on (that&#8217;s definitely not a complaint), and it obviously takes more than casual effort to prep for another CCIE lab. And getting a CCIE in your spare time pretty much changes your life until you get it done, and I&#8217;ve never wanted another CCIE bad enough to make that sacrifice. But, I just always thought it&#8217;d be interesting to sit the lab again. And then Maurilio asked a few of us Cisco Press CCIE authors, plus others I&#8217;m sure, to sit the lab and give it a test. And it was fun.</p>
<p>OK, on to stuff you folks might care more about. I came to the exam with several specific items to keep an eye out for &#8211; things like the impact of adding a 2-hour troubleshooting section, how the config section would be different now that it&#8217;s 5.5 hours instead of 7.5, and the supposedly-dreaded open-ended questions. But the biggest surprise was obvious from the first few minutes of lab time &#8211; they changed the user interface of what you see to access the lab, and as a result, there&#8217;s no printed lab exercise book. The only paper for the lab is the note paper they give you to write on.</p>
<p>In the old days, you got a lab booklet that you couldn&#8217;t write on, but you could do the natural thing and pick up the book to look at the various lab requirements. I believe it&#8217;s true that the book had some lab diagrams as well. Now you get a GUI interface from which you can pull up the many different lab diagrams, read the various lab exercises. My gut reaction was that I didn&#8217;t like not having a book. After experiencing it, I thought the replacement GUI would have been reasonable if I had had time to practice with it.</p>
<p>The good part of the GUI was that once I was used to it, I could navigate to the next topic for both troubleshooting and config easily. The GUI essentially indexed the main lab exercise tasks, which may be a bit more convenient than flipping pages in a booklet. Once I got used to it (20 minutes maybe), I stopped to ask myself if the user interface itself would slow me down compared to the paper booklet, and I decided that if the small bugs were removed (e.g., no back button on the browser to get to the docs), AND if I had a chance to practice before the lab (so that 20 minute learning curve wasn&#8217;t part of the timed test), that it wouldn&#8217;t have hurt. Otherwise, call it a 20 minute hit for the day, wild unscientific guess. (I did ask, and as of now, there is no tutorial available before the exam; if it&#8217;s your first lab with this interface, you&#8217;ll get to learn it concurrent with doing the troubleshooting. I&#8217;d suggest asking as many questions as you can about the user interface before starting the timer.)</p>
<p>There were negatives to the GUI, but of course GUIs often have to do with personal preference. In this case, a few of my author friends and I were allowed to discuss amongst ourselves our impressions, and we all agreed that the navigation in the GUI was a bit of a problem. EG, to view a figure, you click, and a window pops, which is fine. However, you can&#8217;t minimize the window so that the bigger window behind it, where you access the console windows, is hidden. You can re-size, and move, but not minimize. To see another figure, the figure shows up in the same window, so to view both &#8211; like a cabling reference and a different VLAN reference &#8211; you have to toggle back and forth, and never see both at once. Then, to see the console term emulator windows, you have to move the figure window to the side, and then drag it back to see it again. No minimize/pop-open toggle like with Windows. Each figure required a different window size/shape to see the whole figure, and all the figures showed up in this one window, so there was no ability to make it the right size and find a good place on the screen for it.</p>
<p>Sorry for the ramble, but I wanted enough detail out to make a point: If I were taking it again to pass, I&#8217;d consider drawing a few of the figures for the config section, particularly the LAN layer 2 figure &#8211; both cabling and VLANs &#8211; on paper before even beginning to configure. (I would do this for the config section, but not for the t&#8217;shooting section.)</p>
<p>Next, let me give you some idea on the whole &#8220;is it too much&#8221; issue.</p>
<p>Most CCIE lab candidates that pass seem to do so with at least a little time to spare, and those that fail often run out of time, or don&#8217;t have time to review. So, I came to the test asking myself &#8220;if I were truly prepared for the lab, could I have finished on time enough to review my work?&#8221; This question has a new twist, now that it&#8217;s 3-part: open ended questions, then 2 hours of t&#8217;shooting, and then 5.5 hours config. (FYI, I didn&#8217;t study except on the flight to Raleigh, and I don&#8217;t stay current on everything so I could go fast enough to pass &#8211; so I estimated what &#8220;well prepared&#8221; meant.) The short answer is that I think that the troubleshooting section was attainable for a well-prepared candidate, and maybe a little too much (maybe shave 10% of the tasks to be fair), but the config section was too much by at least 20%. (My buddies co-authors thought roughly the same on config, and maybe that the t&#8217;shooting needed to be shaved more than my 10% guesstimate.)</p>
<p>Sitting back contemplating the whole &#8220;is it too much&#8221; thing, I came to two conclusions:</p>
<ul>
<li>1) It was a Beta, and Cisco needs some experience with specific lab exams to figure out how much is too much. I&#8217;m sure they didn&#8217;t write all new lab exams, so the trick is to figure out how to compress the former 7.5 hour lab into 5.5 hours. They want you to pass if you know your stuff, and fail if you don&#8217;t. They don&#8217;t want you to fail if you truly know your stuff but they just gave you too much. From a systematic perspective, I think they&#8217;ll get the right mix. (Granted, I&#8217;m sure some of you have contradictory experiences on this point!)</li>
<li>2) I wonder if Cisco considered that the shrinkage from 7.5 to 5.5 hours on the build section was like removing the final 2 hours &#8211; the hours in which you are most familiar with the lab &#8211; rather than removing the first two hours. By the end 3<sup>rd</sup> hour of the build section, I needed the figures less and less. From a sheer mechanics perspective, I worked faster. Call it 3 hours in the config section before I was somewhat comfortable with the topology. With a 5.5 hour build, that splits the unfamiliar/familiar time as 3/2.5 hours. The old 7.5 hours would have given a 3 /4.5 hour split, so it felt like I was losing 2 hours of very productive time.</li>
</ul>
<p>The next thing I was particularly curious about was the open-ended question section. Frankly, I&#8217;m a Dr. Jekyll/Mr. Hyde on this one. Wendell the cert guy looked at my open ended questions, and asked himself: &#8220;If I was truly prepared for the lab, would these questions be a problem?&#8221; Absolutely not. As a guy who has an interest in seeing Cisco certs thrive, I see the open-ended questions for what Cisco claims them to be &#8211; a cheating prevention tool. However, Wendell the imaginary CCIE R/S lab candidate says that the whole idea scares me to death, and may be too unfair to use as a cheating prevention tool. If I had been taking the lab on my nickel for real, rather than just kicking the tires, I would&#8217;ve been pysched out by the open-ended questions. You could get an unlucky draw of questions and get sent home. For real CCIE R/S candidates, I think this means that you don&#8217;t get ready for 70% of the topics, and go take the lab to experience it &#8211; you may not get past the questions. However, from what I saw, and from other discussions, I think if you&#8217;re ready for all aspects of the lab, you&#8217;ll be ready for the open-ended stuff. It&#8217;s just a little scary.</p>
<p>Last thing for today: general difficulty. I tried to imagine myself as a well-prepared candidate, but not over the top &#8211; you know, if I took the classes, did labs from a few lab books, read Doyle/Halabi/etc, practiced a lot for speed, then the lab I got was not too difficult. In fact, I did not see a single item that I viewed as a &#8220;trick&#8221; &#8211; no wording that made me do function X using methods no one in their right mind would try. Everything I saw was detailed &#8211; it required mastery of a lot of topics &#8211; but it was all stuff that you might come across as something you&#8217;d really use in the real world. Really. That was a nice surprise. The difficulty level comes from seeing the requirements, mentally putting it all together, deciding what to configure, configuring, t&#8217;shooting to make sure it works, and doing that 5X faster than you would have to do in real life. But it was refreshing to not see anything that looked like tricks just to make sure you knew how to make one parm on one command do its thing.</p>
<p>One more note on the difficulty level: I think if you prepared with the traditional tools &#8211; books, classes,  lab books, lots of hands-on practice, and understood it, that the difficulty level was very fair and reasonable.</p>
<p>OK, that&#8217; it for today. Next time, I&#8217;ll look at the Troubleshooting section in particular</p>
<p>Source:- <a href="http://www.networkworld.com/community/node/46561">http://www.networkworld.com/community/node/46561</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=167&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/10/21/a-sneak-peek-at-the-v4-ccie-rs-lab-by-wendell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>System MTU / ip ospf mtu-igonore</title>
		<link>http://ciscotips.wordpress.com/2009/10/18/system-mtu-ip-ospf-mtu-igonore/</link>
		<comments>http://ciscotips.wordpress.com/2009/10/18/system-mtu-ip-ospf-mtu-igonore/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 18:54:41 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[IP Routing]]></category>
		<category><![CDATA[Switching]]></category>
		<category><![CDATA[ccie]]></category>
		<category><![CDATA[ospf]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=162</guid>
		<description><![CDATA[I was working on OSPF lab and suddenly on my 3560&#8217;s I saw a OSPF adjacency errors.
%OSPF-5-ADJCHG: Process 1, Nbr 192.168.10.1 on
FastEthernet0/0 from EXSTART to DOWN, Neighbor Down: Too many
retransmissions
%OSPF-5-ADJCHG: Process 1, Nbr 192.168.10.1 on
FastEthernet0/0 from DOWN to DOWN, Neighbor Down: Ignore timer expired
Suddenly I realized that may be I have MTU issues as I just completed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=162&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was working on OSPF lab and suddenly on my 3560&#8217;s I saw a OSPF adjacency errors.</p>
<p>%OSPF-5-ADJCHG: Process 1, Nbr 192.168.10.1 on<br />
FastEthernet0/0 from EXSTART to DOWN, Neighbor Down: Too many<br />
retransmissions</p>
<p>%OSPF-5-ADJCHG: Process 1, Nbr 192.168.10.1 on<br />
FastEthernet0/0 from DOWN to DOWN, Neighbor Down: Ignore timer expired</p>
<p>Suddenly I realized that may be I have MTU issues as I just completed a Q-in Q lab and changed my switch MTU ,  but to double check</p>
<p>I thought of checking a &#8220;debug ip ospf events&#8221; &#8230; and here it was.</p>
<p>OSPF: Rcv DBD from 192.168.10.1 on<br />
FastEthernet0/0 seq 0&#215;12A6 opt 0&#215;52 flag 0&#215;7 len 32  mtu 1504 state<br />
EXSTART</p>
<p>OSPF: Nbr 192.168.10.1 has larger interface MTU</p>
<p>There are multiple ways to fix this, you can either issue &#8220;system mtu 1500&#8243; on switches or use an interface level command on Routers &#8220;Ip ospf mtu-ignore&#8221; . or the third one will be to change MTU on router interfaces ( Least preferred).</p>
<div id="_mcePaste" style="left:-10000px;width:1px;position:absolute;top:258px;height:1px;">when value is changed, it will not be stored in neither running-config</div>
<div id="_mcePaste" style="left:-10000px;width:1px;position:absolute;top:258px;height:1px;">nor startup-config. On Catalyst 3550, this information is stored in a</div>
<div id="_mcePaste" style="left:-10000px;width:1px;position:absolute;top:258px;height:1px;">separate file on the flash. On Catalyst 3560, you can&#8217;t see it, unless</div>
<div id="_mcePaste" style="left:-10000px;width:1px;position:absolute;top:258px;height:1px;">you do &#8220;show system mtu&#8221;.</div>
<p>&#8220;system mtu 1500&#8243; on switches is the default command. Even when value is changed, it will not be stored in  running-config  or startup-config. On Catalyst 3550, this information is stored in a separate file on the flash. On Catalyst 3560, you can&#8217;t see it, unless you do &#8220;show system mtu&#8221;.</p>
<p>This is one of the well-know gotchas on the actual lab exam.You have to know how to solve this. Hence, when configuring routing protocols on switches, make sure you know what the MTU is.</p>
<p>One important thing to note is that you might break stuff in the lab if you were suppose to configure MTU for q-in q lab and later you changed &#8220;System MTU&#8221; in your switch to fix OSPF issue.</p>
<p>You can also use <span style="font-family:'Courier New', Courier, Fixed;line-height:normal;font-size:12px;">system mtu routing 1500 <span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13px;line-height:19px;">in your switch to fix OSPF issue as this will be only used for routing but for Q-in-Q lab switch MTU will be still used as 1504.</span></span></p>
<p>IMHO,Best way to fix this in the lab would be &#8220;ip ospf mtu-ignore&#8221; under the interface on your router.</p>
<p>MTU  has to be the same on both ends of the link before the neighbor can form adjacency.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=162&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/10/18/system-mtu-ip-ospf-mtu-igonore/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>Narbik&#8217;s CCIE study tips</title>
		<link>http://ciscotips.wordpress.com/2009/10/14/narbiks-ccie-study-tips/</link>
		<comments>http://ciscotips.wordpress.com/2009/10/14/narbiks-ccie-study-tips/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 13:48:03 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/2009/10/14/narbiks-ccie-study-tips/</guid>
		<description><![CDATA[Here is the post from Narbik in groupstudy on CCIE studies.
I personally do not agree with time tables, things happen and sometimes we
can not adhere to that time table. You see&#8230;everyone has an approach and i
am sure Anthony gives one of the best recommendations, i have heard what he
recommended to some of my students, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=161&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is the post from Narbik in groupstudy on CCIE studies.</p>
<p>I personally do not agree with time tables, things happen and sometimes we<br />
can not adhere to that time table. You see&#8230;everyone has an approach and i<br />
am sure Anthony gives one of the best recommendations, i have heard what he<br />
recommended to some of my students, and i totally respect and agree with his<br />
approach. But the following is mine:</p>
<p>Divide the blueprint into chunks, this is what i did when i was studying for<br />
the lab:</p>
<p>Switching &#8211; Let&#8217;s say you are doing vendor xyz&#8217;s work book, go through the<br />
switching section and do it couple of times, once you are totally<br />
comfortable with all the switching labs from that particular vendor, you<br />
should do the same labs one more time, but this time you will look up every<br />
command in the DOC CD, and go on from command/section by section until you<br />
are totally comfortable with all aspects of switching. This may take 2 weeks<br />
or 3 weeks, DO NOT set a hard time table, setup a comfortable time table,<br />
one that you can repeat without jeopardizing your family life, and other<br />
important things.</p>
<p>GO through the entire blueprint in that manner and summarize what you<br />
learned from a given section/lab, lab it up, remember the three golden<br />
rules: 1) Configure, 2) Verify, and 3) *TEST*.</p>
<p>Let&#8217;s say your lab is on Monday, take off the Friday before, get up 6:30 AM<br />
and go through the same routine, Shower, Shave, Sh%$, Shampoo&#8230;&#8230;etc&#8230;.<br />
7:30 AM start a mock lab, stop 11:30 for 30 minutes lunch and start back at<br />
12:00 and stop the test at 4:30.<br />
Saturday, Sunday you should go through the same process, Monday your body<br />
has adjusted to that routine and it will be just another day, you will be<br />
able to sit and focus for 8 hours without any problems.</p>
<p>and always remember QUALITY BEATS QUANTITY.</p>
<p>Just my 2 cents.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=161&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/10/14/narbiks-ccie-study-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>Cisco Developers Superstitious? IOS 15.0 ??</title>
		<link>http://ciscotips.wordpress.com/2009/10/05/cisco-developers-superstitious-ios-15-0/</link>
		<comments>http://ciscotips.wordpress.com/2009/10/05/cisco-developers-superstitious-ios-15-0/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 14:19:24 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=159</guid>
		<description><![CDATA[Everybody is talking about it. Are cisco developers superstitious? Why did they skipped IOS 13.0 and 14.0? Well, I can&#8217;t say why but on the serious note, here is the overview
Cisco IOS Software Release 15.0 follows Release 12.4(24)T. Created for wide deployment in the world&#8217;s most demanding enterprise, access, and service provider networks, Cisco IOS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=159&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Everybody is talking about it. Are cisco developers superstitious? Why did they skipped IOS 13.0 and 14.0? Well, I can&#8217;t say why but on the serious note, here is the overview</p>
<div style="font-weight:normal;text-transform:none;text-indent:0;font-style:normal;text-align:left;font-variant:normal;text-decoration:none;margin:0 0 7pt;">Cisco IOS Software Release 15.0 follows Release 12.4(24)T. Created for wide deployment in the world&#8217;s most demanding enterprise, access, and service provider networks, Cisco IOS Software Release 15.0 provides a comprehensive portfolio of Cisco technologies, functions, and hardware support from Releases 12.4 and 12.4T, anchored by an intensive stability and testing program. Important innovations span multiple technology areas, including security, voice, high availability, IP Routing and Multicast, quality of service (QoS), IP Mobility, Multiprotocol Label Switching (MPLS), VPNs, and Cisco IOS MPLS Embedded Management.</div>
<div style="font-weight:normal;text-transform:none;text-indent:0;font-style:normal;text-align:left;font-variant:normal;text-decoration:none;margin:0 0 7pt;">Cisco IOS Software Release 15.0 can help you by providing new feature and hardware support more quickly than in previous Mainline (M) and Technology (T) releases, broadened feature consistency with other major Cisco IOS Software Releases, more predictable new feature release and rebuild schedules, proactive individual release support policies, enhanced release numbering, and clearer software deployment and migration guidelines.</div>
<div style="font-weight:normal;text-transform:none;text-indent:0;font-style:normal;text-align:left;font-variant:normal;text-decoration:none;margin:0 0 7pt;">Here is the link to the new features</div>
<div style="font-weight:normal;text-transform:none;text-indent:0;font-style:normal;text-align:left;font-variant:normal;text-decoration:none;margin:0 0 7pt;"><a href="http://www.cisco.com/en/US/docs/ios/15_0/15_0_1_m/15_0_1_m_newfeatlist.html">http://www.cisco.com/en/US/docs/ios/15_0/15_0_1_m/15_0_1_m_newfeatlist.html</a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=159&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/10/05/cisco-developers-superstitious-ios-15-0/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>Tunneling Solutions in IPv6</title>
		<link>http://ciscotips.wordpress.com/2009/08/11/tunnel-modes-in-ipv6/</link>
		<comments>http://ciscotips.wordpress.com/2009/08/11/tunnel-modes-in-ipv6/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 04:38:57 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=151</guid>
		<description><![CDATA[As usual Narbik posted an excellent post on Groupstudy on IPv6 Tunnels. Here it is
*There are 5 tunneling solution in IPv6:*
 
*1. Using the &#8220;Tunnel mode ipv6ip&#8221;, in this case the tunnel source and
destination are configured with IPv4 addressing and the tunnel interface is
configured with IPv6. This will use protocol 41. This is used for IPv6/IPv4.
*
 
R1(config)#int [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=151&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As usual Narbik posted an excellent post on Groupstudy on IPv6 Tunnels. Here it is</p>
<p>*There are 5 tunneling solution in IPv6:*</p>
<p> </p>
<p>*1. Using the &#8220;Tunnel mode ipv6ip&#8221;, in this case the tunnel source and<br />
destination are configured with IPv4 addressing and the tunnel interface is<br />
configured with IPv6. This will use protocol 41. This is used for IPv6/IPv4.<br />
*</p>
<p> </p>
<p>R1(config)#int tunnel 1</p>
<p>R1(config-if)#ipv6 address 12:1:12::1/64</p>
<p>R1(config-if)#tunnel source 10.1.12.1</p>
<p>R1(config-if)#tunnel destination 10.1.12.2</p>
<p>R1(config-if)#*tunnel mode ipv6ip*</p>
<p> </p>
<p>*2. Using the &#8220;Tunnel mode gre ipv6&#8243;, in this case the tunnel source and<br />
destination are all configured with IPv6 addressing. This is used for<br />
IPv6/IPv6. *</p>
<p> </p>
<p>BB1(config)#int tunnel 1</p>
<p>BB1(config-if)#ipv6 address 121:1:121::111/64</p>
<p>BB1(config-if)#tunnel source 10:1:111::111</p>
<p>BB1(config-if)#tunnel destination 10:1:112::112</p>
<p>BB1(config-if)#*tunnel mode gre ipv6*</p>
<p> </p>
<p>*3. In this case, the third type, the tunnel mode is NOT used at all, note<br />
that the tunnel interface is configured with IPv6 and the tunnel source and<br />
destination is configured with IPv4 but no mention of tunnel mode. This<br />
configuration will use protocol 47. This is used for IPv6/IPv4. *</p>
<p> </p>
<p>R1(config)#int tunnel 13</p>
<p>R1(config-if)#ipv6 address 13:1:13::1/64</p>
<p>R1(config-if)#tunnel source 10.1.13.1</p>
<p>R1(config-if)#tunnel destination 10.1.13.3</p>
<p> </p>
<p>*4. Note in this case a special addressing is assigned to the tunnel<br />
interface which is a concatenation of a reserved IPv6 address of<br />
2002followed by the translated<br />
IPv4 address of a given interface on the router. In this configuration ONLY<br />
the tunnel source address is used and since the tunnel is automatic,<br />
the destination<br />
address is NOT configured. The tunnel mode is set to &#8220;Tunnel mode ipv6ip<br />
6to4&#8243;. Note the IPv4 address of 10.1.1.1 is translated to 0A.01.01.01 and<br />
once concatenated, it will be &#8220;2002:0A01:0101: or 2002:A01:101. This is used<br />
for IPv6/IPv4.*</p>
<p> </p>
<p>R1(config)#interface Tunnel14</p>
<p>R1(config-if)#ipv6 address 2002:A01:101::/128</p>
<p>R1(config-if)#tunnel source 10.1.1.1</p>
<p>R1(config-if)#*tunnel mode ipv6ip 6to4*</p>
<p> </p>
<p>*5. ISATAP, ISATAP works like 6to4 tunnels, with one major difference, it<br />
uses a special IPv6 address which is formed as follows: *</p>
<p>*In this tunnel mode, the network portion can be any IPv6 address, whereas<br />
in 6to4 it had to start with 2002.*</p>
<p>*Note when the IPv6 address is assigned to the tunnel interface, the<br />
&#8220;eui-64&#8243; is used, in this case the host portion of the IPv6 address starts<br />
with &#8220;0000.5EFE&#8221; and then the rest of the host portion is the translated<br />
IPv4 address of the tunnel&#8217;s source IPv4 address. This translation is<br />
performed automatically unlike 6to4. This is used for IPv6/IPv4.*</p>
<p> </p>
<p>R4(config)#int tunnel 46</p>
<p>R4(config-if)#ipv6 address 46:1:46::/64 eui-64</p>
<p>R4(config-if)#tunnel source 10.44.44.44</p>
<p>R4(config-if)#*tunnel mode ipv6ip ISATAP*</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=151&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/08/11/tunnel-modes-in-ipv6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>Undocumented IOS commands</title>
		<link>http://ciscotips.wordpress.com/2009/08/07/undocumented-ios-commands/</link>
		<comments>http://ciscotips.wordpress.com/2009/08/07/undocumented-ios-commands/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 01:01:16 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=147</guid>
		<description><![CDATA[Undocumented IOS commands
 
 
Here you can find a collection of undocumented (not on Cisco Dokumentation CD or in online help) IOS commands:

csim
show interface switching
show ip ospf statistics
show ip ospf m
show ip ospf events
debug ip ospf monitor
no service password-recovery
ttcp
if-con
no snmp-server sparse-tables
who
show region
ps -c
quit
test aaa group radius
show snmp
set option flowcontrol

 
 
 
With the command csim you can emulate a voice [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=147&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2>Undocumented IOS commands</h2>
<p><em> </em></p>
<p> </p>
<p>Here you can find a collection of undocumented (not on Cisco Dokumentation CD or in online help) IOS commands:</p>
<ul>
<li>csim</li>
<li>show interface switching</li>
<li>show ip ospf statistics</li>
<li>show ip ospf m</li>
<li>show ip ospf events</li>
<li>debug ip ospf monitor</li>
<li>no service password-recovery</li>
<li>ttcp</li>
<li>if-con</li>
<li>no snmp-server sparse-tables</li>
<li>who</li>
<li>show region</li>
<li>ps -c</li>
<li>quit</li>
<li>test aaa group radius</li>
<li>show snmp</li>
<li>set option flowcontrol</li>
</ul>
<p> </p>
<p> </p>
<p> </p>
<hr size="2" /><a name="csim"></a>With the command csim you can emulate a voice call. ItŽs like sombody calls the specified number. Usefull, if you donŽt have physically access to telephone:</p>
<p>Sucessfull call:</p>
<p>wg1r1#<strong>csim start 089150<br />
</strong>csim: called number = 089150, loop count = 1 ping count = 0<br />
csim err csimDisconnected recvd DISC cid(21)<br />
csim: loop = 1, failed = 1<br />
csim: call attempted = 1, setup failed = 1, tone failed = 0</p>
<p> </p>
<p>wg1r1#<strong>csim start 089151<br />
</strong>csim: called number = 089151, loop count = 1 ping count = 0</p>
<p>csim err:csim_do_test Error peer not found</p>
<p> </p>
<hr size="2" /><a name="switching"></a><a name="int-switching"></a>With show interface switching you can see in detail, which protocols are process, fast or elsewhere switched. ItŽs helpfull for traffic engineering:</p>
<p>wg1r1#<strong>sh interfaces switching<br />
</strong>Ethernet0/0</p>
<pre>Throttle count          0
Drops         RP          0         SP          0
SPD Flushes   Fast        0        SSE          0
SPD Aggress   Fast        0
SPD Priority  Inputs      5700     Drops        0

Protocol       Path    Pkts In   Chars In   Pkts Out  Chars Out
Other       Process       8821     983982       7806     468360
Cache misses                 0
Fast                         0          0          0          0
Auton/SSE                    0          0          0          0
IP          Process      32228    3339712       5786     611402
Cache misses                 0
Fast                     92667    8980418     133414  189720295
Auton/SSE                    0          0          0         0
DEC MOP     Process          0          0        130      10010
Cache misses                 0
Fast                         0          0          0          0
Auton/SSE                    0          0          0          0
ARP         Process       6440     386380        195      11700
Cache misses                 0
Fast                         0          0          0          0
Auton/SSE                    0          0          0          0
CDP         Process          0          0       1302     404922
Cache misses                 0
Fast                         0          0          0          0
Auton/SSE                    0          0          0          0</pre>
<p> </p>
<p align="left"> </p>
<hr size="2" /><a name="ospf-statistic"></a>With show ip ospf statistics you get detail informations about OSPF SPF. You can see the reasons for SPF and the calculation times:</p>
<p align="left">London#<strong>show ip ospf statistic<br />
</strong>Area 0: SPF algorithm executed 15 times</p>
<p>SPF calculation time<br />
Delta T Intra D-Intra Summ D-Summ Ext D-Ext Total Reason<br />
00:45:02 32 0 0 0 0 0 36 R,<br />
00:41:00 28 0 0 0 0 0 28 R, N,<br />
00:40:50 28 0 0 0 0 0 28 R,<br />
00:38:13 28 0 0 0 4 0 32 R, X<br />
00:34:18 24 0 0 0 4 0 32 R, N,SN,SA,X<br />
00:07:37 24 0 0 0 0 0 36 R,<br />
00:05:18 308 0 4 0 28 0 356 R,<br />
00:04:05 24 0 0 0 4 0 28 R,<br />
00:01:31 24 0 4 0 0 0 36 R,<br />
00:01:21 24 0 0 4 0 0 36 R,</p>
<p align="left"><a name="debugmonitor"></a></p>
<hr size="2" />With debug ip ospf monitor you can monitor the OSPF SPF.</p>
<p align="left">London#<strong>deb ip ospf monitor</strong><strong> </strong></p>
<p align="left">OSPF spf monitoring debugging is on<br />
2d04h: OSPF: 192.168.181.2 address 192.168.181.193 on TokenRing0 is dead, state DOWN<br />
2d04h: OSPF: Schedule SPF in area 0<br />
Change in LS ID 0.0.0.0, LSA type R,<br />
2d04h: OSPF: schedule SPF: spf_time 0ms wait_interval 187489656s<br />
2d04h: %SYS-5-CONFIG_I: Configured from console by console<br />
2d04h: OSPF: Start redist-scanning<br />
2d04h: OSPF: Scan for redistribution<br />
2d04h: OSPF: End scanning, Elapsed time 0ms<br />
2d04h: %LINK-5-CHANGED: Interface TokenRing0, changed state to administratively down<br />
2d04h: OSPF: Begin SPF at 0xB2CF100ms, process time 360ms<br />
2d04h: spf_time 0ms, wait_interval 187489656s<br />
2d04h: OSPF: End SPF at 0xB2CF120ms, Total elapsed time 32ms<br />
2d04h: Intra:24ms, Inter: 0ms, External: 0ms</p>
<p align="left"> </p>
<hr size="2" />
<p align="left">I found that in 12.0(20) Enterprise that show ip os monitor is not available but show ip os m is. Show ip os events is the undocumented command:</p>
<p>tr-Albany-2#<strong>sh ip os monitor<br />
</strong>^<br />
% Invalid input detected at &#8216;^&#8217;marker.</p>
<p><a name="s-ip-os-m"></a>Rtr-Albany-2# <strong>sh ip os m<br />
</strong>AS System 1<br />
Maxage delete timer due in NEVER<br />
<a name="s-ip-os-events"></a>Rtr-Albany-2#<strong>sh ip os events<br />
</strong>1 17844 Timer Exp: if_ack_delayed 0&#215;616DDE08<br />
2 40152 Generic: ospf_redist_callback 0&#215;61735760<br />
3 59800 Timer Exp: if_ack_delayed 0&#215;616DD3C8<br />
4 88664 Timer Exp: if_ack_delayed 0&#215;616DDE08<br />
5 88672 Timer Exp: if_ack_delayed 0&#215;616DD3C8<br />
6 100184 Generic: ospf_redist_callback 0&#215;61735760<br />
7 126576 Timer Exp: if_ack_delayed 0&#215;619621AC<br />
8 160216 Generic: ospf_redist_callback 0&#215;61735760<br />
9 164976 Timer Exp: if_ack_delayed 0&#215;616DDE08<br />
10 189256 Timer Exp: if_ack_delayed 0&#215;616DD3C8<br />
&#8230;.<br />
90 534184 Timer Exp: nbr_retrans_lsa 0xC0A8E425<br />
91 534184 Timer Exp: nbr_retrans_lsa 0xC0A8FC13<br />
92 534188 Timer Exp: nbr_retrans_lsa 0xC0A8FC04</p>
<p>Rtr-Albany-2#</p>
<p>Many thanks for this command goes to Paul.</p>
<p align="left"> </p>
<hr size="2" /><a name="password-recovery"></a>Disable Password Recovery or ROM Monitor Access:</p>
<p align="left">#sh run<br />
Building configuration&#8230;<br />
Current configuration:<br />
!<br />
Version 12.1<br />
!<br />
<strong>no service password-recovery<br />
</strong>!</p>
<p>#rel<br />
Proceed with reload? [confirm]</p>
<p>.Feb 9 12:57:24.013: %SYS-5-RELOAD: Reload requested<br />
System Bootstrap, Version 11.3(2)XA4, RELEASE SOFTWARE (fc1)<br />
Copyright (c) 1999 by cisco Systems, Inc.<br />
TAC:Home:SW:IOS:Specials for info</p>
<p><strong>pressed:</strong><strong> </strong></p>
<p>PC = 0xfff0bba8, Vector = 0&#215;500, SP = 0&#215;680127c8<br />
C2600 platform with 49152 Kbytes of main memory</p>
<p><strong>PASSWORD RECOVERY FUNCTIONALITY IS DISABLED</strong><strong> </strong></p>
<p>PC = 0xfff14dfc, Vector = 0&#215;500, SP = 0&#215;80004864<br />
PC = 0xfff14e08, Vector = 0&#215;500, SP = 0&#215;80004864<br />
PC = 0xfff14df8, Vector = 0&#215;500, SP = 0&#215;80004374<br />
program load complete, entry point: 0&#215;80008000, size: 0&#215;8b9c04<br />
&#8230;<br />
Cisco Internetwork Operating System Software<br />
IOS &#8482; C2600 Software (C2600-IS-M), Version 12.1(3a)T4, RELEASE SOFTWARE (fc1)</p>
<p align="left"> </p>
<hr size="2" /><a name="ttcp"></a>Start a TCP data server/receiver for TCP performance testing between two Cisco 7500 router:</p>
<p>sh ver<br />
Cisco Internetwork Operating System Software<br />
IOS &#8482; RSP Software (RSP-JSV-M), Version 12.0(7), RELEASE SOFTWARE (fc1)</p>
<p>Router#<strong>ttcp<br />
</strong>transmit or receive [receive]: transmit<br />
Target IP address: 1.1.1.1<br />
perform tcp half close [n]:<br />
send buflen [8192]:<br />
send nbuf [2048]:<br />
bufalign [16384]:<br />
bufoffset [0]:<br />
port [5001]:<br />
sinkmode [y]:<br />
buffering on writes [y]:<br />
show tcp information at end [n]:</p>
<p>ttcp-t: buflen=8192, nbuf=2048, align=16384/0, port=5001 tcp -&gt; 1.1.1.1<br />
%Connect failed: Destination unreachable; gateway or host down</p>
<p>Router#<strong>ttcp<br />
</strong>transmit or receive [receive]:<br />
perform tcp half close [n]:<br />
receive buflen [8192]:<br />
bufalign [16384]:<br />
bufoffset [0]:<br />
port [5001]:<br />
sinkmode [y]:<br />
rcvwndsize [4128]:<br />
delayed ACK [y]:<br />
show tcp information at end [n]:</p>
<p>ttcp-r: buflen=8192, align=16384/0, port=5001<br />
rcvwndsize=4128, delayedack=yes tcp</p>
<p>Many thanks for this command goes to Thomas Moyses.</p>
<p align="left"> </p>
<hr size="2" /><a name="if-con"></a>On Cisco 7500 you can connect you to the VIP boards for VIP commands (memory, cpu,etc.)</p>
<p>Router#<strong>if-con 2 con<br />
</strong>Entering CONSOLE for VIP2 2<br />
Type &#8220;^C^C^C&#8221; or &#8220;if-quit&#8221; to end this session</p>
<p>VIP-Slot2&gt;<br />
VIP-Slot2&gt;?<br />
Exec commands:<br />
clear Reset functions<br />
disable Turn off privileged commands<br />
disconnect Disconnect an existing network connection<br />
enable Turn on privileged commands<br />
exit Exit from the EXEC<br />
help Description of the interactive help system<br />
lock Lock the terminal<br />
login Log in as a particular user<br />
logout Exit from the EXEC<br />
name-connection Name an existing network connection<br />
ping Send echo messages<br />
resume Resume an active network connection<br />
set Set system parameter (not config)<br />
show Show running system information<br />
systat Display information about terminal lines<br />
terminal Set terminal line parameters<br />
traceroute Trace route to destination<br />
where List active connections</p>
<p>VIP-Slot2&gt;en<br />
VIP-Slot2#sh ver<br />
Cisco Internetwork Operating System Software<br />
IOS &#8482; VIP Software (SVIP-DW-M), Version 12.0(7), RELEASE SOFTWARE (fc1)<br />
Copyright (c) 1986-1999 by cisco Systems, Inc.<br />
Compiled Wed 13-Oct-99 22:05 by phanguye<br />
Image text-base: 0&#215;60010920, data-base: 0&#215;60224000</p>
<p>ROM: System Bootstrap, Version 11.1(11368) [pgreenfi 17], INTERIM SOFTWARE</p>
<p>VIP-Slot2 uptime is 10 minutes<br />
System restarted by power-on<br />
Running default software</p>
<p>cisco VIP2 (R4700) processor (revision 0&#215;02) with 8192K bytes of memory.<br />
Processor board ID 00000000<br />
R4700 processor, Implementation 33, Revision 1.0 (512KB Level 2 Cache)<br />
4 Ethernet/IEEE 802.3 interface(s)<br />
1 FastEthernet/IEEE 802.3 interface(s)</p>
<p>Configuration register is 0&#215;0<br />
VIP-Slot2#?<br />
Exec commands:<br />
cd Change current directory<br />
clear Reset functions<br />
clock Manage the system clock<br />
configure Enter configuration mode<br />
copy Copy from one file to another<br />
debug Debugging functions (see also &#8216;undebug&#8217;)<br />
delete Delete a file<br />
dir List files on a filesystem<br />
disable Turn off privileged commands<br />
disconnect Disconnect an existing network connection<br />
enable Turn on privileged commands<br />
exit Exit from the EXEC<br />
help Description of the interactive help system<br />
lock Lock the terminal<br />
login Log in as a particular user<br />
logout Exit from the EXEC<br />
more Display the contents of a file<br />
name-connection Name an existing network connection<br />
no Disable debugging functions<br />
ping Send echo messages<br />
pwd Display current working directory<br />
reload Halt and perform a cold restart<br />
resume Resume an active network connection<br />
send Send a message to other tty lines<br />
set Set system parameter (not config)<br />
setup Run the SETUP command facility<br />
show Show running system information<br />
systat Display information about terminal lines<br />
terminal Set terminal line parameters<br />
test Test subsystems, memory, and interfaces<br />
traceroute Trace route to destination<br />
undebug Disable debugging functions (see also &#8216;debug&#8217;)<br />
where List active connections<br />
write Write running configuration to memory, network, or terminal</p>
<p>VIP-Slot2#</p>
<p>Many thanks for this command goes to Thomas Moyses.</p>
<p> </p>
<hr size="2" /><a name="sparse-table"></a>Router(config)# <strong>no snmp-server sparse-tables</strong><strong> </strong></p>
<p align="left">Get the complete SNMP MIB table. On controller interface you get without this command e.g. no out bytes counter. With this commands you get every object with SNMP get-next.</p>
<p align="left"> </p>
<hr size="2" /><a name="who"></a>who is a alias for show user.</p>
<p>Router#<strong>who<br />
</strong>Line User Host(s) Idle Location<br />
* 0 con 0 idle 00:00:00<br />
1 aux 0 idle 00:01:19</p>
<hr size="2" /><a name="showreason"></a>Get more detail IOS informations:</p>
<p>Router#sh region<br />
Region Manager:</p>
<p>Start End Size(b) Class Media Name</p>
<hr size="2" />0&#215;02700000 0&#215;02FFFFFF 9437184 Iomem R/W iomem<br />
0&#215;60000000 0&#215;60FFFFFF 16777216 Flash R/O flash<br />
0&#215;80000000 0&#215;826FFFFF 40894464 Local R/W main<br />
0&#215;80008088 0&#215;8071A2A3 7414300 IText R/O main:text<br />
0&#215;8071A2A4 0&#215;8097FD93 2513648 IData R/W main:data<br />
0&#215;8097FD94 0&#215;80A4E0CF 844604 IBss R/W main:bss<br />
0&#215;80A4E0D0 0&#215;826FFFFF 30089008 Local R/W main:heap</p>
<p>Many thanks for this command goes to Thomas Moyses.</p>
<p> </p>
<hr size="2" /><a name="ps"></a></p>
<p>router&gt; ps -c</p>
<p>Will list the process on the router in a &#8220;better&#8221; way then show process.</p>
<p>Many thanks for this command goes to Thomas Surber.</p>
<p> </p>
<hr size="2" /><a name="quit"></a>leaving a telnet session: normally with &#8220;exit&#8221; or &#8220;ex&#8221;.<br />
do this very fast with &#8220;q&#8221; (quit)</p>
<p>Many thanks for this command goes to Peter Schmid.</p>
<p> </p>
<hr size="2" /><a name="radius"></a>test aaa group radius toto titi</p>
<p>To test radius on one router.</p>
<p>CISCO AS5800: This command allow to connect directly to the DSC IOS card from the router Shelf of the<br />
AS5800</p>
<p>dsip con slave &#8220;Slot # of the DSC&#8221;<br />
ex: dsip con slave 12</p>
<p>Many thanks for this commands goes to Serge Baikoff.</p>
<p> </p>
<hr size="2" />These commands have been found in a Cisco 3640 router using the version 12.1(6). It&#8217;s very posible that some of these commands are not avalaible in older versions.</p>
<p>&#8211; show ip ftp-username</p>
<p>Show the name of the user configured with the comand &#8220;ip ftp username&#8221;.</p>
<p>&#8211;show ip ftp-password</p>
<p>Display the password configured with the command &#8220;ip ftp passwword&#8221;</p>
<p>&#8211; show ip spd</p>
<p>I don&#8217;t know the function of this command, but it looks as folow:</p>
<p>sh ip spd<br />
Current mode: normal.<br />
Queue min/max thresholds: 73/74, Headroom: 100<br />
IP normal queue: 0, priority queue: 0.<br />
SPD special drop mode: none</p>
<p>&#8211; show ip ospf timers lsa</p>
<p>Show the ospf lsa timers and its output is:</p>
<p>sh ip ospf timers lsa</p>
<p>OSPF Router with ID (215.224.32.13) (Process ID 1)</p>
<p>Group size 5, Head 0, Search Index 4, Interval 240 sec<br />
Next update due in 00:00:15<br />
Current time 64496<br />
Index 0 Timestamp 64511<br />
Index 1 Timestamp 64768<br />
Index 2 Timestamp 65014<br />
Index 3 Timestamp 65258<br />
Index 4 Timestamp 65509</p>
<p>Failure Head 0, Last 0 LSA group failure logged</p>
<p>&#8211; show ip eigrp sia-statistics</p>
<p>I don&#8217;t know the meaning of this command. When it&#8217;s typed shows no useful information:</p>
<p>sh ip eigrp sia-statistic</p>
<p>Many thanks for this command goes to Atreides.</p>
<p> </p>
<hr size="2" />Here&#8217;s some additional hidden cisco IOS command for debugging ATM on a PA-A3. You need to connect to the VIP first and be in enable mode: (I guess this one is double hidden, first the if-con and then the test atmdx)</p>
<p>syntax: test atmdx PAslotnr (0 or 1)</p>
<p>7507#if-con 0<br />
Console or Debug [C]: c<br />
Entering CONSOLE for VIP2 R5K 0<br />
Type &#8220;^C^C^C&#8221; or &#8220;if-quit&#8221; to end this session</p>
<p>VIP-Slot0&gt;enable<br />
VIP-Slot0#test atmdx 0</p>
<p>Main:<br />
1 &#8211; VC test<br />
2 &#8211; Rx SAR<br />
3 &#8211; Tx SAR<br />
q &#8211; Quit<br />
Select option : 1</p>
<p>Test VC Section:<br />
1 &#8211; Show vc<br />
2 &#8211; Show vc statistics<br />
3 &#8211; Change vc<br />
q &#8211; Quit<br />
Select option : 2<br />
Enter vc number or -1 for all : -1<br />
vcd 1: in_pkts 4, in_drops 0, out_pkts 4, out_drops 0<br />
crc32 0, timeout 0, oversized 0<br />
vcd 2: in_pkts 1, in_drops 0, out_pkts 1, out_drops 0<br />
crc32 0, timeout 0, oversized 0<br />
vcd 3: in_pkts 28, in_drops 0, out_pkts 21, out_drops 0<br />
crc32 0, timeout 0, oversized 0<br />
vcd 4: in_pkts 1, in_drops 0, out_pkts 1, out_drops 0<br />
crc32 0, timeout 0, oversized 0</p>
<p>Many thanks for this commands goes to Rogger Schobben.</p>
<p> </p>
<hr size="2" /><a name="test-aaa-group"></a>Tested on 12.22T:</p>
<p>sh snmp host<br />
sh snmp notif<br />
test aaa group policy accounting WORD<br />
test aaa group policy authorization WORD<br />
test aaa group policy authentication WORD<br />
test aaa group priviliges authentication WORD (same for accounting and auth)</p>
<p>In fact there&#8217;s a bunch of other stuff you can do behind test aaa group. If you type &#8220;a&#8221; behind this f.ex., you will also see incomplete command.</p>
<p>Many thanks for this commands goes to Filip Waeytens.</p>
<p> </p>
<hr size="2" /><a name="set-flow-control"></a><a name="More"></a>If you are overrunning the buffers on ports, at a Cat6500 enable (global) mode, we can enable flow control between the two ASICs on the 6348 card (HW MSFC2) using the command</p>
<p>set option flowcontrol enable</p>
<p>This should help with the out-discards. It may clear it up and it may not. If it doesn&#8217;t, you will need more to either create an etherchannel to the router or move to a higher bandwidth connection. The command set option flowcontrol enable allows the COIL ASIC to pass traffic to the Pinnacle ASIC for buffering assistance when the COIL ASIC is overloaded with traffic.</p>
<p>Many thanks for this commands goes to Renato Vilela de Magalháes.</p>
<p> </p>
<hr size="2" />bgp common-administration</p>
<p>bgp dynamic-med-interval</p>
<p>bgp process-dpa</p>
<p>clear ip eigrp [as] event Clear IP-EIGRP event logs</p>
<p>clear ip eigrp [as] logging Stop IP-EIGRP event logging</p>
<p>config overwrite</p>
<p>debug dialer detailed</p>
<p>debug ip packet &#8230; dump Outputs a hex &amp; ASCII dump of the packet&#8217;s contents</p>
<p>debug isdn code</p>
<p>debug sanity</p>
<p>if-con attach to a vip console</p>
<p>if-cons</p>
<p>ip forwarding</p>
<p>ip forwarding accounting</p>
<p>ip forwarding accounting adjacency-update</p>
<p>ip forwarding accounting non-recursive</p>
<p>ip forwarding accounting per-prefix</p>
<p>ip forwarding accounting prefix-length</p>
<p>ip forwarding switch</p>
<p>ip forwarding traffic-statistics</p>
<p>ip forwarding traffic-statistics load-interval</p>
<p>ip forwarding traffic-statistics update-rate</p>
<p>ip igmp</p>
<p>ip igmp immediate-leave</p>
<p>ip igmp immediate-leave group-list</p>
<p>ip local-pool</p>
<p>ip ospf-name-lookup</p>
<p>ip slow-converge</p>
<p>ip spd</p>
<p>ip spd mode</p>
<p>ip spd mode aggressive</p>
<p>ip spd queue</p>
<p>ip spd queue max-threshold</p>
<p>ip spd queue min-threshold</p>
<p>memory scan Parity check for 7500 RSPs</p>
<p>modem-mgmt csm debug-rbs</p>
<p>no service password-recovery</p>
<p>service internal</p>
<p>set destination-preference</p>
<p>show alignment</p>
<p>show asp</p>
<p>show caller</p>
<p>show caller ip</p>
<p>show chunk</p>
<p>show chunk summary</p>
<p>show controller vip log</p>
<p>show controller vip tech</p>
<p>show fib</p>
<p>show fib drop</p>
<p>show fib interface</p>
<p>show fib interface detail</p>
<p>show fib interface loopback</p>
<p>show fib interface null</p>
<p>show fib interface statistics</p>
<p>show fib interface vlan</p>
<p>show fib linecard</p>
<p>show fib linecard detail</p>
<p>show fib not-cef-switched</p>
<p>show fib not-fib-switched</p>
<p>show hardware</p>
<p>show idb</p>
<p>show interface statis</p>
<p>show interface switching</p>
<p>show interfaces stat</p>
<p>show interface stat</p>
<p>show interfaces switching</p>
<p>show int switching</p>
<p>show ip eigrp event [as] [start# end#] IP-EIGRP Events</p>
<p>show ip eigrp sia-event [as] [start# end#] IP-EIGRP SIA event</p>
<p>show ip eigrp timers [as] IP-EIGRP Timers</p>
<p>show ip ospf bad-checksum</p>
<p>show ip ospf delete</p>
<p>show ip ospf delete-list</p>
<p>show ip ospf ev</p>
<p>show ip ospf events</p>
<p>show ip ospf maxage</p>
<p>show ip ospf maxage</p>
<p>show ip ospf statistics</p>
<p>show isdn active</p>
<p>show isdn history</p>
<p>show list</p>
<p>show list nonempty</p>
<p>show llc</p>
<p>show media</p>
<p>show media access-lists</p>
<p>show modem mapping</p>
<p>show parity</p>
<p>show parser</p>
<p>show parser links</p>
<p>show parser modes</p>
<p>show parser unresolved</p>
<p>show profile</p>
<p>show profile detail</p>
<p>show profile terse</p>
<p>show refuse-message</p>
<p>show region</p>
<p>show region address</p>
<p>show rsh</p>
<p>show rsh-disable-commands</p>
<p>show rsp</p>
<p>show slip</p>
<p>show slot</p>
<p>show snmp mib</p>
<p>show sum</p>
<p>show timers</p>
<p>snmp-server priority low</p>
<p>test crash makes the router crash</p>
<p>test ipc misc</p>
<p>test mbus power</p>
<p>ttcp</p>
<p> </p>
<p> </p>
<p>router bgp &#8230;</p>
<p>bgp redistribute-internal</p>
<p>Usage:</p>
<p>Redistributing BGP into another protocol only redistributes E-BGP routes. Using this command in the BGP configuration will also redistribute I-BGP routes in the other routing-protocol.</p>
<p> </p>
<p>Source:-<a href="http://www.uniberg.com/cisco/undocumented/68.html?session=9c97cccb7190a2eb0f1d0c49d40703c3">http://www.uniberg.com/cisco/undocumented/68.html?session=9c97cccb7190a2eb0f1d0c49d40703c3</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=147&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/08/07/undocumented-ios-commands/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>Protocol Overhead</title>
		<link>http://ciscotips.wordpress.com/2009/08/05/protocol-overhead/</link>
		<comments>http://ciscotips.wordpress.com/2009/08/05/protocol-overhead/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 21:40:01 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[Technology and Software]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=145</guid>
		<description><![CDATA[Protocol Overhead
How fast can you really go using a given media and protocol stack? We examine how much bandwidth is left for applications.
Ethernet
Ethernet frame format:

6 byte dest addr
6 byte src addr
[4 byte optional 802.1q VLAN Tag]
2 byte length/type
46-1500 byte data (payload)
4 byte CRC

Ethernet overhead bytes:
  12 gap + 8 preamble + 14 header + [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=145&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1>Protocol Overhead</h1>
<p>How fast can you really go using a given media and protocol stack? We examine how much bandwidth is left for applications.</p>
<h2>Ethernet</h2>
<p>Ethernet frame format:</p>
<ul>
<li>6 byte dest addr</li>
<li>6 byte src addr</li>
<li>[4 byte optional 802.1q VLAN Tag]</li>
<li>2 byte length/type</li>
<li>46-1500 byte data (payload)</li>
<li>4 byte CRC</li>
</ul>
<pre>Ethernet overhead bytes:
  12 gap + 8 preamble + 14 header + 4 trailer = 38 bytes/packet w/o 802.1q
  12 gap + 8 preamble + 18 header + 4 trailer = 42 bytes/packet with 802.1q

Ethernet Payload data rates are thus:
  1500/(38+1500) = 97.5293 %   w/o 802.1q tags
  1500/(42+1500) = 97.2763 %   with 802.1q tags

TCP over Ethernet:
 Assuming no header compression (e.g. not PPP)
 Add 20 IPv4 header or 40 IPv6 header (no options)
 Add 20 TCP header
 Add 12 bytes optional TCP timestamps
 Max TCP Payload data rates over ethernet are thus:
  (1500-40)/(38+1500) = 94.9285 %  IPv4, minimal headers
  (1500-52)/(38+1500) = 94.1482 %  IPv4, TCP timestamps
  (1500-52)/(42+1500) = 93.9040 %  802.1q, IPv4, TCP timestamps
  (1500-60)/(38+1500) = 93.6281 %  IPv6, minimal headers
  (1500-72)/(38+1500) = 92.8479 %  IPv6, TCP timestamps
  (1500-72)/(42+1500) = 92.6070 %  802.1q, IPv6, ICP timestamps

UDP over Ethernet:
 Add 20 IPv4 header or 40 IPv6 header (no options)
 Add 8 UDP header
 Max UDP Payload data rates over ethernet are thus:
  (1500-28)/(38+1500) = 95.7087 %  IPv4
  (1500-28)/(42+1500) = 95.4604 %  802.1q, IPv4
  (1500-48)/(38+1500) = 94.4083 %  IPv6
  (1500-48)/(42+1500) = 94.1634 %  802.1q, IPv6</pre>
<p>An excellent source of ethernet information is <a href="http://www.ethermanage.com/ethernet/ethernet.html">Charles Spurgeon&#8217;s Ethernet Web Site</a>.</p>
<p>Notes:</p>
<ol>
<li>48-bit (6 byte) ethernet address have a 24-bit &#8220;Organizationally Unique Identifier&#8221; (OUI) assigned by IEEE + a 24-bit number assigned by the vendor.</li>
<li>The minimum ethernet payload (data field) is 46 bytes which makes a 64 byte ethernet packet including header and CRC.</li>
<li>The maximum ethernet payload (data field) is 1500 bytes which makes a 1518 byte ethernet packet including header and CRC. When 802.1q added an optional 4-byte VLAN Tag Header, they extended the allowed maximum frame size to 1522 bytes (22 byte header+CRC).</li>
<li>The bit speed of 100 Mbps ethernet on the wire/fiber is actually 125 Mbps due to 4B/5B encoding. Every four data bits gets mapped to one of 16 5-bit symbols. This leaves 16 non-data symbols. This encoding came from FDDI.</li>
<li>The original Ethernet II spec had a two byte type field which 802.3 changed to a length field, and later a length/type field depending on use: values 1536 and over are types, under 1536 lengths.</li>
</ol>
<h2>Gigabit Ethernet with Jumbo Frames</h2>
<p>Gigabit ethernet is exactly 10 times faster than 100 Mbps ethernet, so for standard 1500 byte frames, the numbers above all apply, multiplied by 10. Many GigE devices however allow &#8220;jumbo frames&#8221; larger than 1500 bytes. The most common figure being 9000 bytes. For 9000 byte jumbo frames, potential GigE throughput becomes (from Bill Fink, the author of nuttcp):</p>
<pre>Theoretical maximum TCP throughput on GigE using jumbo frames:

	(9000-20-20-12)/(9000+14+4+7+1+12)*1000000000/1000000 = 990.042 Mbps
	  |   |  |  |     |   |  | | | |       |         |
	 MTU  |  |  |    MTU  |  | | | |      GigE      Mbps
	      |  |  |         |  | | | |
	     IP  |  |  Ethernet  | | | |      InterFrame Gap (IFG), aka
	  Header |  |    Header  | | | |      InterPacket Gap (IPG), is
		 |  |            | | | |      a minimum of 96 bit times
	       TCP  |          FCS | | |      from the last bit of the
	    Header  |              | | |      FCS to the first bit of
		    |       Preamble | |      the preamble
		  TCP                | |
	      Options            Start |
	  (Timestamp)            Frame |
			     Delimiter |
				 (SFD) |
				       |
				   Inter
				   Frame
				     Gap
				   (IFG)

Theoretical maximum UDP throughput on GigE using jumbo frames:

	(9000-20-8)/(9000+14+4+7+1+12)*1000000000/1000000 = 992.697 Mbps

Theoretical maximum TCP throughput on GigE without using jumbo frames:

	(1500-20-20-12)/(1500+14+4+7+1+12)*1000000000/1000000 = 941.482 Mbps

Theoretical maximum UDP throughput on GigE without using jumbo frames:

	(1500-20-8)/(1500+14+4+7+1+12)*1000000000/1000000 = 957.087 Mbps</pre>
<hr />
<h2>ATM</h2>
<p>An excellent paper on ATM overhead was written by John Cavanaugh of MSC. A <a href="http://ciscotips.wordpress.com/wp-admin/ip-atm.overhead.ps">postscript copy</a> can be found here. Based on that paper:</p>
<pre>  -------------------------- DS3 ------------------------------
  Line Rate           44.736 Mbps
  PLCP Payload        40.704                       (avail to ATM)
  ATM Payload         36.864                       (avail to AAL)
                     MTU=576  MTU=9180 MTU=65527
  AAL5 Payload        34.501   36.752   36.845     (avail to LLC/SNAP)
  LLC/SNAP Payload    34.028   36.720   36.841     (avail to IP)
  IP Payload          32.847   36.640   36.830     (avail to transport)
    UDP Payload       32.374   36.608   36.825     (avail to application)
    TCP Payload       31.665   36.560   36.818     (avail to application)

  -------------------------- OC-3c ------------------------------
  Line Rate           155.520 Mbps
  SONET Payload       149.760                      (avail to ATM)
  ATM Payload         135.632                      (avail to AAL)
                     MTU=576  MTU=9180 MTU=65527
  AAL5 Payload        126.937  135.220  135.563    (avail to LLC/SNAP)
  LLC/SNAP Payload    125.198  135.102  135.547    (avail to IP)
  IP Payload          120.851  134.808  135.506    (avail to transport)
    UDP Payload       119.112  134.690  135.489    (avail to application)
    TCP Payload       116.504  134.513  135.464    (avail to application)

  -------------------------- OC-12c -----------------------------
  Line Rate           622.080 Mbps
  SONET Payload       600.768                      (avail to ATM)
  ATM Payload         544.092                      (avail to AAL)
                     MTU=576  MTU=9180 MTU=65527
  AAL5 Payload        509.214  542.439  543.818    (avail to LLC/SNAP)
  LLC/SNAP Payload    502.239  541.966  543.752    (avail to IP)
  IP Payload          484.800  540.786  543.586    (avail to transport)
    UDP Payload       477.824  540.313  543.519    (avail to application)
    TCP Payload       467.361  539.605  543.420    (avail to application)</pre>
<p>Notes:</p>
<ol>
<li>DS3 and SONET frames are 125 usec long (8000/sec).</li>
<li>PLCP packs 12 ATM cells per DS3 frame, for 96 kc/s (8000&#215;12).</li>
<li>An STS-3c frame (OC3c) is 2430 bytes long (270 bytes x 9 rows), 90 of which are consumed by SONET overhead (9 bytes x 9 rows section and line overhead and 1 byte x 9 rows path overhead), 2340 bytes are payload (260 bytes x 9 rows). The payload is called the Synchronous Payload Envelope (SPE).</li>
<li>An STS-12c frame (OC12c) is 9720 bytes long, 333 of which are SONET overhead, 9387 bytes are payload (SPE). Note that this is slightly larger than four STS-3c SPE&#8217;s (4&#215;2340=9360), the advantage of &#8220;concatenated&#8221; OC12c vs. OC12.</li>
<li>ATM cells are 53 bytes long: 5 header and 48 payload.</li>
<li>AAL5 adds an 8 byte trailer in the last 8 bytes of the last cell, padding in front of the trailer if necessary. This results in 0-47 bytes of padding in an AAL5 frame. In the worse case, you have seven bytes of padding in one cell, and 40 bytes of padding plus the 8 byte AAL5 trailer in the following cell.</li>
<li>RFC1483 defines two types of protocol encapsulation in AAL5
<ul>
<li>LLC/SNAP &#8211; adds an 8 byte header containing LLC (3 bytes), OUI (3 bytes), and PID/EtherType (2 bytes)</li>
<li>VC-mux &#8211; adds no additional bytes by sending only a single protocol type per VC</li>
</ul>
</li>
<li>IPv4 usually adds 20 bytes. IPv6 would add 40 bytes. Plus any options but assumed zero here.</li>
<li>UDP adds an 8 byte header. (ICMP is also an 8 byte header)</li>
<li>TCP adds a 20 byte header plus any options. A common option on high performance flows is timestamps which consume an additional 12 bytes per packet.</li>
</ol>
<p>On the physical layer (single pt-to-pt hop), one out of every 27 cells is an OAM cell. The above calculations don&#8217;t take that into account, but that&#8217;s another 3.7% reduction!</p>
<p>We should add calculations for ping packets and 1500 byte packets.</p>
<p>So what is the largest packet that we can fit in a single ATM cell? If you are using AAL5, you have a 40 byte payload to work with. For IPv4, you could have a 20 byte header + a 20 byte IP payload. A UDP or ICMP payload could be up to 12 bytes (both use 8 bytes after the IP header). So a &#8220;ping -s8&#8243; through &#8220;ping -s12&#8243; should fit in one ATM cell and still give you a round trip time.</p>
<p> </p>
<hr />
<h2>Packet Over SONET (POS)</h2>
<p>Packet over SONET (POS) uses PPP with HDLC to frame IP packets. These add a five byte header and a four byte trailer under normal circumstances. No padding is required, except for any possible idle time between packets. Byte stuffing is used (see notes below) which can expand the length of the POS frame.</p>
<pre>       Flag Byte (0x7e)
       Address Byte (0xff = all stations)
       Control Byte (0x03 = Unnumbered Information)
          Protocol - 2 bytes, 1 byte if compressed      +
          Payload - 0-MRU bytes                         | PPP part
          Padding - 0+ bytes                            +
       Frame Check Sequence (FCS) - 4 bytes (2 in limited cases)
       Flag Byte (0x7e)
       [Interframe fill or next Address]</pre>
<p>HDLC has no set frame size limit, nor does PPP specify the payload size, you just keep reading until you see a Flag byte. PPP however specifies that the Maximum Receive Unit (MRU) default is 1500 bytes and that other sizes can be negotiated using LCP. These LCP messages have a 16-bit length field, so a properly negotiated maximum payload would be 65535 bytes. [It would be possible to configure a sender/receiver pair to go beyond 65535 and simply not negotiate a size with LCP. No one does this however.] Most POS hardware seems to have a 4470 or 9180 byte MRU.</p>
<p>So we get:</p>
<pre>  -------------------------- OC-3c ------------------------------
  Line Rate           155.520 Mbps
  SONET Payload       149.760                      (avail to POS)
  POS Payload         *** to do ***                (avail to IP)
  etc.

  -------------------------- OC-12c -----------------------------
  Line Rate               622.080 Mbps
  SONET Payload           600.768                      (avail to POS)
                         MTU=1500   MTU=9000
  POS Payload (no stuff)  597.185    600.168           (avail to IP)  9 overhead
  POS Payload (rnd stuff) 592.583    595.520                          20.71875 overhead
  POS Payload (max stuff) 299.486    300.234                          1509 overhead

  ~TCP Payload w/ts rnd   572.040    592.079</pre>
<p>Notes:</p>
<ol>
<li>Only one flag byte is required between frames, i.e. the flag byte that ends one frame can also begin the next.</li>
<li>It is possible for the HDLC Address and Control fields to be &#8220;compressed&#8221;, i.e. non-existent. This is negotiated by PPP&#8217;s Link Control Protocol (LCP). The RFC&#8217;s however recommend that they be present on high speed links and POS.</li>
<li>The protocol field can be compressed to one byte (negotiated by LCP), but this is also discouraged on high speed links and POS.</li>
<li>IP -&gt; PPP -&gt; FCS generation -&gt; Byte stuffing -&gt; Scrambling -&gt; SONET/SDH framing</li>
<li>The Frame Check Sequence (FCS) for POS should be 32-bits. RFC2615 allows for 16-bits (the PPP default) only when required for backward compatibility, and only on OC3c. Even on OC3c 32-bit is recommended. The FCS length is configured, not negotiated. The FCS-32 uses the exponents x**0, 1, 2, 4, 5, 7, 8, 10, 11, 12, 16, 22, 23, 26, 32.</li>
<li>Byte stuffing escapes any Flag (0&#215;7e) and Escape (0&#215;7d) bytes by inserting an Escape byte and xoring the original byte with 0&#215;20. [PPP can also escape negotiated control characters but this is not used in POS.] Byte stuffing can at worse double the payload size (e.g. data of all 0&#215;7e). For uniform random data one in every 128 bytes would be stuffed, for an overhead of 0.775%.</li>
<li>The stuffed data is then scrambled with 1+x**43 (the same used for ATM) to prevent certain data patterns from interfering with SONET.</li>
</ol>
<p> </p>
<p>References:</p>
<ul>
<li><a href="http://www.ietf.org/rfc/rfc1661.txt">RFC1661</a> The Point-to-Point Protocol (PPP), July 1994</li>
<li><a href="http://www.ietf.org/rfc/rfc1662.txt">RFC1662</a> PPP in HDLC-like Framing, July 1994</li>
<li><a href="http://www.ietf.org/rfc/rfc2615.txt">RFC2615</a> PPP over SONET/SDH, June 1999</li>
</ul>
<p> </p>
<h3>POS with Frame Relay encapsulation</h3>
<p>Frame Relay (FR) encapsulation can be used on POS instead of HDLC/PPP. There are not any RFC&#8217;s about Frame Relay over SONET, nor does the Multiprotocol over Frame Relay RFC1490 discuss SONET or POS, but Cisco starting doing this and others have followed.</p>
<p>References:</p>
<ul>
<li><a href="http://www.ietf.org/rfc/rfc2427.txt">RFC2427</a> Multiprotocol Interconnect over Frame Relay, September 1998</li>
</ul>
<hr />
<h2>Generic Framing Proceedure</h2>
<p>A new way to do POS uses PPP over GFP-F (Generic Framing Proceedure, Framed) instead of HDLC. In both the HDLC and GFP-F cases, SONET / SDH VCAT (Virtual Concatenation) is used. GFP-F also allows Ethernet frames (100, GE and 10GE) and Resilient Packet Ring (RPR) frames to be sent over SONET/SDH VCAT. GFP can also map to G.709 (part of the Optical Transport Network (OTN) series).</p>
<p>A GFP User Frame:</p>
<ul>
<li>4 byte Core Header
<ul>
<li>2 byte PDU Length Indicator (PLI)</li>
<li>2 byte Core Header Error Control (cHEC)</li>
</ul>
</li>
<li>Payload &#8211; up to 65535 bytes
<ul>
<li>Payload Header (4-64 bytes)
<ul>
<li>2 byte Type</li>
<li>2 byte tHEC</li>
<li>0-60 byte Extension Header including an optional 2 byte eHEC at the end.</li>
</ul>
</li>
<li>Payload (min of 1600 should be supported, larger by agreement)</li>
<li>Payload FCS (optional)</li>
</ul>
</li>
</ul>
<p>A PLI of 0-3 indicates a GFP control frame. cHEC is a CRC-16 that protects the core header only (single bit error correction, multi bit error detection).</p>
<p>References:</p>
<ul>
<li><a href="http://www.ieee802.org/17/documents/presentations/may2001/gfp.pdf">Draft GFP spec (pdf)</a></li>
</ul>
<h2>Multi Protocol Label Switching (MPLS)</h2>
<p>Multi-Protocol Label Switching (MPLS) adds four bytes to every frame. As described in <a href="http://www.ietf.org/rfc/rfc3032.txt">RFC3032</a> the 32-bit label includes:</p>
<pre> 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Label
|                Label                  | Exp |S|       TTL     | Stack
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Entry

     Label:  Label Value, 20 bits
     Exp:    Experimental Use, 3 bits
     S:      Bottom of Stack, 1 bit
     TTL:    Time to Live, 8 bits</pre>
<hr />
<h2>Serial Lines (T1,T3)</h2>
<p>To do</p>
<ul>
<li>DS-3 is specified as 44.736 Mbps +/- 20 parts per million (ppm). So one DS-3 can vary from another by up to 1789 bps.</li>
<li>Bit-stuffing is used to accommodate rate mismatches as you mux up the DS-n hierarchy.</li>
</ul>
<hr /><a href="http://sd.wareonearth.com/~phil/">P. Dykstra</a>, phil@sd.wareonearth.com, March 2001, last update April 2003</p>
<p> </p>
<p>source:<a href="http://sd.wareonearth.com/~phil/net/overhead/">http://sd.wareonearth.com/~phil/net/overhead/</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=145&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/08/05/protocol-overhead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
		<item>
		<title>Cisco says there&#8217;s no CCIE amnesty program</title>
		<link>http://ciscotips.wordpress.com/2009/08/05/cisco-says-theres-no-ccie-amnesty-program/</link>
		<comments>http://ciscotips.wordpress.com/2009/08/05/cisco-says-theres-no-ccie-amnesty-program/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 16:00:31 +0000</pubDate>
		<dc:creator>ciscotips</dc:creator>
				<category><![CDATA[ccie]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://ciscotips.wordpress.com/?p=142</guid>
		<description><![CDATA[I found the following post on Network World By Brad Resse.
It looks like that Brad did his homework and asked Cisco on Amnesty program. 
Brad Resse  says:-
Last month I noticed that a CCIE amnesty program was being promoted all over the Internet:
Google search results for:
CCIE amnesty program
Scanning the Google search results, I found no direct links [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=142&subd=ciscotips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I found the following post on Network World By Brad Resse.</p>
<p>It looks like that Brad did his homework and asked Cisco on Amnesty program. </p>
<p>Brad Resse  says:-</p>
<p>Last month I noticed that a CCIE amnesty program was being promoted all over the Internet:</p>
<p><strong>Google search results for:</strong></p>
<p><a href="http://www.google.com/search?hl=en&amp;q=CCIE+Amnesty+Program&amp;btnG=Google+Search&amp;aq=f&amp;oq=&amp;aqi"><big><strong>CCIE amnesty program</strong></big></a></p>
<p>Scanning the Google <a href="http://www.google.com/search?hl=en&amp;q=CCIE+Amnesty+Program&amp;btnG=Google+Search&amp;aq=f&amp;oq=&amp;aqi">search results</a>, I found no direct links to Cisco that would provide further information about the CCIE amnesty program.</p>
<p>So I contacted Cisco directly to learn more about the program and received the following official Cisco response:</p>
<blockquote><p>&#8220;Hi Brad, there is no CCIE Amnesty program in place. The post referred to is not representative of Cisco policy.&#8221;</p>
<p>source: <a href="http://www.networkworld.com/community/node/44131">http://www.networkworld.com/community/node/44131</a></p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ciscotips.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ciscotips.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ciscotips.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ciscotips.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ciscotips.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ciscotips.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ciscotips.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ciscotips.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ciscotips.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ciscotips.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ciscotips.wordpress.com&blog=210177&post=142&subd=ciscotips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ciscotips.wordpress.com/2009/08/05/cisco-says-theres-no-ccie-amnesty-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc497b310d1ae1d42d941ae36d7d6274?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ciscotips</media:title>
		</media:content>
	</item>
	</channel>
</rss>