<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Ipv6 on Details...</title>
    <link>https://www.deepreflect.net/tags/ipv6/</link>
    <description>Recent content in Ipv6 on Details...</description>
    <generator>Hugo</generator>
    <language>en-US</language>
    <copyright>Copyright © 2003 - 2026 Leonardo Rizzi</copyright>
    <lastBuildDate>Tue, 30 Jun 2026 03:28:29 +0200</lastBuildDate>
    <atom:link href="https://www.deepreflect.net/tags/ipv6/feed.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Telecom Italia - IPv6 Pilot on Cisco</title>
      <link>https://www.deepreflect.net/2012/06/08/telecom-italia-ipv6-pilot-on-cisco/</link>
      <pubDate>Fri, 08 Jun 2012 23:44:20 +0000</pubDate>
       <guid isPermaLink="false">http://blog.deepreflect.net/?p=1200</guid> 
      <description>&lt;p&gt;To my amazement, Telecom Italia released a pilot project of IPv6 deployment on residential/dynamic ip only adsl internet access, but on theirs support site there&amp;rsquo;s configuration only for some useless systems. So, I&amp;rsquo;ve decided to write a configuration for Cisco platform.&lt;/p&gt;
&lt;p&gt;Usually the typical Telecom Italia PPPoE or PPPoA ADSL connection with dynamic IPv4 only was authenticated with &amp;ldquo;aliceadsl&amp;rdquo; as user and password, now with bran new credential along IPv4 the endpoint router advertise a IPv6 /64 class (always dynamic).&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>To my amazement, Telecom Italia released a pilot project of IPv6 deployment on residential/dynamic ip only adsl internet access, but on theirs support site there&rsquo;s configuration only for some useless systems. So, I&rsquo;ve decided to write a configuration for Cisco platform.</p>
<p>Usually the typical Telecom Italia PPPoE or PPPoA ADSL connection with dynamic IPv4 only was authenticated with &ldquo;aliceadsl&rdquo; as user and password, now with bran new credential along IPv4 the endpoint router advertise a IPv6 /64 class (always dynamic).</p>
<p>username: <a href="mailto:adsl@alice6.it">adsl@alice6.it</a>
password: IPV6@alice6</p>
<p>And now IOS configuration:</p>
<p>- ATM inteface:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>interface ATM0/0/0
</span></span><span style="display:flex;"><span>no ip address
</span></span><span style="display:flex;"><span>atm restart timer 300
</span></span><span style="display:flex;"><span>no atm ilmi-keepalive
</span></span><span style="display:flex;"><span>dsl operating-mode auto
</span></span><span style="display:flex;"><span>hold-queue 100 in
</span></span><span style="display:flex;"><span>!
</span></span><span style="display:flex;"><span>interface ATM0/0/0.1 point-to-point
</span></span><span style="display:flex;"><span>pvc 8/35
</span></span><span style="display:flex;"><span>vbr-nrt 380 380
</span></span><span style="display:flex;"><span>oam-pvc manage
</span></span><span style="display:flex;"><span>encapsulation aal5mux ppp dialer
</span></span><span style="display:flex;"><span>dialer pool-member 1
</span></span></code></pre></div><p>- Dialer inteface:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>interface Dialer0
</span></span><span style="display:flex;"><span>mtu 1492
</span></span><span style="display:flex;"><span>ip address negotiated
</span></span><span style="display:flex;"><span>ip nbar protocol-discovery
</span></span><span style="display:flex;"><span>ip flow ingress
</span></span><span style="display:flex;"><span>ip virtual-reassembly
</span></span><span style="display:flex;"><span>encapsulation ppp
</span></span><span style="display:flex;"><span>dialer pool 1
</span></span><span style="display:flex;"><span>dialer-group 1
</span></span><span style="display:flex;"><span>ipv6 address autoconfig
</span></span><span style="display:flex;"><span>ipv6 enable
</span></span><span style="display:flex;"><span>no cdp enable
</span></span><span style="display:flex;"><span>ppp authentication chap callin
</span></span><span style="display:flex;"><span>ppp chap hostname adsl@alice6.it
</span></span><span style="display:flex;"><span>ppp chap password 0 IPV6@alice6
</span></span><span style="display:flex;"><span>ppp pap sent-username adsl@alice6.it password 0 IPV6@alice6
</span></span></code></pre></div><p>- Route configuration:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>ip route 0.0.0.0 0.0.0.0 Dialer0
</span></span><span style="display:flex;"><span>ipv6 route 2000::/3 Dialer0
</span></span></code></pre></div><p>You can check with following command:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>route01#sh ip int brief | sec Dialer0
</span></span><span style="display:flex;"><span>Dialer0                    XXX.XXX.XXX.XXX    YES IPCP   up                    up
</span></span><span style="display:flex;"><span>route01#sh ipv6 int brief | sec Dialer0
</span></span><span style="display:flex;"><span>Dialer0                    [up/up]
</span></span><span style="display:flex;"><span>FE80::1
</span></span><span style="display:flex;"><span>2A01:2003:xxxx:xxxx::1
</span></span></code></pre></div><p>You can discover your /64 assigned class with:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>route01#sh ipv6 int di0 | sec Global
</span></span><span style="display:flex;"><span> Global unicast address(es):
</span></span><span style="display:flex;"><span> 2A01:2003:xxxx:xxxx::1, subnet is 2A01:2003:xxxx:xxxx::/64 [PRE]
</span></span><span style="display:flex;"><span> valid lifetime 2591993 preferred lifetime 604793
</span></span><span style="display:flex;"><span> route01#
</span></span></code></pre></div><p>I&rsquo;ve left out NAT and other further configuration.</p>
<p>Update: <a href="/2012/06/09/ipv6-prefix-delegation-cisco-ios/">prefix delegation</a></p>
]]></content:encoded>
    </item>
    <item>
      <title>OpenVMS - IPv6</title>
      <link>https://www.deepreflect.net/2010/04/14/openvms-ipv6/</link>
      <pubDate>Wed, 14 Apr 2010 11:09:58 +0000</pubDate>
       <guid isPermaLink="false">http://blog.deepreflect.net/?p=911</guid> 
      <description>&lt;p&gt;Memo about configure ipv6 on OpenVMS system as host mode:&lt;/p&gt;
