<?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>Kevin Dorrell, CCIE #20765 &#187; IPv6 BGP</title>
	<atom:link href="http://dorreke.wordpress.com/category/ipv6/ipv6-bgp/feed/" rel="self" type="application/rss+xml" />
	<link>http://dorreke.wordpress.com</link>
	<description>A networking journal</description>
	<lastBuildDate>Mon, 02 Feb 2009 19:27:48 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dorreke.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/0f546793b76ce5b527bdb119e7888109?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Kevin Dorrell, CCIE #20765 &#187; IPv6 BGP</title>
		<link>http://dorreke.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dorreke.wordpress.com/osd.xml" title="Kevin Dorrell, CCIE #20765" />
		<item>
		<title>IPv6 &#8211; Redistributing BGP &lt;&#8211;&gt; OSPF</title>
		<link>http://dorreke.wordpress.com/2008/05/04/ipv6-redistributing-bgp-ospf/</link>
		<comments>http://dorreke.wordpress.com/2008/05/04/ipv6-redistributing-bgp-ospf/#comments</comments>
		<pubDate>Sun, 04 May 2008 14:42:34 +0000</pubDate>
		<dc:creator>dorreke</dc:creator>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[IPv6 BGP]]></category>
		<category><![CDATA[IPv6 OSPFv3]]></category>

		<guid isPermaLink="false">http://dorreke.wordpress.com/?p=105</guid>
		<description><![CDATA[In the NMC Sample lab, R1 is an IPv6 border router between OSPF and BGP. It has a loopback interface on R1-Lo100, FEC0::1111:1/125, which is part of the BGP domain by virtue of:
address-family ipv6
neighbor FE80::3333:3333 activate
neighbor FE80::3333:3333 route-map NH-out out
network FEC0::1111:0/125

R1 forms its peer relationship with R3 as it should, and picks up prefixes from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=105&subd=dorreke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In the NMC Sample lab, R1 is an IPv6 border router between OSPF and BGP. It has a loopback interface on R1-Lo100, FEC0::1111:1/125, which is part of the BGP domain by virtue of:</p>
<blockquote><p><code>address-family ipv6<br />
neighbor FE80::3333:3333 activate<br />
neighbor FE80::3333:3333 route-map NH-out out<br />
<span style="color:#ff0000;">network FEC0::1111:0/125</span><br />
</code></p></blockquote>
<p>R1 forms its peer relationship with R3 as it should, and picks up prefixes from there, which it redistributes into OSPF:</p>
<blockquote><p><code>R1#show run | sec ipv6 router ospf<br />
ipv6 router ospf 1<br />
router-id 172.16.10.1<br />
log-adjacency-changes<br />
area 13 virtual-link 172.16.130.1<br />
<span style="color:#ff0000;">redistribute bgp 100 metric 20 include-connected</span><br />
</code></p></blockquote>
<p>But what about that <strong>include-connected</strong>? Shouldn&#8217;t that get our FEC0::1111:0/125 route into OSPF? Apparently not. I found it necessary to do a <strong>redistribute connected</strong> as well.</p>
<blockquote><p><code>R1#show run | sec ipv6 router ospf<br />
ipv6 router ospf 1<br />
router-id 172.16.10.1<br />
log-adjacency-changes<br />
area 13 virtual-link 172.16.130.1<br />
<span style="color:#ff0000;">redistribute connected</span><br />
redistribute bgp 100 metric 20 include-connected</code></p></blockquote>
<p>Conclusion? When redistributing IPv6 BGP into OSPF, the <strong>include-connected</strong> keyword does not seem to work.</p>
<p>I had an issue going the other way too: OSPF&#8211;&gt;BGP. It seems it is not enough just to redistribute:</p>
<blockquote><p><code>address-family ipv6<br />
neighbor FE80::3333:3333 activate<br />
neighbor FE80::3333:3333 route-map NH-out out<br />
network FEC0::1111:0/125<br />
<span style="color:#ff0000;">redistribute ospf 1 include-connected</span><br />
no synchronization<br />
exit-address-family<br />
</code></p></blockquote>
<p>You need to specify what to redistribute:</p>
<blockquote><p><code>address-family ipv6<br />
neighbor FE80::3333:3333 activate<br />
neighbor FE80::3333:3333 route-map NH-out out<br />
network FEC0::1111:0/125<br />
redistribute ospf 1 <span style="color:#ff0000;">match internal external 1 external 2</span> include-connected<br />
no synchronization<br />
exit-address-family<br />
</code></p></blockquote>
<p>I want to look these behaviors up in the Command Reference, but for some reason I cannot find the IPv6 Command Reference documents on the Cisco web site.  I can find the Configuration Guide OK, but not the Command References.  I wrote to their HelpLine about it.</p>
<p> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dorreke.wordpress.com/105/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dorreke.wordpress.com/105/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dorreke.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dorreke.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dorreke.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dorreke.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dorreke.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dorreke.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dorreke.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dorreke.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dorreke.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dorreke.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=105&subd=dorreke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dorreke.wordpress.com/2008/05/04/ipv6-redistributing-bgp-ospf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d16962403d03aab9a4c0c015a27d5b4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dorreke</media:title>
		</media:content>
	</item>
		<item>
		<title>NMC Sample lab</title>
		<link>http://dorreke.wordpress.com/2008/05/04/mnc-sample-lab/</link>
		<comments>http://dorreke.wordpress.com/2008/05/04/mnc-sample-lab/#comments</comments>
		<pubDate>Sun, 04 May 2008 09:18:12 +0000</pubDate>
		<dc:creator>dorreke</dc:creator>
				<category><![CDATA[BGP]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[IPv6 BGP]]></category>

		<guid isPermaLink="false">http://dorreke.wordpress.com/?p=104</guid>
		<description><![CDATA[Since we had a couple of holidays this week (week 18), and having given up on lab 18, I thought I would have a go at the sample lab.  Being a showpiece, I thought it might be interesting and representative.

S7.7 &#8211; BGP auto-summary
 
S.8 &#8211; In IPv6, redistribute ospf 1 include-connected does not redistribute the externals [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=104&subd=dorreke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Since we had a couple of holidays this week (week 18), and having given up on lab 18, I thought I would have a go at the sample lab.  Being a showpiece, I thought it might be interesting and representative.</p>
<ul>
<li><a href="http://bbs.netmasterclass.com/eve/forums?a=tpc&amp;s=8326043644&amp;f=7011020462&amp;m=2781006635&amp;r=2781006635#2781006635" target="_blank">S7.7 &#8211; BGP auto-summary</a><br />
 </li>
<li>S.8 &#8211; In IPv6, <strong>redistribute ospf 1 include-connected</strong> does not redistribute the externals by default.  You have to do <strong>redistribute ospf 1 match internal external 1 external 2 include-connected.<br />
 </strong></li>
<li>S.8 &#8211; Learned the proper syntax for ipv6 BGP validation commands (instead of guessing) 
<ul>
<li>show bgp ipv6 unicast</li>
<li>show bgp ipv6 unicast summary</li>
<li>show bgp ipv6 unicast neighbor<br />
 </li>
</ul>
</li>
<li>S.8 &#8211; <a href="http://dorreke.wordpress.com/2008/05/04/ipv6-redistributing-bgp-ospf/" target="_self">IPv6 &#8211; Redistributing BGP &lt;&#8211;&gt; OSPF</a></li>
</ul>
<p> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dorreke.wordpress.com/104/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dorreke.wordpress.com/104/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dorreke.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dorreke.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dorreke.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dorreke.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dorreke.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dorreke.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dorreke.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dorreke.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dorreke.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dorreke.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=104&subd=dorreke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dorreke.wordpress.com/2008/05/04/mnc-sample-lab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d16962403d03aab9a4c0c015a27d5b4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dorreke</media:title>
		</media:content>
	</item>
	</channel>
</rss>