<?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/"
	>

<channel>
	<title>Simon Žekar - unix, communications, stupidities &#187; IPv6</title>
	<atom:link href="http://simon.zekar.com/tag/ipv6/feed/" rel="self" type="application/rss+xml" />
	<link>http://simon.zekar.com</link>
	<description>"Unix is simple, but it takes a genious to understand the simplicity" --Dennis Ritchie</description>
	<lastBuildDate>Sun, 23 Oct 2011 16:13:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Cisco ASA failover fail if IPv6 enabled</title>
		<link>http://simon.zekar.com/2009/10/02/cisco-asa-failover-fail-if-ipv6-enabled/</link>
		<comments>http://simon.zekar.com/2009/10/02/cisco-asa-failover-fail-if-ipv6-enabled/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 09:14:05 +0000</pubDate>
		<dc:creator>sIMON</dc:creator>
				<category><![CDATA[general bluez]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://simon.zekar.com/?p=128</guid>
		<description><![CDATA[I can&#8217;t believe it&#8230; Failover on Cisco ASA silently stops working after you enable ipv6 configuration. We&#8217;re used of stupid Cisco bugs, but this wins it all ! S.]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t believe it&#8230;</p>
<p><a href="http://rogierm.redbee.nl/blog/2009/07/24/cisco-asa-ipv6-failover-not-supported/">Failover on Cisco ASA silently stops working after you enable ipv6 configuration.</a></p>
<p>We&#8217;re used of stupid Cisco bugs, but this wins it all !</p>
<p>S.</p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zekar.com/2009/10/02/cisco-asa-failover-fail-if-ipv6-enabled/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IPv6 over IPv4 tunnel with Mikrotik &amp; Cisco router</title>
		<link>http://simon.zekar.com/2009/09/27/ipv6-over-ipv4-tunnel-with-mikrotik-cisco-router/</link>
		<comments>http://simon.zekar.com/2009/09/27/ipv6-over-ipv4-tunnel-with-mikrotik-cisco-router/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 20:44:15 +0000</pubDate>
		<dc:creator>sIMON</dc:creator>
				<category><![CDATA[IPv6]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[mikrotik]]></category>
		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://simon.zekar.com/?p=114</guid>
		<description><![CDATA[Time when native IPv6 network will come right to your home is still far away. So tunneling IPv6 network over IPv4 to some IPv6 enabled site is a way to go. Configuration is easier than expected and it worked right away. In my case Cisco 7600 series is at the data center where native IPv6 [...]]]></description>
			<content:encoded><![CDATA[<p>Time when native <a href="http://en.wikipedia.org/wiki/IPv6">IPv6 network</a> will come right to your home is still far away. So <a href="http://en.wikipedia.org/wiki/6to4">tunneling IPv6 network over IPv4</a> to some IPv6 enabled site is a way to go.</p>
<p>Configuration is easier than expected and it worked right away. In my case <a href="http://www.cisco.com/en/US/products/hw/routers/ps368/">Cisco 7600</a> series is at the data center where native IPv6 is established and <a href="http://www.routerboard.com/">Mikrotik RB450</a> ( a choice for home router &#8211; really powerful and really cheap).</p>
<p>One /64 subnet is assigned for the tunnel (point-to-point) and /48 is then routed to it. Yes. In IPv6 /64 subnet of 18446744073709551616 IPs is used for point-to-point tunnel (2 IPs).</p>
<p>On Cisco 7600 &#8211; interface (99.. is a 7600 public IP as 22.. is my home public IP):<br />
<code>interface Tunnel0<br />
 description --- test ipv6 in ipv4 tunnel ---<br />
 no ip address<br />
 ipv6 address 2AAA:BABA:101:1::1/64<br />
 tunnel source 99.99.99.99<br />
 tunnel destination 22.22.22.22<br />
 tunnel mode ipv6ip</code></p>
<p>and route:<br />
<code>ipv6 route 2AAA:BABA:BEEF::/48 2AAA:BABA:101:1::2</code></p>
<p>and on Mikrotik:<br />
<code>/interface 6to4 add disabled=no local-address=22.22.22.22 mtu=1280 name=ipv6tunnel remote-address=99.99.99.99<br />
/ipv6 address add address=2AAA:BABA:101:1::2/64 interface=ipv6tunnel<br />
/ipv6 route add disabled=no dst-address=::/0 gateway=ipv6tunnel<br />
</code></p>
<p>And that&#8217;s it. You can configure local interface on Mikrotik, like this:<br />
<code>/ipv6 add address=2AAA:BABA:BEEF:DEAD:1/64 advertise=yes interface=ether2</code></p>
<p>Local machines, if properly configured should receive <a href="http://www.faqs.org/rfcs/rfc2461.html">advertised IPv6 prefix</a> and configure itself for IPv6.</p>
<p>That&#8217;s for now, more about IPv6 soon ! HaveAnice !!</p>
<p>S.</p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zekar.com/2009/09/27/ipv6-over-ipv4-tunnel-with-mikrotik-cisco-router/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