&lt;p&gt;First of all invoke the TCPIP$IP6_SETUP command procedure by entering the following command:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;TARDIS::LEO$ @SYS$MANAGER:TCPIP$IP6_SETUP&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Leaving default option to all question, in this mode the dcl create default configuration script.&lt;/p&gt;
&lt;p&gt;Then edit the inet6 script:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;TARDIS::LEO$ EDIT SYS$SYSTEM:TCPIP$INET6_CONFIG.DAT&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;After the &amp;ldquo;up&amp;rdquo; command&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$     ifconfig &amp;quot;IE0&amp;quot; ipv6 up&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Append the following line with ip and default gateway:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$     ifconfig &amp;#34;IE0&amp;#34; inet6 ip6prefix 2001:1418:0193:0001::40/64
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$     route add -inet6 default 2001:1418:0193:0001::250 -&amp;#34;I&amp;#34; &amp;#34;IE0&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Save, exit and run the dcl:&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Memo about configure ipv6 on OpenVMS system as host mode:</p>
<p>First of all invoke the TCPIP$IP6_SETUP command procedure by entering the following command:</p>
<p><code>TARDIS::LEO$ @SYS$MANAGER:TCPIP$IP6_SETUP</code></p>
<p>Leaving default option to all question, in this mode the dcl create default configuration script.</p>
<p>Then edit the inet6 script:</p>
<p><code>TARDIS::LEO$ EDIT SYS$SYSTEM:TCPIP$INET6_CONFIG.DAT</code></p>
<p>After the &ldquo;up&rdquo; command</p>
<p><code>$     ifconfig &quot;IE0&quot; ipv6 up</code></p>
<p>Append the following line with ip and default gateway:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>$     ifconfig &#34;IE0&#34; inet6 ip6prefix 2001:1418:0193:0001::40/64
</span></span><span style="display:flex;"><span>$     route add -inet6 default 2001:1418:0193:0001::250 -&#34;I&#34; &#34;IE0&#34;
</span></span></code></pre></div><p>Save, exit and run the dcl:</p>
<p><code>TARDIS::LEO$ @SYS$SYSROOT:[SYSEXE]TCPIP$INET6_CONFIG.DAT</code></p>
]]></content:encoded>
    </item>
    <item>
      <title>CentOS - IPv6 interface</title>
      <link>https://www.deepreflect.net/2010/04/14/centos-ipv6-interface/</link>
      <pubDate>Wed, 14 Apr 2010 09:53:31 +0000</pubDate>
       <guid isPermaLink="false">http://blog.deepreflect.net/?p=906</guid> 
      <description>&lt;p&gt;You need to update and configure following files for IPv6 configuration:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Edit: &lt;code&gt;/etc/sysconfig/network&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;And append following line, to enable in systemwide the ipv6 protocol:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;NETWORKING_IPV6=yes&lt;/code&gt;&lt;/p&gt;
