<?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; mikrotik</title>
	<atom:link href="http://simon.zekar.com/tag/mikrotik/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>Fri, 23 Apr 2010 22:11:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mikrotik simple bandwidth control</title>
		<link>http://simon.zekar.com/2009/10/14/mikrotik-simple-bandwidth-control/</link>
		<comments>http://simon.zekar.com/2009/10/14/mikrotik-simple-bandwidth-control/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 19:59:30 +0000</pubDate>
		<dc:creator>sIMON</dc:creator>
				<category><![CDATA[general bluez]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[mikrotik]]></category>

		<guid isPermaLink="false">http://simon.zekar.com/?p=137</guid>
		<description><![CDATA[There&#8217;s a really easy way of controlling bandwidth of an interface (e.g. guest interface).
It&#8217;s done via queues:
/queue simple add interface=guest max-limit=2M/2M disabled=no
Where &#8220;guest&#8221; is the interface name and 2M is the down/uplink speed in bps you want to shape it to.
More about this on Mikrotik Wiki
S.
]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a really easy way of controlling bandwidth of an interface (e.g. guest interface).</p>
<p>It&#8217;s done via queues:<br />
<code>/queue simple add interface=guest max-limit=2M/2M disabled=no</code></p>
<p>Where &#8220;guest&#8221; is the interface name and 2M is the down/uplink speed in bps you want to shape it to.</p>
<p>More about this on <a href="http://wiki.mikrotik.com/wiki/Bandwidth_Managment_and_Queues">Mikrotik Wiki</a></p>
<p>S.</p>
]]></content:encoded>
			<wfw:commentRss>http://simon.zekar.com/2009/10/14/mikrotik-simple-bandwidth-control/feed/</wfw:commentRss>
		<slash:comments>1</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 is [...]]]></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>1</slash:comments>
		</item>
	</channel>
</rss>
