<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n in IPv6 Trial</title>
    <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909965#M1291</link>
    <description>Hi MJN,&lt;BR /&gt;Thanks a lot: your reply really helped me understand where I was going wrong. I have learned a lot about IPv6 and IPv4 routing, and firewalls, over the last few hours! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;I see now that the unusual routing where outside_addr, &amp;nbsp;inside_addr and access_list all end up being identical is something of an interesting hack that re-routes the IPv4 traffic encapsulating the IPv6 traffic over the tunnel back to the external interface, i.e. in order to make it appear to come from the WAN side like normal IPv6 traffic would. That is, if I understand your meaning correctly when you describe the traffic as being "unwrapped". Since it's such an unusual way of doing things, perhaps it's not surprising that I was a bit misled - anyway, thanks a million for putting me right &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;(From some rather haphazard efforts at testing before I realised what I needed to do, I suspect that it will work without this instruction, but it's quite possible that the traffic would then always be logged as though the originator was the tunnel and there might be other problems that I don't fully understand - but I've not tested this very thoroughly, to be honest, so this is speculation based on it seeming to work without the tmpladd instruction or with the wrong one above that I was using before you corrected me...)&lt;BR /&gt;It's interesting and useful that the router seems to automate the translation of tmpladd and tmpldelete instructions into mapadd and mapdelete instructions consistently: saves time! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;Anyway, after much heartache, it did turn out to be very much simpler than I anticipated to set up the firewall rules. When you "turn off" the firewall, you actually only turn off a small part of it by switching from the forward_level_Standard to the forward_level_Disabled chains (there is also forward_level_Blocked for a very tough firewall with no access from the LAN). The one of these that you have activated, in turn, is linked to the forward_level chain, which is the parent. This is third from the bottom of the chains of rules in the firewall table, quite far down.&lt;BR /&gt;What foxed me for any hours is that you should NOT specify "srcintf=wan" (in "firewall add rule") or else it won't forward your traffic. Just leave that part out entirely.&lt;BR /&gt;Supposing we use an alias for the server called "server1", we can do this:&lt;BR /&gt;&lt;PRE&gt;:expr add name=server1 type=ip addr=&amp;lt;ADD THE IPv6 ADDRESS OF YOUR SERVER HERE&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;If you don't do this, you could replace "server1" in the following with the IPv6 address instead, if you like, but it's neater and easier to change later if you use the previous instruction, especially if you have lots of rules. Call the rule whatever you like, where I have chosen "IPv6HTTP" etc. You can choose "log=enabled" or leave it out if you want it disabled.&lt;BR /&gt;&lt;PRE&gt;:firewall rule name=IPv6HTTP add chain=forward_level_Standard &amp;nbsp;dstip=server1 serv=http log=enabled action=accept&lt;BR /&gt;:firewall rule name=IPv6HTTPS add chain=forward_level_Standard &amp;nbsp;dstip=server1 serv=https log=enabled action=accept&lt;/PRE&gt;&lt;BR /&gt;If you need to set up any other "services" for ports, you'll need to find their names with:&lt;BR /&gt;&lt;PRE&gt;:expr list&lt;/PRE&gt;&lt;BR /&gt;You may need to add some that aren't listed with, for example (for IRC):&lt;BR /&gt;&lt;PRE&gt;:expr add name=irc type=serv proto=tcp dstport=6667&lt;/PRE&gt;&lt;BR /&gt;It's also possible to set up a custom firewall setting instead of using the "Standard" one:&lt;BR /&gt;&lt;PRE&gt;:firewall level add name=Normal text=”How I like the firewall set normally” policy=drop&lt;BR /&gt;:firewall rule add chain=forward_level_Normal srcintf=lan action=accept&lt;/PRE&gt;&lt;BR /&gt;You can change the order by inserting them with "index=xx", which will place it above the one that currently has that number, and re-numbering the original +1 below it.&lt;BR /&gt;The second command (optional) ensures access from within your LAN (like the default "Standard" firewall setting"). You'll then want to activate it. I expect you can do this from the CLI but it's easy enough to switch firewall setting levels from the web interface so I didn't bother to find out how. What you can't do from the web interface is edit them, of course.&lt;BR /&gt;It goes without saying that using "nat tmpldelete index=xx" (and also "nat mapdelete index=xx"), "firewall rule delete chain=forward_level_Standard index=xx" needs to be undertaken with considerable care unless you feel like getting totally lost and needing to hard reset your router, losing all your own configuration! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;Another important thing to do - which I will do in just one second! - is ":saveall", which will save it to user.ini on the router. You can download a copy by ftp:&lt;BR /&gt;&lt;PRE&gt;ftp 192.168.1.254 (or whatever)&lt;BR /&gt;(user name and password)&lt;BR /&gt;binary&lt;BR /&gt;get user.ini&lt;BR /&gt;exit&lt;/PRE&gt;&lt;BR /&gt;The ftp interface doesn't have the peculiar backspace deleting forwards behaviour that was a pain until I realised that you actually *can* delete errors in the telnet interface &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;It's obviously possible to put this back on the router in the same way by using "put user.ini" later.&lt;BR /&gt;I hope that this experience helps someone who follows. Many thanks to MJN and apologies if I've still misunderstood anything above. Anyway, it works, so hooray!&lt;BR /&gt;Lastly, most of what I figured out came from a combination of playing with settings one by one and then putting them back, but the following was invaluable:&lt;BR /&gt;&lt;A href="http://phil.tinsleyviaduct.com/tg582nfirewall.html" target="_blank"&gt;http://phil.tinsleyviaduct.com/tg582nfirewall.html&lt;/A&gt;&lt;BR /&gt;All the best,&lt;BR /&gt;&lt;BR /&gt;Talat&lt;BR /&gt;</description>
    <pubDate>Thu, 17 Apr 2014 16:19:54 GMT</pubDate>
    <dc:creator>maescrugiau</dc:creator>
    <dc:date>2014-04-17T16:19:54Z</dc:date>
    <item>
      <title>6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909861#M1187</link>
      <description>Hi,&lt;BR /&gt;Since the IPv6 Technical trial ended &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@EF02202129013B5A91517CA3B2B0F58A/images/emoticons/cry.gif" alt="Cry" title="Cry" /&gt; I've been wondering how to provide a usable IPv6 alternative until the full service trial begins. My solution is to configure the Technicolor TG582n to use a 6in4 IPv6 Tunnel (RFC4213 &lt;A href="http://tools.ietf.org/html/rfc4213"&gt;http://tools.ietf.org/html/rfc4213&lt;/A&gt;).&lt;BR /&gt;We send this router to all new customers as standard and we're currently in the early stages of testing the 10.2.1.8 version of the firmware which includes, amongst other things, full IPv6 support.&lt;BR /&gt;One of the mechanisms for supporting IPv6 is via a RFC4213 6in4 tunnel, this allows IPv6 traffic to be encapsulated in IPv4 packets. Any IPv4 host can encapsulate IPv6 traffic like this to gain full IPv6 support, it is trivial to set up one of these tunnels on a computer but more complicated to set up on a router. The biggest problem is that the IPv4 tunnel route, local IP address and prefix delegation need to be set up manually, there is no automated way to configure this.&lt;BR /&gt;This post details how to configure a TG582n router to use a 6in4 tunnel to provide both an IPv6 address to the router and to give the LAN a globally addressable IPv6 subnet via Router Advertisements/NDP. Please let me know how you get on.&lt;BR /&gt;&lt;B&gt;You'll need:&lt;/B&gt;&lt;BR /&gt;Technicolor TG582n Router&lt;BR /&gt;Firmware version 10.2.2.B (available here: &lt;A href="http://products.plus-payh.co.uk/firmware/"&gt;http://products.plus-payh.co.uk/firmware/&lt;/A&gt;) [LINK UPDATED 27/02/2013]&lt;BR /&gt;Telnet access to the router&lt;BR /&gt;Static IPv4 Address&lt;BR /&gt;Some technical knowhow&lt;BR /&gt;&lt;B&gt;Step 1 - Get an IPv6 Prefix&lt;/B&gt;&lt;BR /&gt;We'll be using &lt;A href="http://www.sixxs.net" target="_blank"&gt;http://www.sixxs.net&lt;/A&gt; for our tunnel. Go to their website and sign up for an account. Once your account is approved you'll need to apply for a &lt;U&gt;static tunnel&lt;/U&gt;. You could apply for a Heartbeat or AYIYA but these are designed for hosts behind a NAT or with a dynamic IPv4 address, they also need special software to make them work, with these you could have IPv6 on your network but you'd need a server to manage it.&lt;BR /&gt;I signed up, activated my account, applied for a tunnel and had it all approved in under 2 hours.&lt;BR /&gt;Now that your tunnel has been approved you should have all the details in an email, just like the one below which I'll be using for my example.&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Quote&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;To: Matt Turner &amp;lt;&amp;gt;&lt;BR /&gt;Subject: [SixXS] Tunnel Approval T100518 (MTA4-SIXXS)&lt;BR /&gt;From: SixXS &amp;lt;info@sixxs.net&amp;gt;&lt;BR /&gt; &amp;nbsp;Tunnel Id &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: T100518&lt;BR /&gt; &amp;nbsp;PoP Name &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : gblon03 (uk.gyron [AS29017])&lt;BR /&gt; &amp;nbsp;TIC Server &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : tic.sixxs.net (which is the default in AICCU)&lt;BR /&gt; &amp;nbsp;Your Location &amp;nbsp; &amp;nbsp; &amp;nbsp;: Sheffield, gb&lt;BR /&gt; &amp;nbsp;SixXS IPv6 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 2a00:14f0:e000:b7::1/64&lt;BR /&gt; &amp;nbsp;Your IPv6 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: 2a00:14f0:e000:b7::2/64&lt;BR /&gt; &amp;nbsp;SixXS IPv4 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 212.113.147.150&lt;BR /&gt; &amp;nbsp;Tunnel Type &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: Static (Proto-41)&lt;BR /&gt; &amp;nbsp;Your IPv4 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: 212.159.16.79&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;B&gt;Step 2 - Configure the Tunnel&lt;/B&gt;&lt;BR /&gt;Log into the Telnet interface of your router.&lt;BR /&gt;Create a tunnel&lt;BR /&gt;&lt;PRE&gt;:tunnel 6in4 add ifname=6in4tunnel&lt;/PRE&gt;&lt;BR /&gt;Configure the tunnel using the SixXS IPv4 address given in the email&lt;BR /&gt;&lt;PRE&gt;:tunnel 6in4 modify ifname=6in4tunnel sourceintf=Internet destination=212.113.147.150&lt;/PRE&gt;&lt;BR /&gt;Route all IPv6 traffic over the new tunnel&lt;BR /&gt;&lt;PRE&gt;:ip rtadd dst=::/0 intf=6in4tunnel&lt;/PRE&gt;&lt;BR /&gt;Tell the router its new IPv6 address (the IPv6 Address in the email). &lt;U&gt;Change the subnet mask from 64 to 128 otherwise the 64 subnet route is on the Local Network (not correct)&lt;/U&gt;&lt;BR /&gt;&lt;PRE&gt;:ip ipadd intf=LocalNetwork addr=2a00:14f0:e000:b7::2/128 addroute=enabled&lt;/PRE&gt;&lt;BR /&gt;&lt;B&gt;Step 3 - Test the Tunnel&lt;/B&gt;&lt;BR /&gt;See if you can talk to the SixXS IPv6 address at the other end of the tunnel (given in the email)&lt;BR /&gt;&lt;PRE&gt;:ping proto=ip addr=2a00:14f0:e000:b7::1&lt;/PRE&gt;&lt;BR /&gt;See if you can talk to Google over IPv6&lt;BR /&gt;&lt;PRE&gt;:ping proto=ip addr=2a00:1450:4007:804::1011&lt;/PRE&gt;&lt;BR /&gt;Good, IPv6 is working, you can talk out, but incoming connections will be refused by the firewall and NAT systems.&lt;BR /&gt;&lt;B&gt;Step 3 - Configure the firewall and NAT&lt;/B&gt;&lt;BR /&gt;Allow all traffic through the firewall from the IPv4 tunnel originating address (given in the email):&lt;BR /&gt;&lt;PRE&gt;:expr add name=6in4ipv4 type=ip addr=212.113.147.150&lt;BR /&gt;:firewall rule add name 6in4 chain sink_fire action accept srcip 6in4ipv4 srcintf wan state enabled&lt;/PRE&gt;&lt;BR /&gt;All traffic from the IPv4 Tunnel address needs to go to the router (again, use the IPv4 address given in the email as the foreign_addr value). In this command, the router automatically maps 0.0.0.1 to the first IPv4 address of the Internet interface.&lt;BR /&gt;&lt;PRE&gt;:nat tmpladd intf=Internet type=nat protocol=ipv6 outside_addr=0.0.0.1 inside_addr=0.0.0.1 foreign_addr=212.113.147.150&lt;/PRE&gt;&lt;BR /&gt;&lt;B&gt;Step 4 - Set up a server for the outside world to talk to&lt;/B&gt;&lt;BR /&gt;Enable the IPv6 Ping Responder on the tunnel interface&lt;BR /&gt;&lt;PRE&gt;:service system modify name=PINGv6_RESP state=enabled&lt;BR /&gt;:service system ifadd name PINGv6_RESP intf 6in4tunnel &lt;/PRE&gt;&lt;BR /&gt;Test the server using the tool here &lt;A href="http://www.mebsd.com/ipv6-ping-and-traceroute" target="_blank"&gt;http://www.mebsd.com/ipv6-ping-and-traceroute&lt;/A&gt; and check that your IP address (2a00:14f0:e000:b7::1) is pingable.&lt;BR /&gt;Your router is now IPv6 enabled, time to share it on the internal LAN.&lt;BR /&gt;&lt;B&gt;Step 5 - Setting up prefix advertisements on the LAN&lt;/B&gt;&lt;BR /&gt;Run these commands using your IPv6 prefix which you can find by logging into your SixXS account and looking under the subnet section. &lt;U&gt;It is not the same as your tunnel address.&lt;/U&gt;&lt;BR /&gt;&lt;PRE&gt;:ip rt6advd ifdetach intf=LocalNetwork&lt;BR /&gt;:ip rt6advd pfxadd intf=LocalNetwork prefix=2a00:14f0:e000:80b7::/64 vltime=2592000 pltime=604800 aflag=enabled lflag=enabled&lt;BR /&gt;:ip rt6advd ifattach intf=LocalNetwork&lt;/PRE&gt;&lt;BR /&gt;Good, now your router is broadcasting this prefix to all the machines on your LAN, if they're ready to accept an IPv6 address then they'll configure themselves automatically.&lt;BR /&gt;Goto &lt;A href="http://www.thinkbroadband.com/ipv6/" target="_blank"&gt;http://www.thinkbroadband.com/ipv6/&lt;/A&gt; and check that you're IPv6 enabled.&lt;BR /&gt;&lt;IMG src="http://www.mattturner.plus.com/yay.jpg" /&gt;&lt;BR /&gt;You could also fire up wireshark and check the router advertisements are as expected&lt;BR /&gt;&lt;IMG src="http://www.mattturner.plus.com/pa.jpg" /&gt;&lt;BR /&gt;Or you could set up a Think Broadband ping monitor&lt;BR /&gt;&lt;A href="http://www.thinkbroadband.com/ping/share/c231f75ab320075361c35ec0a60e27e0.html" target="_blank"&gt;&lt;IMG src="http://www.thinkbroadband.com/ping/share-thumb/c231f75ab320075361c35ec0a60e27e0.png" /&gt;&lt;/A&gt;</description>
      <pubDate>Sat, 28 Jul 2012 16:26:46 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909861#M1187</guid>
      <dc:creator>mattturner</dc:creator>
      <dc:date>2012-07-28T16:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909862#M1188</link>
      <description>You may want to remove your email address from the above post &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@104CD63F9302A50EF5EC70FE32BB8AA1/images/emoticons/smiley.gif" alt="Smiley" title="Smiley" /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Mike</description>
      <pubDate>Sat, 28 Jul 2012 16:52:20 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909862#M1188</guid>
      <dc:creator>ITWorks</dc:creator>
      <dc:date>2012-07-28T16:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909863#M1189</link>
      <description>Whoops, forgot about that.</description>
      <pubDate>Sat, 28 Jul 2012 16:55:47 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909863#M1189</guid>
      <dc:creator>mattturner</dc:creator>
      <dc:date>2012-07-28T16:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909864#M1190</link>
      <description>Can this router be used on FTTC? If not is there a recommended router that'll act as the endpoint for an HE 6in4 tunnel handing out local IPv6 addresses and thus supporting several local devices?&lt;BR /&gt;If the TG582n does work would PN be willing to let me have one? I want to learn about this IPv6 lark and it'll make be trial ready &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@0FA1396AC0773F33E2DC472BB4F75D3C/images/emoticons/wink.gif" alt="Wink" title="Wink" /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 05 Aug 2012 14:44:30 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909864#M1190</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-05T14:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909865#M1191</link>
      <description>Yeah, the 582 can be used for FTTC.&amp;nbsp;  The firmware needs a reflash and it will use one of the ethernet ports as the modem uplink port.</description>
      <pubDate>Sun, 05 Aug 2012 15:47:06 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909865#M1191</guid>
      <dc:creator>Kelly</dc:creator>
      <dc:date>2012-08-05T15:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909866#M1192</link>
      <description>Thanks for that, I assume the firmware is the one mentioned in the first post. Is there a manual for that version one can download from somewhere?</description>
      <pubDate>Sun, 05 Aug 2012 18:50:19 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909866#M1192</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-05T18:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909867#M1193</link>
      <description>Yay, following Matt's awesome instructions I have this all setup &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@104CD63F9302A50EF5EC70FE32BB8AA1/images/emoticons/smiley.gif" alt="Smiley" title="Smiley" /&gt;&lt;BR /&gt;Only problem I found was the &lt;A href="http://www.thinkbroadband.com/ipv6/" target="_blank"&gt;http://www.thinkbroadband.com/ipv6/&lt;/A&gt; told me I was still using IPv4 but I could access &lt;A href="http://ipv6.google.com" target="_blank"&gt;http://ipv6.google.com&lt;/A&gt; ok. So I tried &lt;A href="http://ipv6.thinkbroadband.com/ipv6/" target="_blank"&gt;http://ipv6.thinkbroadband.com/ipv6/&lt;/A&gt; and lo an behold I get a "Yay you're using IPv6". I guess this is because my Windows 7 is defaulting to using IPv4? As most stuff is still using IPv4 I think I prefer that but for future reference is there a way to get the W7 to use v6 in preference so &lt;A href="http://www.thinkbroadband.com/ipv6/" target="_blank"&gt;http://www.thinkbroadband.com/ipv6/&lt;/A&gt; works for me?</description>
      <pubDate>Thu, 09 Aug 2012 08:48:36 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909867#M1193</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-09T08:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909868#M1194</link>
      <description>Maybe IPv4 is the default when using a 6in4 tunnel (that would make some sense), I'm sure that IPv6 should be 'preferred' when using dual stack.&amp;nbsp; I doubt it is an issue with Windows 7.</description>
      <pubDate>Thu, 09 Aug 2012 10:32:18 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909868#M1194</guid>
      <dc:creator>w23</dc:creator>
      <dc:date>2012-08-09T10:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909869#M1195</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Quote from: Picnic&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Yay, following Matt's awesome instructions I have this all setup &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@104CD63F9302A50EF5EC70FE32BB8AA1/images/emoticons/smiley.gif" alt="Smiley" title="Smiley" /&gt;&lt;BR /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt; &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@13ACAF1B4DB3038AD540E11CDD6AB984/images/emoticons/cheesy.gif" alt="Cheesy" title="Cheesy" /&gt; Excellent! Glad to hear that it all worked for you, I think you're the first to try this from my instructions.&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Quote from: walker23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Maybe IPv4 is the default when using a 6in4 tunnel (that would make some sense), I'm sure that IPv6 should be 'preferred' when using dual stack.&amp;nbsp; I doubt it is an issue with Windows 7.&lt;BR /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;I didn't have any problems with the TBB site, Ubuntu seems to default to IPv6, I've not tried it on Windows 7 yet. From the way I wrote the instructions, IPv6 is exposed to the network just as if it was a dual stack setup over the PPP interface.</description>
      <pubDate>Thu, 09 Aug 2012 14:14:34 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909869#M1195</guid>
      <dc:creator>mattturner</dc:creator>
      <dc:date>2012-08-09T14:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909870#M1196</link>
      <description>The choice of IP transport is a function of the app rather than the OS. The selection, which usually prioritises IPv6 over IPv4 (unless cconfigured to do otherwise), is usually made as a result of a belief that IPv6 transport exists (e.g. the host's IPv6 routing table has been populated with a route out) and whether or not AAAA records are available for the domain name being queried.&lt;BR /&gt;Several things can interrupt this time-sensitive process such as temporary routing issues (in IPv6 or the IPv4 tunnel wrapper) which may mean the decision is not made as expected or the subsuent IPv6 connection attempt times out and reverts back to IPv4. It could even be that the browser had cached the A result for the URL and hence opted to use that rather than query for AAAA/A now that IPv6 transport was made available.&lt;BR /&gt;Many newer browsers attempt to cut down this sequential decision-and-action making using various techniques often colloquially known as 'happy eyeballs'. Such mechanisms usually make an initial connection attempt over both IPv4 and IPv6 simultaneously and make the final choice based on which transport connected quickest. This circumvents the problem where IPv6 appears to be available but isn't and negates the need to sit around waiting for the futile connection to timeout.&lt;BR /&gt;Mathew</description>
      <pubDate>Thu, 09 Aug 2012 20:19:28 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909870#M1196</guid>
      <dc:creator>MJN</dc:creator>
      <dc:date>2012-08-09T20:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909871#M1197</link>
      <description>Thanks for the feedback. I'll try a Linux client as see how that gets on &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@104CD63F9302A50EF5EC70FE32BB8AA1/images/emoticons/smiley.gif" alt="Smiley" title="Smiley" /&gt;</description>
      <pubDate>Fri, 10 Aug 2012 06:47:55 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909871#M1197</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-10T06:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909872#M1198</link>
      <description>What browser (on Win 7) are you using?</description>
      <pubDate>Fri, 10 Aug 2012 09:34:52 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909872#M1198</guid>
      <dc:creator>MJN</dc:creator>
      <dc:date>2012-08-10T09:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909873#M1199</link>
      <description>Chrome&lt;BR /&gt;Just tried IE and it worked without using the IP6 address.&lt;BR /&gt;Just tried Chrome again and it worked this time.&lt;BR /&gt;</description>
      <pubDate>Sat, 11 Aug 2012 13:03:43 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909873#M1199</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-11T13:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909874#M1200</link>
      <description>Hmm, this is not going too well now. The router has reset itself 3 times today after running fine for the last few. Don't think it's temperature related as the first was as around 3am.&lt;BR /&gt;There is nothing in the router's log as this seems to start afresh on a reboot. Any ideas on how to diagnose this?</description>
      <pubDate>Sun, 12 Aug 2012 15:30:44 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909874#M1200</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-12T15:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909875#M1201</link>
      <description>This is not working for me the router keeps on resetting and it's triggered by me using my web browser 99% of the time. Generally it's when going to a new page.&lt;BR /&gt;Now I notice Matt you said&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Quote from: Matt&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;B&gt;You'll need:&lt;/B&gt;&lt;BR /&gt;Technicolor TG582n Router&lt;BR /&gt;Firmware version 10.2.1.8 (available here: &lt;A href="http://www.mattturner.plus.com/PN" tg582n="" r10.2.0.b="" demo.bin=""&gt;http://www.mattturner.plus.com/PN TG582n R10.2.0.B DEMO.bin&lt;/A&gt;)&lt;BR /&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;The version for the download is reported as&lt;BR /&gt;[quote=my router]&lt;BR /&gt;Software Release:		10.2.0.B&lt;BR /&gt;&lt;BR /&gt;Which implies your 10.2.1.8 is a new more improved version. I've googled to see if I can download that version elsewhere but this thread is the only relevant hit. If you're using a new version please can you post a link as otherwise I'll have to put this to one side again.&lt;BR /&gt;Edit: Seems that trying to backup the configuration of the router causes it to reset &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@6BD5E1FD9194A889D807C8E641344CF1/images/emoticons/sad.gif" alt="Sad" title="Sad" /&gt; Just tried it 3 times.</description>
      <pubDate>Tue, 14 Aug 2012 07:45:06 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909875#M1201</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-14T07:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909876#M1202</link>
      <description>We believe the file download to actually be 10.2.1.8, even though the filename suggests otherwise. We are checking into this though.&lt;BR /&gt;That said, a new versions is available and we are testing this. It's primary test purpose relates to Easy Setup, but will offer IPv6 still. We are hoping to make this available soon.&lt;BR /&gt;In regards to logs, I can only suggest logging the output of a telnet session to the router. Connect via Telnet and hit CTRL+Q to start console output. Provided it does spit out any needed errors before it reboots, this should make it available to you from your local machine.</description>
      <pubDate>Tue, 14 Aug 2012 09:41:24 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909876#M1202</guid>
      <dc:creator>prichardson</dc:creator>
      <dc:date>2012-08-14T09:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909877#M1203</link>
      <description>I didn't take a note of the firmware version previously in the logger. Maybe the upgrade didn't work? I struggled to find an upgrade program for the logger, no disc came with it, but eventually I found one on the Be site. It appeared to work but perhaps it did not. Do PN make available a flash utility for the router?&lt;BR /&gt;I'm now capturing the output so let's see what that brings.&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Aug 2012 12:04:20 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909877#M1203</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-14T12:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909878#M1204</link>
      <description>This is the output when one tries to backup the router's configuration via the web interface&lt;BR /&gt;[quote=tg582n]&lt;BR /&gt;&amp;lt;37&amp;gt; Aug 14 15:17:26 LOGIN User Administrator logged in on [HTTP] (from 192.168.37.5)&lt;BR /&gt;&amp;lt;14&amp;gt; Aug 14 15:17:49 CONFIGURATION mbus atomic sync successful&lt;BR /&gt;[IGD-MBUS] igd1to1_getvalue_ds invalid value IP.Intf.6in4tunnel.LowerIntf='loop' (Invalid parameter value)&lt;BR /&gt;&amp;lt;14&amp;gt; Aug 14 15:17:50 CONFIGURATION failed to sync mbus igd&lt;BR /&gt;[config] configuration autosaved after delay&lt;BR /&gt;&lt;BR /&gt;The only other time it's reset was when I had to reboot the PC and putty wasn't running, typical.&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Aug 2012 14:56:34 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909878#M1204</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-14T14:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909879#M1205</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Quote from: Picnic&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Do PN make available a flash utility for the router?&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;The flashing utility for Windows users linked in the TG585v7/v8 library article &lt;A href="http://community.plus.net/library/hardware/how-to-upgradedowngrade-the-firmware-on-the-thomson-585v7/" target="_blank"&gt;here&lt;/A&gt; should also work with the TG582n reference ...&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Quote from: P&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;The process to flash a router is quite simple, though is only available to windows users. Instructions can be found &lt;A href="http://community.plus.net/library/hardware/how-to-upgradedowngrade-the-firmware-on-the-thomson-585v7/" target="_blank"&gt;here&lt;/A&gt; which is applicable to the TG582n as well.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Tue, 14 Aug 2012 15:37:29 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909879#M1205</guid>
      <dc:creator>spraxyt</dc:creator>
      <dc:date>2012-08-14T15:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: 6in4 IPv6 Tunnel natively on Technicolor TG582n</title>
      <link>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909880#M1206</link>
      <description>I think my router is self aware, if I follow your link spraxyt and try and download the W7 program the router resets! It doesn't want to be flashed&amp;nbsp; &lt;img class="lia-deferred-image lia-image-emoji" src="https://community.plus.net/html/@D10385D46FF09B2E8FF20B0746B65E6F/images/emoticons/shocked.gif" alt="Shocked" title="Shocked" /&gt;&lt;BR /&gt;I'm too clever for it so I've just swapped browsers to see if that helped. Chrome == reset reset, IE9 64bit == good download. Off to play now and see if I can flash it again.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Aug 2012 19:50:27 GMT</pubDate>
      <guid>https://community.plus.net/t5/IPv6-Trial/6in4-IPv6-Tunnel-natively-on-Technicolor-TG582n/m-p/909880#M1206</guid>
      <dc:creator>Picnic</dc:creator>
      <dc:date>2012-08-14T19:50:27Z</dc:date>
    </item>
  </channel>
</rss>