&lt;ol start=&#34;2&#34;&gt;
&lt;li&gt;Edit: &lt;code&gt;/etc/sysconfig/network-scripts/ifcfg-eth1&lt;/code&gt; (or your interface number)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;And append following line, to enable ipv6 on interface and the address/gateway if you use static routing:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;IPV6INIT=yes
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;IPV6ADDR=2001:1418:0193:000B::210
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;IPV6_DEFAULTGW=2001:1418:0193:000B::251
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Save, close and restart network service:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;# service network restart&lt;/code&gt;&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>You need to update and configure following files for IPv6 configuration:</p>
<ol>
<li>Edit: <code>/etc/sysconfig/network</code></li>
</ol>
<p>And append following line, to enable in systemwide the ipv6 protocol:</p>
<p><code>NETWORKING_IPV6=yes</code></p>
<ol start="2">
<li>Edit: <code>/etc/sysconfig/network-scripts/ifcfg-eth1</code> (or your interface number)</li>
</ol>
<p>And append following line, to enable ipv6 on interface and the address/gateway if you use static routing:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>IPV6INIT=yes
</span></span><span style="display:flex;"><span>IPV6ADDR=2001:1418:0193:000B::210
</span></span><span style="display:flex;"><span>IPV6_DEFAULTGW=2001:1418:0193:000B::251
</span></span></code></pre></div><p>Save, close and restart network service:</p>
<p><code># service network restart</code></p>
]]></content:encoded>
    </item>
    <item>
      <title>Linux - IPv6 Tunnel Broker</title>
      <link>https://www.deepreflect.net/2008/10/27/linux-ipv6-tunnel-broker/</link>
      <pubDate>Mon, 27 Oct 2008 01:33:02 +0000</pubDate>
       <guid isPermaLink="false">http://blog.deepreflect.net/?p=192</guid> 
      <description>&lt;p&gt;Come definire il link ad un tunnel broker i questo esempio HE.net da sistema operativo linux utilizzando i net tools&lt;/p&gt;
&lt;p&gt;Prima parte crea l&amp;rsquo;interfaccia di tunneling sull&amp;rsquo;ipv4:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;ifconfig sit0 up&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;ifconfig sit0 inet6 tunnel ::216.66.84.42&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Seconda parte genera l&amp;rsquo;endpoint del tunnel in ipv6:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;ifconfig sit1 up&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;ifconfig sit1 inet6 add 2001:470:1f12:11c::2/64&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Terza parte definisce la rotta sul device relativo all&amp;rsquo;endpoing del tunnel per tutto il traffico ipv6:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;route -A inet6 add ::/0 dev sit1&lt;/code&gt;&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Come definire il link ad un tunnel broker i questo esempio HE.net da sistema operativo linux utilizzando i net tools</p>
<p>Prima parte crea l&rsquo;interfaccia di tunneling sull&rsquo;ipv4:</p>
<p><code>ifconfig sit0 up</code></p>
<p><code>ifconfig sit0 inet6 tunnel ::216.66.84.42</code></p>
<p>Seconda parte genera l&rsquo;endpoint del tunnel in ipv6:</p>
<p><code>ifconfig sit1 up</code></p>
<p><code>ifconfig sit1 inet6 add 2001:470:1f12:11c::2/64</code></p>
<p>Terza parte definisce la rotta sul device relativo all&rsquo;endpoing del tunnel per tutto il traffico ipv6:</p>
<p><code>route -A inet6 add ::/0 dev sit1</code></p>
]]></content:encoded>
    </item>
    <item>
      <title>IPv6 - HE.NET Certification</title>
      <link>https://www.deepreflect.net/2008/10/09/ipv6-henet-certification/</link>
      <pubDate>Thu, 09 Oct 2008 21:08:44 +0000</pubDate>
       <guid isPermaLink="false">http://blog.deepreflect.net/?p=119</guid> 
      <description>&lt;p&gt;Simpatica certificazione IPv6 inventata dalla Hurricane Electric:&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;http://ipv6.he.net/certification/scoresheet.php?pass_name=leonardorizzi&#34;&gt;&lt;img alt=&#34;IPv6 Certification Badge for leonardorizzi&#34; loading=&#34;lazy&#34; src=&#34;http://ipv6.he.net/certification/make_badge.php?pass_name=leonardorizzi&#34;&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Simpatica certificazione IPv6 inventata dalla Hurricane Electric:</p>
