<?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</title>
	<atom:link href="http://dorreke.wordpress.com/category/ipv6/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</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>
		<item>
		<title>Oh-Oh! Have I hit a bug?</title>
		<link>http://dorreke.wordpress.com/2008/04/20/oh-oh-have-i-hit-a-bug-2/</link>
		<comments>http://dorreke.wordpress.com/2008/04/20/oh-oh-have-i-hit-a-bug-2/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 17:02:51 +0000</pubDate>
		<dc:creator>dorreke</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[IOS Bugs]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://dorreke.wordpress.com/?p=90</guid>
		<description><![CDATA[Following NMC Lab16, I reloaded my stack, only to find R1 is in a reload loop.  This isn&#8217;t the first time it has happened, and it was R1 last time as well.  I wonder if I have a hardware problem, or whether it is an IOS bug.  Last time I managed to fix it by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=90&subd=dorreke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Following NMC Lab16, I reloaded my stack, only to find R1 is in a reload loop.  This isn&#8217;t the first time it has happened, and it was R1 last time as well.  I wonder if I have a hardware problem, or whether it is an IOS bug.  Last time I managed to fix it by loading without the NVRAM, just like a password recovery, then loading the config once the router was running.  This time, the technique didn&#8217;t work; as soon as I pasted in the old config, it would crash again.</p>
<p>So instead, I loaded up the router without the NVRAM config, then added the config section by section.  I narrowed down the crash to a distribute-list in my IPv6 RIP process.  The distribute list was called &#8220;default-only&#8221;, and I think it didn&#8217;t like that for some reason.  It referred to a prefix list that has only the default route in it. Anyway, I shouldn&#8217;t have needed it, because the SHOWiT solution is much more elegant: <strong>ipv6 rip RIP default-information only</strong>.</p>
<p>As someone recently commented, it&#8217;s just as well they use that special bug-free version of IOS for the CCIE exam labs!</p>
<p> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dorreke.wordpress.com/90/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dorreke.wordpress.com/90/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dorreke.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dorreke.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dorreke.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dorreke.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dorreke.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dorreke.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dorreke.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dorreke.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dorreke.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dorreke.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=90&subd=dorreke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dorreke.wordpress.com/2008/04/20/oh-oh-have-i-hit-a-bug-2/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 Lab 14</title>
		<link>http://dorreke.wordpress.com/2008/04/01/nmc-lab-14/</link>
		<comments>http://dorreke.wordpress.com/2008/04/01/nmc-lab-14/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 21:10:05 +0000</pubDate>
		<dc:creator>dorreke</dc:creator>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[LAN Switching]]></category>
		<category><![CDATA[NAT]]></category>
		<category><![CDATA[RIP]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://dorreke.wordpress.com/?p=72</guid>
		<description><![CDATA[Busy busy busy, so I only have time for a few notes which I hope I shall expand later.  Just to punish myself for my mistakes &#8230;  


14.4.1 : RIP : I read too much into the requirements.  I read 14.4.1 as meaning that I should set up neighbor relations R2&#60;&#8211;&#62;R6&#60;&#8211;&#62;R4, but not R2&#60;&#8211;&#62;R4.  Then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=72&subd=dorreke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Busy busy busy, so I only have time for a few notes which I hope I shall expand later.  Just to punish myself for my mistakes &#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li>
<div>14.4.1 : RIP : I read too much into the requirements.  I read 14.4.1 as meaning that I should set up neighbor relations R2&lt;&#8211;&gt;R6&lt;&#8211;&gt;R4, but not R2&lt;&#8211;&gt;R4.  Then I wondered why there was nothing in the requirements about the route from R2 to 172.16.104.1 and from R4 to 172.16.102.1.  (Of course, the answer would have been <strong>no ip split-horizon</strong> on R6-F0/0.)  But it seems I &#8220;spotted an issue&#8221; that wasn&#8217;t there in the first place! </div>
</li>
<li>
<div>14.8.1 : Security : I&#8217;m just going to have to sit down and read the Command Reference for all those itty-bitty security commands.  Boring or what!</div>
</li>
<li>
<div>14.9 : IPv6 : Don&#8217;t mess about thinking &#8220;can I get away without specifying link-local addresses&#8221;.  In a frame-relay configuration, they are absolutely essential so that you can set frame-maps to them.  Do them as a matter of course.  Oh, and the pseudo-broadcast should only go to the link-local at the other end of the DLCI, not to any of the others.  I wasted an hour on the IPv6 section that should have taken me half that time.</div>
</li>
<li>
<div>14.10.2 : Layer-3 access list on Catalyst layer-2 port.  This can be done; I know because I do it all the time on my 4500 switches at work.  What I am a bit puzzled at here is that the access-lists don&#8217;t seem to be counting packets.  My first attempt didn&#8217;t include return traffic for telnet, so I know the access-list is working.  So why doesn&#8217;t it count packets?</div>
</li>
<li>
<div>14.11.2 : NAT : <strong>ip nat source list 11 pool IG overload</strong> will not do instead of <strong>ip nat inside source list 11 pool IG overload</strong>. I&#8217;m not sure what it does without the &#8220;inside&#8221; keyword, but it does accept the command, and it doesn&#8217;t do the job I wanted it to.  Careful!</div>
</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dorreke.wordpress.com/72/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dorreke.wordpress.com/72/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dorreke.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dorreke.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dorreke.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dorreke.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dorreke.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dorreke.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dorreke.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dorreke.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dorreke.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dorreke.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=72&subd=dorreke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dorreke.wordpress.com/2008/04/01/nmc-lab-14/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>IOS Gotcha : IPv6 address</title>
		<link>http://dorreke.wordpress.com/2008/03/11/the-ipv6-address-gotcha/</link>
		<comments>http://dorreke.wordpress.com/2008/03/11/the-ipv6-address-gotcha/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 20:50:25 +0000</pubDate>
		<dc:creator>dorreke</dc:creator>
				<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://dorreke.wordpress.com/?p=51</guid>
		<description><![CDATA[This is a gotcha that almost anyone who has ever configured IPv6 has tripped over.  One thing it is easy to forget in the heat of the moment is that an interface can have as many IPv6 addresses as you want.
If you are used to configuring IPv4, you are probably used to changing the IP [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=51&subd=dorreke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a gotcha that almost anyone who has ever configured IPv6 has tripped over.  One thing it is easy to forget in the heat of the moment is that an interface can have as many IPv6 addresses as you want.</p>
<p>If you are used to configuring IPv4, you are probably used to changing the IP address of an interface and having it do exactly that.  So:</p>
<blockquote>
<pre>R7#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R7(config)#int Lo7
R7(config-if)#ip address 192.168.7.1 255.255.255.0
R7(config-if)#exit
R7(config)#exit
R7#
*Mar  1 00:02:27.467: %SYS-5-CONFIG_I: Configured from console by console
R7#
R7#show run int Lo7
Building configuration... Current configuration : 65 bytes
!
interface Loopback7
 ip address 192.168.7.1 255.255.255.0
end</pre>
</blockquote>
<p>Oops, I meant 192.168.17.1:</p>
<blockquote>
<pre>R7#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R7(config)#int Lo7
R7(config-if)#ip address 192.168.17.1 255.255.255.0
R7(config-if)#exit
R7(config)#exit
R7#
*Mar  1 00:04:13.351: %SYS-5-CONFIG_I: Configured from console by console
R7#show run int Lo7
Building configuration... Current configuration : 66 bytes
!
interface Loopback7
 ip address 192.168.17.1 255.255.255.0
end</pre>
</blockquote>
<p>That&#8217;s better.  Now let&#8217;s try the same thing in IPv6:</p>
<blockquote>
<pre>R7#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R7(config)#int Lo7
R7(config-if)#ipv6 address fec0::7:1/124
R7(config-if)#^Z
R7#
*Mar  1 00:06:49.107: %SYS-5-CONFIG_I: Configured from console by console
R7#show run int Lo7
Building configuration... Current configuration : 94 bytes
!
interface Loopback7
 ip address 192.168.17.1 255.255.255.0
 ipv6 address FEC0::7:1/124
end</pre>
</blockquote>
<p>Oops, I actually meant FEC7::7:1/124.  FEC0::7:1/124 should have been somewhere else in the topology. Let&#8217;s change it:</p>
<blockquote>
<pre>
R7#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
R7(config)#int Lo7
R7(config-if)#ipv6 address fec7::7:1/124
R7(config-if)#^Z
R7#
*Mar  1 00:08:29.679: %SYS-5-CONFIG_I: Configured from console by console
R7#</pre>
</blockquote>
<p>OK, that&#8217;s changed it, hasn&#8217;t it?  Let&#8217;s check:</p>
<blockquote>
<pre>R7#show run int Lo7
Building configuration... Current configuration : 122 bytes
!
interface Loopback7
 ip address 192.168.17.1 255.255.255.0
 ipv6 address FEC0::7:1/124
 ipv6 address FEC7::7:1/124
end</pre>
</blockquote>
<p>You see how it hasn&#8217;t changed the IPv6 address?  It has just added an extra one.  A real &#8220;gotcha&#8221;.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dorreke.wordpress.com/51/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dorreke.wordpress.com/51/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dorreke.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dorreke.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dorreke.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dorreke.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dorreke.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dorreke.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dorreke.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dorreke.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dorreke.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dorreke.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=51&subd=dorreke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dorreke.wordpress.com/2008/03/11/the-ipv6-address-gotcha/feed/</wfw:commentRss>
		<slash:comments>3</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>IPv6 BGP : Peering across link-local addresses</title>
		<link>http://dorreke.wordpress.com/2008/02/23/ipv6-bgp-peering-across-link-local-addresses/</link>
		<comments>http://dorreke.wordpress.com/2008/02/23/ipv6-bgp-peering-across-link-local-addresses/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 16:56:38 +0000</pubDate>
		<dc:creator>dorreke</dc:creator>
				<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://dorreke.wordpress.com/?p=26</guid>
		<description><![CDATA[I just learned that you can peer IPv6 BGP across link-local addresses, even on a tunnel interface.  This came as a surprise to me.  I had always peered across site local addresses and I had assumed that you could not peer across link-local addresses because they are not unique.
(OTOH, I should not have been surprised.  After [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=26&subd=dorreke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just learned that you can peer IPv6 BGP across link-local addresses, even on a tunnel interface.  This came as a surprise to me.  I had always peered across site local addresses and I had assumed that you could not peer across link-local addresses because they are not unique.</p>
<p>(OTOH, I should not have been surprised.  After all, IPv6 OSPF can form adjacencies across link-local addresses, so why not BGP).</p>
<p>So, if you are going to peer to, say, fe80::5, how does the router know which interface to connect through?  Wel, in the example in this lab, we specify the update source too, so I am guessing that it uses that to determine which interface to connect through.</p>
<p>This has some strange implications.  Suppose you have two link-neighbors, but they both have the address fe80::2.  You can only peer with one of them.  For the other one, you would have to use a unique address.</p>
<p>Futhermore,  if your neighbor is a link-local address, then the update source must be mandatory.</p>
<p>The wierd and wonderful world of IP6!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dorreke.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dorreke.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dorreke.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dorreke.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dorreke.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dorreke.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dorreke.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dorreke.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dorreke.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dorreke.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dorreke.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dorreke.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dorreke.wordpress.com&blog=2745488&post=26&subd=dorreke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dorreke.wordpress.com/2008/02/23/ipv6-bgp-peering-across-link-local-addresses/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>