<?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>Viking&#039;s blog</title>
	<atom:link href="http://www.vikingweb.it/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.vikingweb.it/wordpress</link>
	<description>Just another (un)useful Wordpress blog</description>
	<lastBuildDate>Sat, 04 Feb 2012 17:02:51 +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>2012 &#8211; An IPv6 Odyssey pt. 2</title>
		<link>http://www.vikingweb.it/wordpress/?p=344</link>
		<comments>http://www.vikingweb.it/wordpress/?p=344#comments</comments>
		<pubDate>Sat, 04 Feb 2012 17:00:46 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Hurricane Electric]]></category>
		<category><![CDATA[ICMPv6]]></category>
		<category><![CDATA[ip6tables]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[IPv6 firewall]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[Router Advertisement]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=344</guid>
		<description><![CDATA[How to configure a Debian or Debian-derived Linux distribution to perform IPv6 routing on an host with two network interfaces and how to configure a simple and effective IPv6 firewalling policy in the router for everyday needs.]]></description>
			<content:encoded><![CDATA[<p>Last year I wrote how to create and configure an IPv6 over IPv4 tunnel with Hurricane Electric.<br />
Now I&#8217;m gonna write how to configure a Linux host with two NICs as an IPv6 router using an HE tunnel when behind a NAT-router.<br />
The examples here are referred to a Debian 6 Linux distribution and may be sligthly different for other distros or *BSD OSs.</p>
<p>Let&#8217;s suppose your current IPv4 network is a classical 172.16.0.0 with a 255.255.0.0 netmask ( /16 in short ), and that your IPv4 NAT-router is located at 172.16.255.254.<br />
The first thing you need to do is to configure one of the interfaces of your IPv6 router, let&#8217;s say <em>eth0</em>, with a fixed IPv4 address in the same subnet of your router, like 172.16.255.253.<br />
Then you have to make sure that your NAT-router forward protocol 41 to your IPv6 router. If this is not the case, you can simply put you IPv6 router in the DMZ. Be careful when you do that! Be sure to apply strong IPv4 firewall policies and keep the daemons listening to that interface at the minimum, maybe on non-standard ports.<br />
After configuring the IPv6 router default IPv4 route ( to your NAT-router of course ), test if you can reach an address outside the local subnet, like 8.8.8.8 ( Google Domain Name Server ).<br />
You&#8217;ll also like to assign an IPv4 address to the other network interface, for instance <em>eth1</em>, to allow some daemons to listen to an IPv4 local address ( like sshd or named for IPv4 ).</p>
<p>Debian and other Debian-related distros usually store the network configuration inside the <em>/etc/network/interfaces</em> file.</p>
<pre># This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
   address 172.16.255.253
   netmask 255.255.0.0
   gateway 172.16.255.254

auto eth1
iface eth1 inet static
   address 172.16.255.252
   netmask 255.255.0.0</pre>
<p>In the tunnel configuration page on the HE&#8217;s website you can find the routable /64 subnet. Mind the difference between the tunnel IPv6 addresses, that usually are something like 2001:1234:567<span style="text-decoration: underline;">8</span>:abc::1 and 2001:1234:567<span style="text-decoration: underline;">8</span>:abc::2, and your routable IPv6 subnet that will be something like 2001:1234:567<span style="text-decoration: underline;">9</span>:abc::.<br />
The IPv6 address of <em>eth1</em> is static ( this is a router after all ) and  must belong to your routable subnet. You can choose of using a simple address, like 2001:1234:5679:abc::1, or, if you&#8217;re a bit paranoic, you can randomize it to something like 2001:1234:5679:abc:5f32:9b8c:d12e:15fa.<br />
Because your routable subnet is not gonna change unless you destroy your HE&#8217;s tunnel and create a new one, you can configure the <em>eth1</em> IPv6 address as static and put the configuration inside <em>/etc/network/interfaces</em>, by adding the following lines:</p>
<pre>iface eth1 inet6 static
   pre-up /sbin/ip6tables-restore &lt; /etc/iptables/ipv6firewall
   address 2001:1234:5679:abc:5f32:9b8c:d12e:15fa
   netmask 64</pre>
<p>The second line is needed to enable the ip6tables firewall.</p>
<p>The configuration for ip6tables is based on a more or less &#8217;standard&#8217; requirement: all the hosts behind the router have unlimited access to the internet on every protocol or port while they&#8217;re not reachable from the rest of world with the exception of some ICMPv6 messages.<br />
Just to avoid some types of DOS attack, I&#8217;ve decided to limit the amount of ICMPv6 echo requests the router ( and the network behind ) is gonna receive.<br />
The content of the <em>/etc/iptables/ipv6firewall</em> file is the following:</p>
<pre># Generated by ip6tables-save
*filter
:INPUT DROP [23:2392]
:FORWARD DROP [4:320]
:OUTPUT ACCEPT [30:2888]
-A INPUT -i lo -j ACCEPT
-A INPUT -i sit1 -p ipv6-icmp --icmpv6-type echo-request -m limit --limit 5/sec -j ACCEPT
-A INPUT -i sit1 -p ipv6-icmp --icmpv6-type echo-request -j DROP
-A INPUT -i sit1 -p ipv6-icmp -j ACCEPT
-A INPUT -i eth1 -j ACCEPT
-A INPUT -i sit1 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -o sit1 -j ACCEPT
-A FORWARD -i sit1 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -i sit1 -p ipv6-icmp --icmpv6-type echo-request -m limit --limit 5/sec -j ACCEPT
-A FORWARD -i sit1 -p ipv6-icmp --icmpv6-type echo-request -j DROP
-A FORWARD -i sit1 -p ipv6-icmp -j ACCEPT
COMMIT</pre>
<p>Then you need to enable IPv6 forwarding at boot time by putting the following file ( you can name it as you want, as long as it ends with .conf; I&#8217;ve called it <em>ipv6_forwarding.conf</em> ) inside the <em>/etc/sysctl.d/</em> directory:</p>
<pre># /etc/sysctl.d/ipv6_forwarding.conf

net.ipv6.conf.all.forwarding = 1</pre>
<p>The next thing to configure is the router advertisement daemon, that can be installed ( as root ) using the command:</p>
<pre><strong># apt-get install radvd</strong></pre>
<p>The configuration file is <em>/etc/radvd.conf</em> and should be similar to this one:</p>
<pre>interface eth1
{
   AdvSendAdvert on;
   AdvManagedFlag on;
   MinRtrAdvInterval 5;
   MaxRtrAdvInterval 15;
   AdvLinkMTU 1280;
   prefix 2001:1234:5679:abc::/64
   {
   };
};</pre>
<p>Some flags are required ( like &#8216;AdvLinkMTU&#8217; set to 1280 ) for the tunnel to work, some are optional ( like &#8216;AdvManagedFlag&#8217; ). Maybe next time I&#8217;ll wrote how to configure a DHCPv6 server. DHCPv6 is a little more complex than DHCPv4 also because it must be deployed side-to-side with router advertisement, but allows far greater flexibility than its IPv4 counterpart.<br />
In the meantime, with IPv4-reachable nameservers answering with AAAA records, there&#8217;ll be no real need for IPv6-reachable nameservers on the short term ( that is, until IPv4 will be the mainstream protocol ).</p>
<p>The last part is to set up the tunnel using a shell script. Actually, two scripts are used. The first one contains only variables like the username, the tunnel ID and the password that should be passed via http on SSL to configure the firewall at Hurricane Electric and tell it our public IP.<br />
The file I created is named <em>HE_personal.sh</em> and is stored inside <em>/root</em> with 0700 permission. The content is the following:</p>
<pre>#!/bin/sh

USERNAME=■■■■■■■■
PASSWORD=■■■■■■■■
TUNNELID=■■■■■■■■</pre>
<p>The other file is <em>HE_tunnel_setup.sh</em> that contains the real commands needed to create the tunnel. I&#8217;ve decided to launch it manually ( must be executed as root ) but you can decide to launch it at boot time writing an init.d script or by simply using another &#8216;pre-up&#8217; directive in <em>/etc/network/interfaces</em>. The content is the following:</p>
<pre>#!/bin/sh

. /root/HE_personal.sh

rm ipv4_end.php*
wget --no-check-certificate https://$USERNAME:$PASSWORD@ipv4.tunnelbroker.net/ipv4_end.php?tid=$TID

ifconfig sit0 up
ifconfig sit0 inet6 tunnel ::123.45.678.90
ifconfig sit1 up
ifconfig sit1 inet6 add 2001:1234:5678:abc::2/64
route -A inet6 add ::/0 dev sit1</pre>
<p>The &#8211;no-check-certificate flag for wget is needed because of a little issue with an HE&#8217;s SSL certificate. Mind the prefix of the <em>sit1</em> interface and the remote endpoint of the IPv4 tunnel.</p>
<p>After rebooting the IPv6 router, ip6tables and radvd should be already up and running. After launching the script the tunnel should be configured without issuing any other command.</p>
<p>To check if the hosts had received an IPv6 Link-Global address you can use:</p>
<pre>$ ifconfig -a</pre>
<p>under any UNIX, Unix-like or Linux operating system or</p>
<pre>&gt; ipconfig /all</pre>
<p>under Windows ( any version after Windows XP SP0 ).</p>
<p>Then you can test if the hosts can reach the IPv6 internet using ping6 under any UNIX, Unix-like or Linux operating system ( excluding Oracle Solaris ) or using ping under Windows or Solaris.</p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=2012%20%26%238211%3B%20An%20IPv6%20Odyssey%20pt.%202&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D344">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D344&amp;title=2012+%26%238211%3B+An+IPv6+Odyssey+pt.+2">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D344&amp;title=2012+%26%238211%3B+An+IPv6+Odyssey+pt.+2">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D344&amp;t=2012+%26%238211%3B+An+IPv6+Odyssey+pt.+2">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D344&amp;title=2012+%26%238211%3B+An+IPv6+Odyssey+pt.+2">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=344</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>トップをねらえ 2! と 天元突破グレンラガン [ Aim for the Top 2! DieBuster ] [ &amp; ] [ Gurren Lagann ]</title>
		<link>http://www.vikingweb.it/wordpress/?p=336</link>
		<comments>http://www.vikingweb.it/wordpress/?p=336#comments</comments>
		<pubDate>Wed, 28 Dec 2011 10:36:34 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[anime & manga]]></category>
		<category><![CDATA[Aim for the top 2! DieBuster]]></category>
		<category><![CDATA[Gainax]]></category>
		<category><![CDATA[Gurren Lagann]]></category>
		<category><![CDATA[Tengen Toppa Gurren Lagann]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=336</guid>
		<description><![CDATA[Some words about the last two Gainax productions I saw.]]></description>
			<content:encoded><![CDATA[<p>Just a few words on both the shows. DieBuster ■■■ ■■■■■■■■■■■■■ ■■■■■■■■ ■■ ■■■■ to celebrate the 20th anniversary of Gainax, Gurren Lagann was released in 2007.</p>
<p style="text-align: center;">SPOILER FREE</p>
<p>Gurren Lagann is funny. Really. The soundtrack is cool even if the OSTs of GunBuster or EVA are on another level, but there are some tracks that are worth listening to them. The plot is&#8230; well, sorta same Gainax plot from &#8220;it&#8217;s all fun and games&#8221; that lead to &#8220;mankind is gonna die&#8221;. The plot is simple, not too complicated and, compared to other Gainax&#8217;s productions, funny. Really.</p>
<p>DieBuster ■■ ■ ■■■■ ■■■■ ■■■■■ ■■■ ■■■■ ■■■■ GunBuster ■■■ ■■■■■ ■■■■■ ■■■■■■■■■ ■■■■■■■■■■ ■■ ■■■■■■■■■ ■■ ■■■ Gainax ■■■■■■■ ■■■■■■■■ ■■ &#8220;Nadia: the secret of Fuzzy&#8221;■ ■■ ■■■■■■■ ■■■■■ ■■■ ■■ ■ ■■■ ■■■■ ■■■■■ ■■■■■ ■■ ■■■■■■</p>
<p>So probably the last three minutes ■■ ■■■■■■■■■ ■■■ ■■■ ■■■■ ■■■■ ■■ ■■■ ■■■■ ■■■■ ■■ ■■■■■ ■■■■■■■■■ ■■■■■■■■■■■ ■■■■ ■■■ ■■■■■■■ ■■■ ■■■■ ■■■ ■■■■ ■■■■■■■■■ ■■■■■ ■■■ ■■ ■■■■ ■■ ■■■■■■■■■■ ■■■■ ■■■■■■■■ in the last episode. And that&#8217;s it. Period.</p>
<p>Bye</p>
<p>* If you see a lot of ■, don&#8217;t worry. The article was<em> actually</em> written this way.</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88%202%21%20%E3%81%A8%20%E5%A4%A9%E5%85%83%E7%AA%81%E7%A0%B4%E3%82%B0%E3%83%AC%E3%83%B3%E3%83%A9%E3%82%AC%E3%83%B3%20%5B%20Aim%20for%20the%20Top%202%21%20DieBuster%20%5D%20%5B%20%26%23038%3B%20%5D%20%5B%20Gurren%20Lagann%20%5D&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D336">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D336&amp;title=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88+2%21+%E3%81%A8+%E5%A4%A9%E5%85%83%E7%AA%81%E7%A0%B4%E3%82%B0%E3%83%AC%E3%83%B3%E3%83%A9%E3%82%AC%E3%83%B3+%5B+Aim+for+the+Top+2%21+DieBuster+%5D+%5B+%26%23038%3B+%5D+%5B+Gurren+Lagann+%5D">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D336&amp;title=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88+2%21+%E3%81%A8+%E5%A4%A9%E5%85%83%E7%AA%81%E7%A0%B4%E3%82%B0%E3%83%AC%E3%83%B3%E3%83%A9%E3%82%AC%E3%83%B3+%5B+Aim+for+the+Top+2%21+DieBuster+%5D+%5B+%26%23038%3B+%5D+%5B+Gurren+Lagann+%5D">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D336&amp;t=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88+2%21+%E3%81%A8+%E5%A4%A9%E5%85%83%E7%AA%81%E7%A0%B4%E3%82%B0%E3%83%AC%E3%83%B3%E3%83%A9%E3%82%AC%E3%83%B3+%5B+Aim+for+the+Top+2%21+DieBuster+%5D+%5B+%26%23038%3B+%5D+%5B+Gurren+Lagann+%5D">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D336&amp;title=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88+2%21+%E3%81%A8+%E5%A4%A9%E5%85%83%E7%AA%81%E7%A0%B4%E3%82%B0%E3%83%AC%E3%83%B3%E3%83%A9%E3%82%AC%E3%83%B3+%5B+Aim+for+the+Top+2%21+DieBuster+%5D+%5B+%26%23038%3B+%5D+%5B+Gurren+Lagann+%5D">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=336</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Too little, too early&#8230;</title>
		<link>http://www.vikingweb.it/wordpress/?p=321</link>
		<comments>http://www.vikingweb.it/wordpress/?p=321#comments</comments>
		<pubDate>Wed, 14 Dec 2011 14:37:47 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[aviation]]></category>
		<category><![CDATA[end of production]]></category>
		<category><![CDATA[F-22]]></category>
		<category><![CDATA[Lockheed-Martin]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=321</guid>
		<description><![CDATA[Some thoughts about the last F-22 produced that leaved the production line on Dec 13, 2011.]]></description>
			<content:encoded><![CDATA[<p>Too little, too early is what people like me thought yesterday, reading news like this:</p>
<p><a title="Last F-22 leave the production line" href="http://www.flightglobal.com/blogs/aircraft-pictures/2011/12/so-farewell-then-f-22.html">So, farewell, then F-22</a></p>
<p>I&#8217;m not gonna spend too many words on this project, because it is well known that the F-22 was designed during the Cold War era, introduced the concept of &#8220;air dominance&#8221; instead of the common &#8220;air supremacy&#8221;, had problems during both the development phase ( flight control issues ) and the operational phase ( oxygen flow regulation issues )&#8230;</p>
<p>But even after all that, I still think that less than 190 aircrafts are not enough and that the F-15C fleet is aging, even considering things like the AESA AN-APG63. It&#8217;s like upgrading a computer without changing the mainboard. You can do that for a while, maybe, but you can&#8217;t do that forever. Even the mighty B-52H will probably be phased out earlier than expect.</p>
<p>Anyway, farewell, then, F-22. A lot of novels, movies, fictions and games were &#8220;based&#8221; on a future with you, a future that is gonna last really less than expected.</p>
<p><object width="560" height="315"><param name="movie" value="http://www.youtube.com/v/fYEx9BiJNfE?version=3&amp;hl=it_IT"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/fYEx9BiJNfE?version=3&amp;hl=it_IT" type="application/x-shockwave-flash" width="560" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=Too%20little%2C%20too%20early%26%238230%3B&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D321">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D321&amp;title=Too+little%2C+too+early%26%238230%3B">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D321&amp;title=Too+little%2C+too+early%26%238230%3B">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D321&amp;t=Too+little%2C+too+early%26%238230%3B">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D321&amp;title=Too+little%2C+too+early%26%238230%3B">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=321</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>トップをねらえ! [ Aim for the Top! GunBuster ]</title>
		<link>http://www.vikingweb.it/wordpress/?p=310</link>
		<comments>http://www.vikingweb.it/wordpress/?p=310#comments</comments>
		<pubDate>Mon, 14 Nov 2011 20:24:56 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[anime & manga]]></category>
		<category><![CDATA[Aim for the Top!]]></category>
		<category><![CDATA[Anno]]></category>
		<category><![CDATA[EVA]]></category>
		<category><![CDATA[Evangelion]]></category>
		<category><![CDATA[Gainax]]></category>
		<category><![CDATA[GunBuster]]></category>
		<category><![CDATA[Hideaki]]></category>
		<category><![CDATA[Jung Freud]]></category>
		<category><![CDATA[Kare Kano]]></category>
		<category><![CDATA[Kazumi Amano]]></category>
		<category><![CDATA[Koichiro Ota]]></category>
		<category><![CDATA[Nadia]]></category>
		<category><![CDATA[Noriko Takaya]]></category>
		<category><![CDATA[Toppu o Nerae!]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=310</guid>
		<description><![CDATA[Some personal notes and considerations about the 1988 anime Toppu o Nerae! from Gainax.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen several animes during the last months and I wrote nothing for any of them, but being a fan of Hideaki Anno&#8217;s animes, particularly Nadia and EVA, means I cannot keep from spending at least some words about his works.</p>
<p>So yesterday I finally decided to watch トップをねらえ! ( Toppu o Nerae! ) [ Aim for the Top! GunBuster ].</p>
<p>I&#8217;m not gonna write something you can easily find in less than 30 seconds googling for &#8220;GunBuster&#8221; and keep in mind that I&#8217;m gonna talk about more or less deeply about the plot, so:</p>
<p><strong>IF YOU DON&#8217;T LIKE TO KNOW WHAT HAPPENS IN THE SHOW, STOP READING RIGHT NOW.</strong></p>
<p>That said, lets talk about GunBuster using the point of view of an otaku who has seen both Nadia and EVA ( and possibly even the episodes of Kare Kano directed by Anno ).</p>
<p>As usual, loneliness and lack of self confidence are two of the most important topics in Anno&#8217;s works and GunBuster&#8217;s not an exception, in fact the main character Noriko could be a good &#8220;prototype&#8221; of EVA&#8217;s Shinji. She believe she could never do what others ( especially Coach Ota ) ask her to do, she is hated by her schoolmates and other pilots because they think she has been choosen only because she is the only daughter of the admiral killed in the first battle with the aliens, she sometimes disobey orders and she also feel remorse for her partner&#8217;s death ( like Shinji in EVA during the Unit-03 activation incident, even if in a different way ) in the third episode.<br />
By a certain point of view, the story of Noriko is the opposite of Shinji&#8217;s one. Shinji is a lonely guy with the need to open himself to the others that will, hopefully, end up living like a normal guy, while Noriko will end up being lonely because of the various WARP speed travels that will make her friends on Earth to grow old and possibly die while her relative time flows only for some months.</p>
<p>Jung could also be seen as the &#8220;prototype&#8221; of Asuka ( even if the shade of red of her hair is more similar to that of Miss Grandis in Nadia, but by the way&#8230; ). She is strong willed, German ( even if she pilot a soviet unit, but in 1988 Germany was still divided ), she believe of being the best machine pilot in the universe and is gealous of Noriko, at least at the beginning, while at the end she will become her partner with the GunBuster and will even try to go with her and Kazumi inside the black hole bomb near the the end of the last episode, that is equal to committing suicide and die with her friends.<br />
In the end she will be alone anyway because of the time lapse between the moment the black hole bomb detonates and when Noriko and Kazumi will came back to the Earth.</p>
<p>Coach Ota is a character with some aspects that will be present in Nadia and EVA in the characters of Nemo and Gendo respectively. A part of his attitude emerges for example when he try to motivate Noriko to do her best or when he try to explain her, even in an hard way, what happens during real combat operations. Another part of his attitude could be seen at the beginning of the show, for instance when he&#8217;s looking at Noriko in difficulty during a duel ( a thing that remember me the first battle of the Unit-01 in EVA ) without doing anything.</p>
<p>GunBuster is one of the few examples of science-fiction serie, with FTL-capable space ships, that considers relativistic time dilatation effects. This is an element that has an heavy impact on the plot. Just mention the fact that in the fifth episode Noriko will graduate at 17 years while, on Earth, she actually is 27 and one of her best friend back in school, Kimiko, already has a daughter. In the last episode Kazumi that has been on Earth for about 10 years is now 30 while Noriko is about 18.</p>
<p>A lot of elements could be seen in the show that will find a place in the following series, from clothes to control rooms and including the end credits of the last episode ( scrolling horizontally rather than vertically, an idea Anno will &#8220;recycle&#8221; later in Evangelion &#8211; Death ). The last episode is purposely in b/w 4:3 letterbox format with only the very last scene in colours ( the real purpose is unknown, but any Anno fan knows he loves to make this sort of things and, the most important thing, the overall result is really good! ), with the last battle that is not &#8220;animated&#8221;. During the last battle only drawings are shown ( more or less like in the episode 26 of EVA ).</p>
<p>The original concept of GunBuster was to realize a 25 episodes-long serie as could be noticed by listening to the second soundtrack CD, which in fact contains a serie of audio-trailers created for the purpose.<br />
Of course Gainax + Anno fans are accustomed to budget cuts ( EVA ), episodes&#8217; number replanning ( Nadia ), change of ideas ( Kare Kano ) and similar thing, in fact, considering that the show&#8217;s anything but simple, some events and facts have little to no time to be exposed as they should be ( like &#8220;<em>why those space monster are attacking humans?</em>&#8220;, &#8220;<em>why machines are piloted by young girls wearing a swimsuit?</em>&#8221; and other questions of sort ).</p>
<p>Personally, I didn&#8217;t believe that a six episode anime would have impressed me that much. Anno did it again, less than with EVA but certainly more than with Nadia. The plot, the drawings and the excellent soundtrack really worked well. If there&#8217;s something that I don&#8217;t like of the show is the &#8220;super-robot&#8221; GunBuster: I&#8217;m not a big fan of that sort of anime, I prefers mecha like those from the Full Metal Panic universe than the various Mazinger or Jeeg, but considering the type of otaku Anno was at that time I can say I don&#8217;t care too much.</p>
<p>Before someone ask if there is an happy ending, I&#8217;ll answer in the same exact way I&#8217;m aswering this question during these days:<br />
&#8220;Yes, there&#8217;s an happy ending, <em>and is one of the saddest happy ending I&#8217;ve ever seen in my life</em>&#8220;.</p>
<p>My advice&#8217;s to watch it, it&#8217;s worth spending three hours of your time. Really.</p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88%21%20%5B%20Aim%20for%20the%20Top%21%20GunBuster%20%5D&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D310">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D310&amp;title=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88%21+%5B+Aim+for+the+Top%21+GunBuster+%5D">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D310&amp;title=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88%21+%5B+Aim+for+the+Top%21+GunBuster+%5D">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D310&amp;t=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88%21+%5B+Aim+for+the+Top%21+GunBuster+%5D">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D310&amp;title=%E3%83%88%E3%83%83%E3%83%97%E3%82%92%E3%81%AD%E3%82%89%E3%81%88%21+%5B+Aim+for+the+Top%21+GunBuster+%5D">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=310</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The RAF Museum of Colindale</title>
		<link>http://www.vikingweb.it/wordpress/?p=304</link>
		<comments>http://www.vikingweb.it/wordpress/?p=304#comments</comments>
		<pubDate>Thu, 20 Oct 2011 11:31:47 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[aviation]]></category>
		<category><![CDATA[Colindale]]></category>
		<category><![CDATA[Museum]]></category>
		<category><![CDATA[RAF]]></category>
		<category><![CDATA[Royal Air Force]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=304</guid>
		<description><![CDATA[Some notes for other aviation enthusiats about one of the most beautiful museum in England and in the World, the Royal Air Force Museum of Colindale ( London ).]]></description>
			<content:encoded><![CDATA[<p>Short version:<br />
the place is great and the admission is free: go visit it!</p>
<p>Long version:<br />
The Royal Air Force Museum of Colindale is one of the best aviation museum a person could visit. There are so many aircrafts that an enthusiast will spend an entire day to see everything.<br />
The visit is enjoyable at all ages, in fact there are many interactive panels and monitors showing the history, the facts and trivia of every aircraft ( including quizzes I passed with an average of 9.7 / 10 per aircraft ).<br />
The various halls, from the smaller one of the &#8220;aviation milestones&#8221; to the larger bombers&#8217; one, all contain something unique that could be hardly seen in other places or museums around the World.<br />
From hystorical aircrafts like the Sopwith Triplane or the Vickers Vimy, to the Supermarine Spitfire ( a total of four version are on display! ), the Hawker Hurricane and Typhoon, the Avro Lancaster, the English Electric Lightning and Camberra, the Blackburn Buccaneer, the Avro Vulcan and the latest Panavia Tornado and Eurofighter Typhoon ( the unique english DA2 &#8221;Black Typhoon&#8221; is on display ).<br />
There are a lot of other aircrafts that served with the RAF but were not designed or build in the United Kingdom, like the Boeing B-17, the Consolidated B-24, the North American B-25 and P-51 and the McDonnell F-4 Phantom ( with the Rolls-Royce Spey engines, of course: what did you expect? ).<br />
There is an entire hall dedicated to the Battle of Britain in which all the four bombers used by the german Luftwaffe, the Messerschmitt BF-110, the Junker JU-87 and JU-88 and the Heinkel HE-111 stand together. On the other side of this hall, it&#8217;s also possible to enter in a Short Sutherland flying boat.</p>
<p>During my visit at the beginning of October I had some small talks with a really nice attendant in the &#8220;aviation milestones&#8221; hall about the situation of the air forces and the navies in our respective countries. Needless to say we were both skeptical about the future.<br />
Seeing how simple and yet how complicated were the aircraft of the past is something that always make people thinks.<br />
The wreck of an ill-fated Avro Halifax, retrieved from the sea of Norway after many years under the water, stay in the bomber area, rembembering us what being a bomber&#8217;s crew meant during WWII.<br />
Walking under the wing of the Avro Vulcan and standing under the bomb bay ( that now contains an LCD panel on which are showed some clips of the aircraft during the Cold War era ) is just great because really gives you the idea of how big the airplane really is and how advanced</p>
<p>The museum continuosly acquire new aircrafts. Always in the aviation milestones hall, there were two &#8220;brand new&#8221; ( well, sort of ) items: a WWII Gloster Meteor, that at the time of the visit was still undergoing re-assembly, and the mock-up of a Lockheed-Martin F-35A. The aforementioned attendant told me that there are about 20 aircrafts in storage they&#8217;re unable to show because of space issues.</p>
<p>So, in the end, if you&#8217;re an aviation enthusiast and you&#8217;re planning a trip to London, just add a day to visit the RAF museum at Colindale ( you can reach it via underground, is in zone 4 <a href="http://maps.google.it/maps?hl=it&amp;gs_upl=0l0l0l13975l0l0l0l0l0l0l0l0ll0l0&amp;bav=on.2,or.r_gc.r_pw.,cf.osb&amp;biw=1366&amp;bih=612&amp;wrapid=tlif131910498848110&amp;um=1&amp;ie=UTF-8&amp;q=Colindale+RAF+museum&amp;fb=1&amp;gl=it&amp;hq=Colindale+RAF+museum&amp;cid=0,0,569235943583350003&amp;ei=6_GfTsbrC5DZ4QTW0MzMBA&amp;sa=X&amp;oi=local_result&amp;ct=image&amp;ved=0CAQQ_BI">Link to Google Maps</a> ) because&#8230; the place is great and the admission is free: go visit it!</p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=The%20RAF%20Museum%20of%20Colindale&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D304">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D304&amp;title=The+RAF+Museum+of+Colindale">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D304&amp;title=The+RAF+Museum+of+Colindale">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D304&amp;t=The+RAF+Museum+of+Colindale">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D304&amp;title=The+RAF+Museum+of+Colindale">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=304</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>That MetroUI of discord&#8230;</title>
		<link>http://www.vikingweb.it/wordpress/?p=295</link>
		<comments>http://www.vikingweb.it/wordpress/?p=295#comments</comments>
		<pubDate>Mon, 03 Oct 2011 01:37:28 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[prs cons]]></category>
		<category><![CDATA[developer preview]]></category>
		<category><![CDATA[MetroUI]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=295</guid>
		<description><![CDATA[Some ideas, and probably some rants, about Microsoft's last choice of unifying the UI using MetroUI on Windows 8 for x86 and x64.]]></description>
			<content:encoded><![CDATA[<p>Being a Microsoft Student Partner simply means I like <em>most</em> of Microsoft&#8217;s technologies and products because they work the way I expect them to work, my expectations based on a 17 years old experience with Microsoft&#8217;s products.</p>
<p>For instance, as far as other desktop OSs can arrive, nothing, in my opinion, beats Windows 7 nowadays.<br />
MacOS X is a very good OS, but as long as it&#8217;ll run only on Apple hardware, I&#8217;ll never gonna use it.<br />
GNU/Linux-based distros like Red Hat, Ubuntu, Fedora, OpenSUSE, Debian, etc. are today very good OSs, but there&#8217;s an overall lack of agreement between developers and, even worse, an incompatibility issue between licenses that lead to a &#8220;reinvention of wheel&#8221; time after time ( the Big example: ZFS and btrfs ).</p>
<p>So, while I usually like Microsoft products, sometimes I think that some little or big decisions have been made without thinking too much to a certain part of the users.</p>
<p>My first criticism was about Windows Phone 7, that is a really good mobile OS for the <em>average</em> user. But as long as I want to: sync my contacts with Outlook rather than Windows Live, join a domain, run native C++ applications and other things, Windows Phone 7 is not a choice for me. I&#8217;m still fine with Windows Mobile 6.x.</p>
<p>But MetroUI caught my attention when I first tried the developers&#8217; preview of Windows 8 some days ago.<br />
The concept behind MetroUI is the &#8220;unification of the user experience&#8221;, a marketing expression used instead of &#8220;users are getting more and more lazy and they don&#8217;t want to bother about what&#8217;s under the hood&#8221; ( meaning they don&#8217;t care what they&#8217;re using: a mobile phone, a desktop computer, an ATM or a washing machine ).<br />
Many people think touchscreens were one of the biggest revolution in the late &#8217;00s market. Probably they&#8217;re the same people whose jaw drops on the floor when I tell them my first experience with a touchscreen was in 1994, in a ship command bridge on a green phosphor CRT monitor used to manage the course ( Yeah, I <em>actually</em> steered a 200 yards-long ship ). By the way, they&#8217;re right if considering only the <em>consumer</em> market.<br />
The idea of unifying the UI between &#8220;handy&#8221; devices ( mobile phones and tablets ) is hardly new and, most important thing, it works. After all, they&#8217;re similar and they&#8217;re expected to work in a similar way.<br />
But, in my opinion, if the differences between a mobile phone and a tablet are like the differences between a <a title="Car cockpit" href="http://www.autoexpress.co.uk/front_website/gallery.php?id=236679">car</a> and a <a title="Van cockpit" href="http://www.auto-news.de/greencars/bildergalerie.jsp?id=24886&amp;picindex=3">van</a>, those between a tablet and a PC are more like those between a GA aircraft and an airliner.<br />
They&#8217;re not similar, they&#8217;re not expected to be used in the same way. I don&#8217;t expect to find a manifold pressure gauge in the cockpit of a <a title="Boeing 737NG cockpit" href="http://www.airliners.net/photo/SkyEurope-Airlines/Boeing-737-7GL/1394861/L/">Boeing 737</a> ( or an ATR-42 or an Airbus A380 ) in the same way I don&#8217;t expect to find a FMS console in a <a title="Cessna 172 cockpit" href="http://www.airliners.net/photo/Private/Cessna-172R-Skyhawk/1930422/L/&amp;sid=f82c614d7d81a100838f368e2450fd47">Cessna 172</a> ( or in a Piper PA28 ).</p>
<p>Saying that I don&#8217;t like MetroUI would be wrong. I just think that MetroUI has no reason to be the default UI on a desktop OS. I also think that standard utilities should remain non-Metro applications. I find unacceptable that the remote desktop connection client is available only as a MetroUI application on a desktop machine, as I find wrong not giving the user the option to <em>actually kill</em> the application, even by some abstruse key combination, I don&#8217;t care, and not just <em>suspending</em> it.<br />
For seventeen years I closed an application in Windows by clicking on the top left ( top right starting with Windows 95 ) corner button of the application window, or by pressing Alt + F4. In MetroUI I can&#8217;t quit application like this. I find it a bit ( well more than just a bit ) disappointing.</p>
<p>In the end, considering that there&#8217;s a lot of research behind the dvelopment of an operating system ( and Microsoft really care about what users think, or wouldn&#8217;t have released Windows 8 Developer Preview publicly ), what I&#8217;m starting to think is that average users are beginning to be afraid ( I could have used the word &#8220;tired&#8221;, but I didn&#8217;t ) of the keyboard as well as, following Windows 95, users started to be afraid of the command line.</p>
<p>What I&#8217;d really like, as a power user, as an enthusiast and as an experienced user, is a <em>choice</em>. As there are six versions of Windows 7, I&#8217;d like the Professional and Enterprise versions of Windows 8 use explorer as the default UI instead of MetroUI.<br />
We will wait for the beta versions to see what will appens.</p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=That%20MetroUI%20of%20discord%26%238230%3B&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D295">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D295&amp;title=That+MetroUI+of+discord%26%238230%3B">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D295&amp;title=That+MetroUI+of+discord%26%238230%3B">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D295&amp;t=That+MetroUI+of+discord%26%238230%3B">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D295&amp;title=That+MetroUI+of+discord%26%238230%3B">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=295</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBSD-current without compiling everything</title>
		<link>http://www.vikingweb.it/wordpress/?p=288</link>
		<comments>http://www.vikingweb.it/wordpress/?p=288#comments</comments>
		<pubDate>Sat, 03 Sep 2011 10:53:53 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[5.99]]></category>
		<category><![CDATA[NetBSD]]></category>
		<category><![CDATA[NetBSD-current]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=288</guid>
		<description><![CDATA[How to install NetBSD-current ( 5.99 as of writing ) using the release ( 5.1 ) install program]]></description>
			<content:encoded><![CDATA[<p>Last night I wanted to try something new on <em>Mirage</em>, my Sun Ultra 5. After changing the configuration of the SCSI disks, moving some drives between the two channels of the controller ( and changing the correspondingly devaliases in the NVRAM with several <em>nvunalias</em> / <em>nvalias</em> commands ), I thought about installing NetBSD-current ( currently 5.99.55 ).</p>
<p><a title="How to build NetBSD-current" href="http://wiki-static.aydogan.net/How_to_build_NetBSD-current">This wiki</a> list a serie of commands that would compile and install NetBSD-current assuming that a release of NetBSD is already running. So because I already had a NetBSD 5.1 running on <em>Mirage</em>, I thought of following the &#8220;short way&#8221;&#8230; only to find out that fetching the sources via anoncvs took nearly 4 hours. I&#8217;m not blaming anoncvs, because trying to fetch the tarball and extracting all the files took nearly 2 hours two days later.</p>
<p>Now, the most &#8220;interesting&#8221; thing is that the build script, before compiling the kernel and the userland, need to compile the compiler, because NetBSD 5.99 need GCC 4.5 compiled for the target architecture ( in this case, sparc64 ).<br />
I was just thinking to stay with 5.1 ( losing some opportunity offered by current, like some ZFS support etc. ), when I tought about doing some test on a VM in VirtualBox. During the installation process I choose to get the sets ( a bunch of tgz files ) from http rather than from the CD. Looking at the options for the http install, I tought of doing something &#8220;nasty&#8221;:</p>
<p>using the 5.1 installer to install 5.99.</p>
<p>It&#8217;s longer to explain than actually doing it, but this is possible because on the nyftp http mirror ( <a href="http://nyftp.netbsd.org/">http://nyftp.netbsd.org/</a> ) inside the <em>pub/NetBSD-daily/HEAD/</em> directory are stored the last five build of NetBSD-current. Inside each directory ( named after the date and time of build ), there are the directories for each architecture, containing the binary sets ( the bunch of tgz files ) that will be used from the installer.<br />
So, after changing the options in the installer accordingly to what is needed, the installation can start and will end with only two minor problems.</p>
<p>The first one is that it&#8217;s not possible to set the root password, the second is that the <strong>rc_configured</strong> variable in <em>/etc/rc.conf</em> will not be changed by the setup program, resulting in a single user boot after reboot, with the root filesystem mounted in read-only.<br />
But these are problems that even a NetBSD newbie know how to solve ( If someone is interested in something like NetBSD-current, then a basic knowledge of <em>vi</em> and of the standard UNIX commands, like <em>mount</em> or <em>passwd</em> is take for granted ).</p>
<p><em>Mirage</em> is now running NetBSD-current with a LVM volume ( not as powerful as ZFS but require a lower overhead ) in the Sun StorEdge FlexiPack 599, and has been configured as a NFS ( <del>Nightmare</del> Network File System ) Server.</p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=NetBSD-current%20without%20compiling%20everything&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D288">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D288&amp;title=NetBSD-current+without+compiling+everything">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D288&amp;title=NetBSD-current+without+compiling+everything">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D288&amp;t=NetBSD-current+without+compiling+everything">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D288&amp;title=NetBSD-current+without+compiling+everything">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=288</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS 5.x / 6.x &#8211; Network bridging</title>
		<link>http://www.vikingweb.it/wordpress/?p=279</link>
		<comments>http://www.vikingweb.it/wordpress/?p=279#comments</comments>
		<pubDate>Tue, 02 Aug 2011 11:09:58 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[network bridge]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=279</guid>
		<description><![CDATA[The three configuration files needed to create a bridge between two networks using CentOS 5.x / 6.x]]></description>
			<content:encoded><![CDATA[<p>This article is a sort of &#8220;Post-it®&#8221;, a brief explanation of how to configure a network bridge with two NICs under CentOS 5.x / 6.x. After spending more than 10 minutes googling how to perform this task ( mainly reading about ( l ) users that didn&#8217;t have a clue about what a network bridge is or, worse, asking how to bridge n-thousand VM while performing routing having iptables misconfigured&#8230; ), I thought it was better to write everything down in &#8220;safe place&#8221;: what&#8217;s better than my blog?</p>
<p>So, this is how I have made the bridge on <em>Nighthawk</em> ( a double Pentium III &#8211; 800 MHz with a Gig of RAM and a pair of UWSCSI3 disks ), under CentOS 6.0.<br />
The two NICs are both based on an Intel 82559 chip. The first one is integrated into the motherboard, while the second one is on a PCI slot.</p>
<p>OBVIOUSLY, a network bridge has ONE MAC address ( could be the same of one of the two NIC or could be a different one ) and ONE IP address, unless your playing with aliased interface over a bridge, but this is not the case.</p>
<p>The integrated NIC is <strong>eth0</strong>, the NIC on the PCI slot is <strong>eth1</strong> while the network bridge is <strong>nbr0</strong>.</p>
<p>So, these are the configuration files:</p>
<p><code># /etc/sysconfig/network-scripts/ifcfg-eth0<br />
DEVICE="eth0"<br />
HWADDR="00:30:48:AA:BB:CC"<br />
ONBOOT="yes"<br />
BRIDGE="nbr0"</p>
<p># /etc/sysconfig/network-scripts/ifcfg-eth1<br />
DEVICE="eth1"<br />
HWADDR="00:90:27:DD:EE:FF"<br />
ONBOOT="yes"<br />
BRIDGE="nbr0"</p>
<p># /etc/sysconfig/network-scripts/ifcfg-nbr0<br />
DEVICE="nbr0"<br />
TYPE="bridge"<br />
BOOTPROTO="dhcp"<br />
IPV6INIT="yes"<br />
IPV6_AUTOCONF="yes"<br />
ONBOOT="yes"</code></p>
<p>The bridge takes its IP address via DHCP. If a static address is required, file <strong>ifcfg-nbr0</strong> must be changed according to what is reported into the RHEL Deployment Guide.</p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=CentOS%205.x%20%2F%206.x%20%26%238211%3B%20Network%20bridging&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D279">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D279&amp;title=CentOS+5.x+%2F+6.x+%26%238211%3B+Network+bridging">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D279&amp;title=CentOS+5.x+%2F+6.x+%26%238211%3B+Network+bridging">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D279&amp;t=CentOS+5.x+%2F+6.x+%26%238211%3B+Network+bridging">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D279&amp;title=CentOS+5.x+%2F+6.x+%26%238211%3B+Network+bridging">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=279</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sudden Death &#8211; July 2011 issue</title>
		<link>http://www.vikingweb.it/wordpress/?p=273</link>
		<comments>http://www.vikingweb.it/wordpress/?p=273#comments</comments>
		<pubDate>Wed, 27 Jul 2011 14:00:19 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[flight simulators]]></category>
		<category><![CDATA[Strike Commander]]></category>
		<category><![CDATA[Sudden Death]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=273</guid>
		<description><![CDATA[A very short post born from a 17 years old reminder.]]></description>
			<content:encoded><![CDATA[<p>I know, it&#8217;s been a long long time. I&#8217;m sorry, but I&#8217;ve actually got many things to do and I&#8217;m unable to find the time to turn the 3 / 4 draft I already wrote into &#8220;real&#8221; articles.<br />
Probably you were expecting something on the end of the Shuttle era, the anniversary of the first landing on the moon, recent hauls&#8230; and you&#8217;re more or less right, just wait a little more.</p>
<p>This post is just a reminder that was set 17 years ago ( yes, in 1994 A.D. ), when <em>Lightning</em> ( Intel 486DX2 ) was pretty new and when I first &#8220;flew&#8221; using Microsoft&#8217;s Flight Simulator 5.0, Spectrum HoloByte&#8217;s Falcon 3.0 and &#8211; the reason this post exists &#8211; Origin&#8217;s Strike Commander, the CD edition that included the &#8220;Speek Pack&#8221;, the &#8220;Tactical Operations&#8221; expansion and, of course, the July 2011 issue of Sudden Death&#8230; yeah, the July <em>2011</em> issue in <em>1994</em>.</p>
<p><img class="size-full wp-image-274 alignnone" title="Cover of Sudden Death - July 2011 issue" src="http://www.vikingweb.it/wordpress/wp-content/uploads/2011/07/Sudden_Death_issue_2011_07.jpg" alt="Cover of Sudden Death - July 2011 issue" width="336" height="500" /></p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=Sudden%20Death%20%26%238211%3B%20July%202011%20issue&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D273">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D273&amp;title=Sudden+Death+%26%238211%3B+July+2011+issue">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D273&amp;title=Sudden+Death+%26%238211%3B+July+2011+issue">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D273&amp;t=Sudden+Death+%26%238211%3B+July+2011+issue">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D273&amp;title=Sudden+Death+%26%238211%3B+July+2011+issue">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=273</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011 &#8211; An IPv6 Odyssey pt. 1</title>
		<link>http://www.vikingweb.it/wordpress/?p=240</link>
		<comments>http://www.vikingweb.it/wordpress/?p=240#comments</comments>
		<pubDate>Fri, 18 Mar 2011 20:06:12 +0000</pubDate>
		<dc:creator>Viking</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[D-Link DSL-2640]]></category>
		<category><![CDATA[DMZ]]></category>
		<category><![CDATA[Hurricane Electric]]></category>
		<category><![CDATA[ICMPv4]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[tunnel broker]]></category>

		<guid isPermaLink="false">http://www.vikingweb.it/wordpress/?p=240</guid>
		<description><![CDATA[The first part of a series of posts about getting IPv6 connectivity when your ISP doesn't give it natively... or when you want a different endpoint on the internet.]]></description>
			<content:encoded><![CDATA[<p>This is my first post about IPv6 and, as you can read in the title, is gonna be the first of a serie.</p>
<p>One thing that is driving me mad during these days is that on many sites, blogs, forums etc. there are a lot of explanations about how IPv6 works, but really few explanations on how to make it working.</p>
<p>So now I&#8217;m not gonna explain what IPv6 is, or how it works, because I&#8217;ll assume that the reader has at least a basic IPv6, IPv4 and <span style="white-space: nowrap;">UNIX / NetBSD</span> understanding.<br />
I&#8217;m gonna write down the steps I performed to get IPv6 connectivity (&nbsp;assuming your ISP isn&#8217;t already giving you native IPv6 connectivity, otherwise you can stop reading now&nbsp;) using a <span style="white-space: nowrap;">D-Link DSL-2640B</span> <span style="white-space: nowrap;">aDSL modem-router</span> with a standard firmware (&nbsp;support IPv4 only&nbsp;) and a <span style="white-space: nowrap;">NetBSD/i386 5.1</span> based router (&nbsp;any computer with two NICs&nbsp;).<br />
I currently have no firewall on the <span style="white-space: nowrap;">DSL-2640</span> and no <span style="white-space: nowrap;">services / daemons</span> running on the NetBSD router.</p>
<p>In this first post I will illustrate how to get IPv6 connectivity via a tunnel broker. There are many free services availables. I choose <a href="http://tunnelbroker.net/">Hurricane Electric</a> (&nbsp;HE from now on&nbsp;) just because a pair of friends already use it and told me that it works.</p>
<p>The tunnel created with an HE&#8217;s endpoint is <em>static</em> and request that you have a public <em>pingable</em> IPv4 address.<br />
If you are behind a router that does NAT, like me, this could represent a problem, so I created <a href="http://www.vikingweb.it/diagnostic/utilityfunctions.php">this page</a> to test if I can ping my public IPv4 address.<br />
The solution I found was to move the NetBSD router to the DMZ, so when someone ping my public address, actually it sends ICMPv4 requests to my NetBSD router.</p>
<p>Creating a tunnel on the HE website is pretty simple, just look at the image below:</p>
<p><img src="http://www.vikingweb.it/wordpress/wp-content/uploads/2011/03/tunnelbroker_he.net_1.jpg" alt="Create tunnel with HE" title="Create tunnel with HE" class="aligncenter size-full wp-image-254" /></p>
<ol>
<li>Click;</li>
<li>Insert your public <em>pingable</em> IPv4 address</li>
</ol>
<p><img src="http://www.vikingweb.it/wordpress/wp-content/uploads/2011/03/tunnelbroker_he.net_2-e1300477243331.jpg" alt="HE tunnel details" /></p>
<p>Just remember, <u>for this specific configuration</u>, when configuring the tunnel interface on the router, <strong>not to use</strong> your <u>public IPv4 address</u> but to <strong>use</strong> the <u>private address of your IPv4 gateway</u>. So, to create a tunnel in NetBSD (&nbsp;4.x or 5.x&nbsp;) type the following as root:</p>
<p><code><br />
# ifconfig gif0 create<br />
# ifconfig gif0 tunnel  $Your_IPv4_gateway   $Server_IPv4_address<br />
# ifconfig gif0 inet6   $Client_IPv6_address   $Server_IPv6_address   prefixlen 128<br />
# route -n add -inet6 default   $Server_IPv6_address</code></p>
<p>The tunnel should be up and ready. Just try to send an ICMPv6 echo request to someone using <strong><em>ping6</em></strong>, like <em>ipv6.google.com</em> (&nbsp;you have to create and configure <strong><em>/etc/resolv.conf</em></strong> first&nbsp;).</p>
<p>If you succeed, congratulations! You&#8217;re now on the IPv6 internet and halfway in configuring the router!</p>
<p>In the next part I&#8217;m gonna explain how to enable routing, configure the router advertisement daemon and make the configuration permanent.</p>
<p>Bye</p>

<div class="jwsharethis">
Share this: 
<br />
<a href="mailto:?subject=2011%20%26%238211%3B%20An%20IPv6%20Odyssey%20pt.%201&amp;body=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D240">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/email.png" alt="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D240&amp;title=2011+%26%238211%3B+An+IPv6+Odyssey+pt.+1">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/su.png" alt="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D240&amp;title=2011+%26%238211%3B+An+IPv6+Odyssey+pt.+1">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/digg.png" alt="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D240&amp;t=2011+%26%238211%3B+An+IPv6+Odyssey+pt.+1">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/fb.png" alt="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fwww.vikingweb.it%2Fwordpress%2F%3Fp%3D240&amp;title=2011+%26%238211%3B+An+IPv6+Odyssey+pt.+1">
<img src="http://www.vikingweb.it/wordpress/wp-content/plugins/jw-share-this/twitter.png" alt="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vikingweb.it/wordpress/?feed=rss2&#038;p=240</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