<p><a href="http://ipv6.he.net/certification/scoresheet.php?pass_name=leonardorizzi"><img alt="IPv6 Certification Badge for leonardorizzi" loading="lazy" src="http://ipv6.he.net/certification/make_badge.php?pass_name=leonardorizzi"></a></p>
]]></content:encoded>
    </item>
    <item>
      <title>Cisco IPv6</title>
      <link>https://www.deepreflect.net/2008/08/20/cisco-ipv6/</link>
      <pubDate>Wed, 20 Aug 2008 08:47:04 +0000</pubDate>
       <guid isPermaLink="false">http://blog.deepreflect.net/?p=24</guid> 
      <description>&lt;p&gt;Anche se non credevo che fosse cosi&amp;rsquo; semplice i tunnel 6to4 sui router cisco non sono una cosa complessa come sembra posto uno straccio di configurazione usato con il tunnel broker Hurricane Electric sul server di parigi:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;interface Tunnel0
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;no ip address
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;no ip redirects
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;no ip unreachables
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;no ip proxy-arp
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;ipv6 address 2001:470:1F12:10A::2/64
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;ipv6 enable
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;tunnel source xxx.xxx.xxx.xxx
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;tunnel destination 216.66.84.42
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;tunnel mode ipv6ip
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;!
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;ipv6 route ::/0 Tunnel0
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Attenzione questa e&amp;rsquo; usata su un 2600 con IOS 12.3 IP FW IDS PLUS / IPSEC
Ricordo che e&amp;rsquo; bene inserire un ACL che faccia passare il protocollo 41 solo dall&amp;rsquo;end point del tunnel e ovviamente lasciare le risposte icmp abilitate&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Anche se non credevo che fosse cosi&rsquo; semplice i tunnel 6to4 sui router cisco non sono una cosa complessa come sembra posto uno straccio di configurazione usato con il tunnel broker Hurricane Electric sul server di parigi:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>interface Tunnel0
</span></span><span style="display:flex;"><span>no ip address
</span></span><span style="display:flex;"><span>no ip redirects
</span></span><span style="display:flex;"><span>no ip unreachables
</span></span><span style="display:flex;"><span>no ip proxy-arp
</span></span><span style="display:flex;"><span>ipv6 address 2001:470:1F12:10A::2/64
</span></span><span style="display:flex;"><span>ipv6 enable
</span></span><span style="display:flex;"><span>tunnel source xxx.xxx.xxx.xxx
</span></span><span style="display:flex;"><span>tunnel destination 216.66.84.42
</span></span><span style="display:flex;"><span>tunnel mode ipv6ip
</span></span><span style="display:flex;"><span>!
</span></span><span style="display:flex;"><span>ipv6 route ::/0 Tunnel0
</span></span></code></pre></div><p>Attenzione questa e&rsquo; usata su un 2600 con IOS 12.3 IP FW IDS PLUS / IPSEC
Ricordo che e&rsquo; bene inserire un ACL che faccia passare il protocollo 41 solo dall&rsquo;end point del tunnel e ovviamente lasciare le risposte icmp abilitate</p>
]]></content:encoded>
    </item>
    <item>
      <title>IPv6</title>
      <link>https://www.deepreflect.net/2008/08/20/ipv6/</link>
      <pubDate>Wed, 20 Aug 2008 08:41:45 +0000</pubDate>
       <guid isPermaLink="false">http://blog.deepreflect.net/?p=22</guid> 
      <description>&lt;p&gt;Visto che ogni tanto sale l&amp;rsquo;inutile fobia dell&amp;rsquo;imminente fine degli IP4 (cosa che reputo ridicola) ho deciso che era il momento di muovere un po&amp;rsquo; la mia rete dato che iniziava ad essere abbastanza monotona.&lt;/p&gt;
&lt;p&gt;Quindi dal 22 Luglio ho allocate due classi di ip:&lt;/p&gt;
&lt;p&gt;2001:470:c86f::/48
2001:470:1f13:10a::/64&lt;/p&gt;
&lt;p&gt;Gia&amp;rsquo; che ero in vena di novita&amp;rsquo; c&amp;rsquo;e&amp;rsquo; pure un nuovo dominio stars6.net dedicato alle prove del caso.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Visto che ogni tanto sale l&rsquo;inutile fobia dell&rsquo;imminente fine degli IP4 (cosa che reputo ridicola) ho deciso che era il momento di muovere un po&rsquo; la mia rete dato che iniziava ad essere abbastanza monotona.</p>
<p>Quindi dal 22 Luglio ho allocate due classi di ip:</p>
<p>2001:470:c86f::/48
2001:470:1f13:10a::/64</p>
<p>Gia&rsquo; che ero in vena di novita&rsquo; c&rsquo;e&rsquo; pure un nuovo dominio stars6.net dedicato alle prove del caso.</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
