<?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>CCIE Playground</title>
	<atom:link href="http://ccieplayground.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ccieplayground.wordpress.com</link>
	<description>A little space for a play with a Cisco&#039;s stuff</description>
	<lastBuildDate>Sat, 28 Jan 2012 19:59:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ccieplayground.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>CCIE Playground</title>
		<link>http://ccieplayground.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ccieplayground.wordpress.com/osd.xml" title="CCIE Playground" />
	<atom:link rel='hub' href='http://ccieplayground.wordpress.com/?pushpress=hub'/>
		<item>
		<title>BGP Route Server on ASR1000</title>
		<link>http://ccieplayground.wordpress.com/2012/01/24/bgp-route-server-on-asr1000/</link>
		<comments>http://ccieplayground.wordpress.com/2012/01/24/bgp-route-server-on-asr1000/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 20:08:05 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Routing]]></category>
		<category><![CDATA[ASR1k]]></category>
		<category><![CDATA[asr1000]]></category>
		<category><![CDATA[IOS XE]]></category>
		<category><![CDATA[BGP]]></category>
		<category><![CDATA[route reflector]]></category>
		<category><![CDATA[route server]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=281</guid>
		<description><![CDATA[BGP Route Server is feature designated mostly for IX (Internet Exchange) deployment. You can find many deployment around the world mostly using open software like Quagga, but it&#8217;s also available on Cisco&#8217;s ASR1000 routers. Route server is an advanced route reflector which provide customized policy support for each service provider, which means that standard path [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=281&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>BGP Route Server is feature designated mostly for IX (Internet Exchange) deployment. You can find many deployment around the world mostly using open software like Quagga, but it&#8217;s also available on Cisco&#8217;s ASR1000 routers. Route server is an advanced route reflector which provide customized policy support for each service provider, which means that standard path selection can be overridden by route policies set per particular provider.<br />
<span id="more-281"></span><br />
In typical IX design service provider edge routers share common subnet to provide connectivity between each other. Without route reflector full mesh of peerings is required to provide BGP prefix exchange between providers. Each operators set policies for particular neighbors manually. Route reflectors simplifies implementation because edge routers have only maintain session with RR router to receive full prefix table. This reduces CPU and memory requirements on the border routers not to mention OpEX of maintaining of edge routers.<br />
Router servers are advanced route reflectors. There are transparent for traffic path but have ability to override the normal BGP best path with an alternative path based on some policy or suppress all paths for a prefix and therefore not advertise the prefix.<br />
Route server is working within it&#8217;s own AS number but is transparent, which means that it&#8217;s AS is removed from AS_PATH while advertising to route server client. This feature have to be activated per neighbor in BGP configuration.</p>
<pre>router bgp 65100
   neighbor 10.0.0.1 remote-as 100
      address-family ipv4 unicast
      neighbor 10.0.0.1 activate
      neighbor 10.0.0.1 route-server-client
</pre>
<p>The client routers also have to be prepared to work correctly with route servers. By default router won&#8217;t accept eBGP update if first AS number in AS_PATH is different than AS number of router sending the update. This situation occurs while route server is sending it&#8217;s transparent updates. Route server client router have to be configured to disable that behavior in order for the client to receive the updates.</p>
<pre>router bgp 100
   no bgp enforce-first-as
</pre>
<p>With this configuration route server is acting as route reflector. Now it&#8217;s time to configure policies that will affect standard BGP route selection process. It&#8217;s done by using contexts that are applied per neighbor. Route-maps are used to accomplish this task and all standard filtering mechanisms such as as-path access-list or prefix-list can be used.</p>
<pre>
router bgp 65100
   route-server-context PERMIT_PREFIX_CONTEXT
      address-family ipv4 unicast
         import-map PERMIT_PREFIX
      exit-address-family
   exit-route-server-context
   neighbor 10.0.0.1 remote-as 100
   address-family ipv4 unicast
      neighbor 10.0.0.1 activate
      neighbor 10.0.0.1 route-server-client context PERMIT_PREFIX_CONTEXT
!
ip prefix-list 1 permit 172.16.0.0/16
!
route-map PERMIT_PREFIX permit 10
   match ip address prefix-list 1
!</pre>
<p>The import-map references a route-map, where the actual policy is defined by permit statement inside route-map. Prefixes are received from neighbors and standard inbound filtering is applied. The best path from among the subset of matching routes is imported into the virtual table for the contexts. Then standard outbound filtering is applied.</p>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/routing/'>Routing</a> Tagged: <a href='http://ccieplayground.wordpress.com/tag/asr1000/'>asr1000</a>, <a href='http://ccieplayground.wordpress.com/tag/asr1k/'>ASR1k</a>, <a href='http://ccieplayground.wordpress.com/tag/bgp/'>BGP</a>, <a href='http://ccieplayground.wordpress.com/tag/ios-xe/'>IOS XE</a>, <a href='http://ccieplayground.wordpress.com/tag/route-reflector/'>route reflector</a>, <a href='http://ccieplayground.wordpress.com/tag/route-server/'>route server</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=281&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2012/01/24/bgp-route-server-on-asr1000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>BGP Origin AS Validation &#8211; IOS XE 3.5S</title>
		<link>http://ccieplayground.wordpress.com/2011/11/29/bgp-origin-as-validation-ios-xe-3-5s/</link>
		<comments>http://ccieplayground.wordpress.com/2011/11/29/bgp-origin-as-validation-ios-xe-3-5s/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 21:35:16 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Routing]]></category>
		<category><![CDATA[asr1000]]></category>
		<category><![CDATA[ASR1k]]></category>
		<category><![CDATA[BGP]]></category>
		<category><![CDATA[IOS XE]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=276</guid>
		<description><![CDATA[Just yesterday IOS XE 3.5S for ASR1000 platform has been released. One of the new features introduced for ASR1000 platform is Origin AS Validation for BGP protocol. This feature helps prevent operators from inadvertently advertising routes to networks they do not control using RPKI server to authenticate that certain BGP prefixes. RPKI (Resource Public Key [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=276&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just yesterday IOS XE 3.5S for ASR1000 platform has been released. One of the new features introduced for ASR1000 platform is Origin AS Validation for BGP protocol. This feature helps prevent operators from inadvertently advertising routes to networks they do not control using RPKI server to authenticate that certain BGP prefixes.<br />
<span id="more-276"></span><br />
RPKI (Resource Public Key Infrastructure) server acts as point of authentication that certain prefixes are allowed to originate from particular autonomous systems. Router downloads list of prefixes or prefix ranges from RPKI servers and stores it as SVOC record. When router receive prefix from eBGP neighbor it initially places it in <em>Not Found</em> state and examine it against SVOC table. If prefix does not exist in SVOC table it remains in <em>Not Found</em> state and is installed in the BGP routing table and will only be flagged as a bestpath or considered as a candidate for multipath if there is no <em>Valid</em> alternative. Standard BGP best path selection algorithm still occurs.<br />
Received prefix can also be marked as <em>Valid</em> or <em>Invalid</em>. In first case prefix must be found in SVOC table and Origin AS must match, then prefix is installed in the BGP routing table. If prefix is found in SVOC table but either the corresponding Origin AS received from the eBGP peer is not the AS that appears in the SOVC table or the prefix length does not match then prefix is marked as <em>Invalid</em> and is not advertised to any peer nor be flagged as best path.<br />
Validation state can by optionally be announced to iBGP peers using extended community attribute. This attribute is never send to eBGP peers.</p>
<p>The only configuration required is enabling TCP session to RPKI servers</p>
<pre>router bgp 65100
 bgp rpki server tcp 10.0.0.1 port 35000 refresh 600</pre>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/routing/'>Routing</a> Tagged: <a href='http://ccieplayground.wordpress.com/tag/asr1000/'>asr1000</a>, <a href='http://ccieplayground.wordpress.com/tag/asr1k/'>ASR1k</a>, <a href='http://ccieplayground.wordpress.com/tag/bgp/'>BGP</a>, <a href='http://ccieplayground.wordpress.com/tag/ios-xe/'>IOS XE</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/276/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=276&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/11/29/bgp-origin-as-validation-ios-xe-3-5s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>EURONOG 1 presentations</title>
		<link>http://ccieplayground.wordpress.com/2011/11/14/euronog-1-presentations/</link>
		<comments>http://ccieplayground.wordpress.com/2011/11/14/euronog-1-presentations/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 07:42:23 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=272</guid>
		<description><![CDATA[EURONOG is an international meeting of experts responsible for the design, maintenance and development of ICT networks. It&#8217;s first edition took place in Kraków in September. All presentations from this meeting, including mine, are available on conference page. Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=272&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>EURONOG is an international meeting of experts responsible for the design, maintenance and development of ICT networks. It&#8217;s first edition took place in Kraków in September. All presentations from this meeting, including mine, are available on <a href="http://euronog.eu/meeting2011/materials" title="conference page" target="_blank">conference page</a>.</p>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/272/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=272&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/11/14/euronog-1-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>End of Cisco 7200 Era</title>
		<link>http://ccieplayground.wordpress.com/2011/10/05/end-of-cisco-7200-era/</link>
		<comments>http://ccieplayground.wordpress.com/2011/10/05/end-of-cisco-7200-era/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 05:41:30 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=268</guid>
		<description><![CDATA[It was expected since the day ASR1000 has been announced. Now it&#8217;s a fact &#8211; ASR1000 is a grown up platform so Cisco 7200 is going to finish it&#8217;s life. If you want it in your network you have less than a year to order it. Cisco 7200 EoS/EoL Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=268&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It was expected since the day ASR1000 has been announced. Now it&#8217;s a fact &#8211; ASR1000 is a grown up platform so Cisco 7200 is going to finish it&#8217;s life. If you want it in your network you have less than a year to order it.<br />
<a href="http://www.cisco.com/en/US/prod/collateral/routers/ps341/end_of_life_c51-681414.html?vs_f=RSS+Feed+for+End-of-Sale+and+End-of-Life+Products&amp;vs_p=EOL/EOS+for+the+Cisco+7200+Series+Routers&amp;vs_k=1" title="Cisco 7200 EoS/EoL" target="_blank">Cisco 7200 EoS/EoL</a></p>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/268/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=268&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/10/05/end-of-cisco-7200-era/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>Identyfying PPPoE transient sessions</title>
		<link>http://ccieplayground.wordpress.com/2011/10/04/identyfying-pppoe-transient-sessions/</link>
		<comments>http://ccieplayground.wordpress.com/2011/10/04/identyfying-pppoe-transient-sessions/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 14:24:36 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Routing]]></category>
		<category><![CDATA[BRAS]]></category>
		<category><![CDATA[PPP]]></category>
		<category><![CDATA[PPPoE]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=265</guid>
		<description><![CDATA[If PPP negotiations fails (ie. due to problems with authentication or lack of account on RADIUS server) session stays in transient state for some time. You can list those session bras# show pppoe summary PTA : Locally terminated sessions FWDED: Forwarded sessions TRANS: All other sessions (in transient state) TOTAL PTA FWDED TRANS TOTAL 5678 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=265&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If PPP negotiations fails (ie. due to problems with authentication or lack of account on RADIUS server) session stays in transient state for some time. You can list those session</p>
<pre>bras# show pppoe summary
    PTA  : Locally terminated sessions
    FWDED: Forwarded sessions
    TRANS: All other sessions (in transient state)

                                TOTAL     PTA   FWDED   TRANS
TOTAL                            5678    5673       0       5
GigabitEthernet1/0/0             3863    3862       0       1
GigabitEthernet1/1/0             1815    1811       0       4
</pre>
<p>It&#8217;s possible to identify MAC address for modems that couldn&#8217;t establish sessions</p>
<pre>bras# sh pppoe ses | i LCP
   3095  28818  000e.5499.722d  Gi1/0/0.525              1  N/A        LCP
   3548  28669  001f.a45c.7a4d  Gi1/1/0.527              1  N/A        LCP
  13370  28817  0013.3319.316d  Gi1/1/0.527              1  N/A        LCP
   6372  28813  0013.3199.751e  Gi1/1/0.527              1  N/A        LCP
   6018  28812  0019.c8a3.3d66  Gi1/1/0.1598             3  N/A        LCP
</pre>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/routing/'>Routing</a> Tagged: <a href='http://ccieplayground.wordpress.com/tag/bras/'>BRAS</a>, <a href='http://ccieplayground.wordpress.com/tag/ppp/'>PPP</a>, <a href='http://ccieplayground.wordpress.com/tag/pppoe/'>PPPoE</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=265&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/10/04/identyfying-pppoe-transient-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>PLNOG 7 and EURONOG 1</title>
		<link>http://ccieplayground.wordpress.com/2011/09/27/plnog-7-and-euronog-1/</link>
		<comments>http://ccieplayground.wordpress.com/2011/09/27/plnog-7-and-euronog-1/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 18:39:08 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=258</guid>
		<description><![CDATA[Readers attending PLNOG and EURONOG conference this week (starting tomorrow!) I&#8217;d like to invite to my two lectures: L2 and L3 aspects of QoS (in polish) Overview of Auditing and Testing Network IPv6 Readiness (in english) Later, on conferences sites presentations, audio and video recordings will be available for free. PLNOG EURONOG Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=258&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Readers attending PLNOG and EURONOG conference this week (starting tomorrow!) I&#8217;d like to invite to my two lectures:</p>
<ul>
<li>L2 and L3 aspects of QoS (in polish)</li>
<li>Overview of Auditing and Testing Network IPv6 Readiness (in english)</li>
</ul>
<p>Later, on conferences sites presentations, audio and video recordings will be available for free.<br />
<a title="PLNOG" href="http://plnog.pl" target="_blank">PLNOG</a><br />
<a title="EURONOG" href="http://euronog.eu" target="_blank">EURONOG</a></p>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/258/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=258&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/09/27/plnog-7-and-euronog-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>Interface range vlan</title>
		<link>http://ccieplayground.wordpress.com/2011/09/08/252/</link>
		<comments>http://ccieplayground.wordpress.com/2011/09/08/252/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 19:38:48 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Routing]]></category>
		<category><![CDATA[7600]]></category>
		<category><![CDATA[SVI]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=252</guid>
		<description><![CDATA[Interface range command is quite widely used on Cisco switches to configure many physical interfaces at the same time. On 7600 routers it can be also used to configure many SVIs at the same time but you can use it only to configure existing SVIs within range. According to documentation this command cannot be used [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=252&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>Interface range</em> command is quite widely used on Cisco switches to configure many physical interfaces at the same time. On 7600 routers it can be also used to configure many SVIs at the same time but you can use it only to configure existing SVIs within range. According to documentation this command cannot be used to create SVIs in that particular range which is not totally true.<br />
<span id="more-252"></span><br />
Truth is you can&#8217;t create new range of SVIs with this command.</p>
<pre>c7600-pwo(config)#int range vlan 10-20
                            ^
% Invalid input detected at '^' marker.
</pre>
<p>There is <em>interface range create vlan</em> command that you have to use to create range of SVIs.</p>
<pre>c7600-pwo(config)#int range create vlan 10-20</pre>
<p>So you should assume that command <em>interface range vlan 10-22</em> should not work. Well, you are wrong. Unless you start range within already created range new SVIs will be created.</p>
<pre>c7600-pwo(config)#int range vlan 10-22
c7600-pwo(config-if-range)#des test 3
c7600-pwo(config-if-range)#exit
c7600-pwo(config)#do sh run int vlan 22
Building configuration...

Current configuration : 69 bytes
!
interface Vlan22
 description test 3
 no ip address
 shutdown
end
</pre>
<p>But if specified range does not start within already defined SVIs new SVIs won&#8217;t be created</p>
<pre>c7600-pwo(config)#int range vlan 9-22
                            ^
% Invalid input detected at '^' marker.
</pre>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/routing/'>Routing</a> Tagged: <a href='http://ccieplayground.wordpress.com/tag/7600/'>7600</a>, <a href='http://ccieplayground.wordpress.com/tag/svi/'>SVI</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/252/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=252&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/09/08/252/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>Reserved VLANs on NX-OS 5.2(1)</title>
		<link>http://ccieplayground.wordpress.com/2011/08/31/reserved-vlans-on-nx-os-5-21/</link>
		<comments>http://ccieplayground.wordpress.com/2011/08/31/reserved-vlans-on-nx-os-5-21/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 12:51:13 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Switching]]></category>
		<category><![CDATA[Nexus]]></category>
		<category><![CDATA[Nexus 7000]]></category>
		<category><![CDATA[NX-OS]]></category>
		<category><![CDATA[vPC]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=248</guid>
		<description><![CDATA[Internal VLANs are used for services like MPLS, FCoE, Multicast over GRE, enhancement to SPAN, etc. Some Features have special requirements like which VLAN can be reserved for them. Example of such service are Multicast VLAN which can only start with VLAN id&#8217;s that is multiple of 64. Prior to release 5.2(1) the reserved VLAN [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=248&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Internal VLANs are used for services like MPLS, FCoE, Multicast over GRE, enhancement to SPAN, etc. Some Features have special requirements like which VLAN can be reserved for them. Example of such service are Multicast VLAN which can only start with VLAN id&#8217;s that is multiple of 64.</p>
<p>Prior to release 5.2(1) the reserved VLAN range was 3968 to 4048, and 4094, and it was not configurable. After the upgrade user-defined VLANs might fall within the new reserved range which now range from 3968 to 4095 and is configurable. If that occurs, switch fallback to old range but the features that need the additional reserved VLANs won&#8217;t work propely. What you have to do is change range of reserved VLANs using command:</p>
<pre>switch(config)# system vlan 2000 reserve
This will delete all configs on vlans 2000-2127. Continue anyway? (y/n) [no] y
Note: After switch reload, VLANs 2000-2127 will be reserved for internal use.
      This requires copy running-config to startup-config before
      switch reload. Creating VLANs within this range is not allowed.</pre>
<p>Now the disadvantage if this is you have to reboot whole chassis. Simple switchover between supervisors on Nexus 7000 won&#8217;t be enough. Also, if you are using vPC if one switch is using new VLAN range and other one is still configured to use old range switches will not forward those VLANs on vPC peer-link. Hence, those VLANs will get suspended on vPC port-channel. But this should not affect any other VLANs in vPC.</p>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/switching/'>Switching</a> Tagged: <a href='http://ccieplayground.wordpress.com/tag/nexus/'>Nexus</a>, <a href='http://ccieplayground.wordpress.com/tag/nexus-7000/'>Nexus 7000</a>, <a href='http://ccieplayground.wordpress.com/tag/nx-os/'>NX-OS</a>, <a href='http://ccieplayground.wordpress.com/tag/vpc/'>vPC</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/248/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=248&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/08/31/reserved-vlans-on-nx-os-5-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>Deleting a subinterface that has IPv6 EIGRP running on it and crashing IOS XE</title>
		<link>http://ccieplayground.wordpress.com/2011/08/10/deleting-a-subinterface-that-has-ipv6-eigrp-running-on-it-and-crashing-ios-xe/</link>
		<comments>http://ccieplayground.wordpress.com/2011/08/10/deleting-a-subinterface-that-has-ipv6-eigrp-running-on-it-and-crashing-ios-xe/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 17:27:00 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[asr1000]]></category>
		<category><![CDATA[ASR1k]]></category>
		<category><![CDATA[EIGRP]]></category>
		<category><![CDATA[IOS XE]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=245</guid>
		<description><![CDATA[In some cases router running IOS XE might crash or produce traceback if we try to delete logical interface (like ie. port-channel) or subinterface that runs IPv6 EIGRP. This can occur mostly on XNE or older releaseses, has been fixed in new ones. Cisco have internal bug CSCtd63242 describing this problem (might be released into [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=245&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In some cases router running IOS XE might crash or produce traceback if we try to delete logical interface (like ie. port-channel) or subinterface that runs IPv6 EIGRP. This can occur mostly on XNE or older releaseses, has been fixed in new ones. Cisco have internal bug CSCtd63242 describing this problem (might be released into public).<br />
<span id="more-245"></span></p>
<p>For testing purposes I prepared following configuration</p>
<pre>interface Port-channel1
 no ip address
 no negotiation auto
!
interface Port-channel1.282
 encapsulation dot1Q 282
 ip address 10.0.0.1 255.255.255.240
 ipv6 address 2A01:3D0:1:212::1/64
 ipv6 enable
 ipv6 eigrp 150
!
</pre>
<p>Let&#8217;s try to remove configuration</p>
<pre>
test-rtr(config)#no int port-ch 1
test-rtr(config)#

Exception to IOS Thread:
Frame pointer 2C64F498, PC = 116D5838

ASR1000-EXT-SIGNAL: U_SIGSEGV(11), Process = EIGRP-IPv6
-Traceback= 1#da7989e8973511c6ffbd1828e9ed3784  :10000000+16D5838 systime:B4E7000+19D0 :10000000+16D5A94 :10000000+629B9C :10000000+641A28 :10000000+3F1F108 :10000000+3F1F870 :10000000+3F200E4 

Fastpath Thread backtrace:
-Traceback= 1#da7989e8973511c6ffbd1828e9ed3784  c:B20A000+D8678 c:B20A000+D8658 iosd_unix:B38C000+1247C pthread:AFB8000+56EC 

Auxiliary Thread backtrace:
-Traceback= 1#da7989e8973511c6ffbd1828e9ed3784  pthread:AFB8000+B168 pthread:AFB8000+B148 c:B20A000+EDEB4 iosd_unix:B38C000+1BEE4 pthread:AFB8000+56EC 

PC  = 0x116D5838  LR  = 0x116D5A94  MSR = 0x0002D000
CTR = 0x0B4E89C0  XER = 0x00000000
R0  = 0x116D5A94  R1  = 0x2C64F498  R2  = 0x2C0619D0  R3  = 0x0D0D0D0D
R4  = 0x2C64F4C8  R5  = 0x00000004  R6  = 0x10629B98  R7  = 0x00000000
R8  = 0x03BC53F5  R9  = 0x00000000  R10 = 0x00000001  R11 = 0x00000000
R12 = 0x03BC53F4  R13 = 0x15B09550  R14 = 0x13F1FDB4  R15 = 0x00000000
R16 = 0x00000000  R17 = 0x00000000  R18 = 0x00000000  R19 = 0x00000000
R20 = 0x00000000  R21 = 0x13F20000  R22 = 0x2C64F5E8  R23 = 0x15240000
R24 = 0x153E0000  R25 = 0x15E90000  R26 = 0x2C647BE0  R27 = 0x00000000
R28 = 0x2C64F4C8  R29 = 0x10629B98  R30 = 0x00000004  R31 = 0x0D0D0D0D

Writing crashinfo to bootflash:crashinfo_RP_00_00_20110801-230510-UTC
Buffered messages:

000060: *Aug  1 06:34:36.421 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up
000061: *Aug  1 06:35:15.252 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to down
000062: *Aug  1 06:36:33.701 UTC: %SYS-5-CONFIG_I: Configured from console by console
000063: *Aug  1 06:36:53.770 UTC: %SYS-5-CONFIG_I: Configured from console by console
000064: *Aug  1 06:37:26.149 UTC: %SYS-5-CONFIG_I: Configured from console by console
000065: *Aug  1 06:37:27.859 UTC: %LINK-3-UPDOWN: Interface GigabitEthernet0/0/0, changed state to up
000066: *Aug  1 06:37:28.859 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
000067: *Aug  1 06:37:27.932 UTC: %LINK-3-UPDOWN: SIP0/0: Interface GigabitEthernet0/0/0, changed state to up
000068: *Aug  1 06:48:50.464 UTC: %SYS-5-CONFIG_I: Configured from console by console
000069: *Aug  1 06:51:37.651 UTC: %SYS-5-CONFIG_I: Configured from console by console
000070: *Aug  1 07:06:52.608 UTC: %SYS-6-EXEC_EXPIRE_TIMER: (tty 0 (0.0.0.0)) exec-timeout timer expired for user
000071: *Aug  1 22:49:29.616 UTC: %SYS-5-CONFIG_I: Configured from console by console
000072: *Aug  1 23:03:52.064 UTC: %LINK-5-CHANGED: Interface GigabitEthernet0/0/0, changed state to administratively down
000073: *Aug  1 23:03:53.064 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to down
000074: *Aug  1 23:04:02.488 UTC: %LINK-3-UPDOWN: Interface GigabitEthernet0/0/0, changed state to up
000075: *Aug  1 23:04:03.488 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
000076: *Aug  1 23:04:02.530 UTC: %LINK-3-UPDOWN: SIP0/0: Interface GigabitEthernet0/0/0, changed state to up
000077: *Aug  1 23:04:08.230 UTC: %SYS-5-CONFIG_I: Configured from console by console
Queued messages:Aug  1 23:06:41.536 R0/0: %PMAN-3-PROCHOLDDOWN: The process ppc_linux_iosd-image has been helddown (rc 139)
Aug  1 23:06:41.742 R0/0: %PMAN-0-PROCFAILCRIT: A critical process ppc_linux_iosd_image has failed (rc 139)
Aug  1 23:06:41.914 R0/0: %PMAN-3-RELOAD_RP_SB_NOT_READY: Reloading: Fault on Active RP bay but Standby RP bay is not ready
Aug  1 23:06:48.762 R0/0: %PMAN-5-EXITACTION: Process manager is exiting: critical process fault, ppc_linux_iosd_image, rp_
</pre>
<p>What&#8217;s interested</p>
<p>There are two things we can do except recommended upgrade:<br />
1) Remove EIGRP configuration from the subinterface with a before deleting the subinterface<br />
2) Activate software redundancy (additional license is required) so software crash would cause only switchover to redundant IOS process.</p>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/ipv6/'>IPv6</a>, <a href='http://ccieplayground.wordpress.com/category/routing/'>Routing</a> Tagged: <a href='http://ccieplayground.wordpress.com/tag/asr1000/'>asr1000</a>, <a href='http://ccieplayground.wordpress.com/tag/asr1k/'>ASR1k</a>, <a href='http://ccieplayground.wordpress.com/tag/eigrp/'>EIGRP</a>, <a href='http://ccieplayground.wordpress.com/tag/ios-xe/'>IOS XE</a>, <a href='http://ccieplayground.wordpress.com/tag/ipv6/'>IPv6</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/245/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=245&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/08/10/deleting-a-subinterface-that-has-ipv6-eigrp-running-on-it-and-crashing-ios-xe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple line card performance testing configuration (IOS XR)</title>
		<link>http://ccieplayground.wordpress.com/2011/07/15/simple-line-card-performance-testing-configuration-ios-xr/</link>
		<comments>http://ccieplayground.wordpress.com/2011/07/15/simple-line-card-performance-testing-configuration-ios-xr/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 18:00:05 +0000</pubDate>
		<dc:creator>wojciechowskipiotr</dc:creator>
				<category><![CDATA[Switching]]></category>
		<category><![CDATA[ASR 9000]]></category>
		<category><![CDATA[ASR9000]]></category>
		<category><![CDATA[ASR9k]]></category>
		<category><![CDATA[IOS XR]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://ccieplayground.wordpress.com/?p=241</guid>
		<description><![CDATA[It&#8217;s easy trick but I&#8217;m going to put it here anyway so anyone can use it and for me so I can easy find code when I need it :) This is &#8220;snake&#8221; that is made traffic from generator go through all ports on line cards and between two line cards. It&#8217;s made for testing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=241&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s easy trick but I&#8217;m going to put it here anyway so anyone can use it and for me so I can easy find code when I need it :) This is &#8220;snake&#8221; that is made traffic from generator go through all ports on line cards and between two line cards. It&#8217;s made for testing purposes in lab environment if you need to verify performance capability of ASR9K router (or any other runnin IOS XR in this case) for customer.<br />
<span id="more-241"></span><br />
The idea is simple &#8211; Ethernet ports are configured as EFP&#8217;s for particular VLAN and then we alternate point-to-point cross connects and physical connections between subsequent ports, remembering that first and last port in out chain are connected to traffic generator</p>
<pre>
l2vpn
 xconnect group snake
  p2p 1
   interface gi 0/0/0/1.50
   interface gi0/0/0/2.50
  !
  p2p 2
   interface gi 0/0/0/3.50
   interface gi0/0/0/4.50
  !
  p2p 3
   interface gi 0/0/0/5.50
   interface gi0/0/0/6.50
  !
 !
!
</pre>
<br />Filed under: <a href='http://ccieplayground.wordpress.com/category/switching/'>Switching</a> Tagged: <a href='http://ccieplayground.wordpress.com/tag/asr-9000/'>ASR 9000</a>, <a href='http://ccieplayground.wordpress.com/tag/asr9000/'>ASR9000</a>, <a href='http://ccieplayground.wordpress.com/tag/asr9k/'>ASR9k</a>, <a href='http://ccieplayground.wordpress.com/tag/ios-xr/'>IOS XR</a>, <a href='http://ccieplayground.wordpress.com/tag/performance/'>performance</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ccieplayground.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ccieplayground.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ccieplayground.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ccieplayground.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ccieplayground.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ccieplayground.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ccieplayground.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ccieplayground.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ccieplayground.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ccieplayground.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ccieplayground.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ccieplayground.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ccieplayground.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ccieplayground.wordpress.com/241/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ccieplayground.wordpress.com&amp;blog=12596416&amp;post=241&amp;subd=ccieplayground&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ccieplayground.wordpress.com/2011/07/15/simple-line-card-performance-testing-configuration-ios-xr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e392093526faa05358e90153e366b47b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wojciechowskipiotr</media:title>
		</media:content>
	</item>
	</channel>
</rss>
