Page 12 of 13 FirstFirst ... 210111213 LastLast
Results 166 to 180 of 187

Thread: IPv6 Support

  1. #166
    Join Date
    Nov 2006
    Location
    Russia, Moscow
    Posts
    3,640
    Quote Originally Posted by Dapper View Post
    Just curious, what impact, if any, do the latest changes to the firmware

    have on the issues we discussed above?
    Please, read the news carefully - changes you mentioned, relates to 1.9.2.7-rtn branch which is kernel 2.6.22 based.

  2. #167
    Quote Originally Posted by lly View Post
    Please, read the news carefully - changes you mentioned, relates to 1.9.2.7-rtn branch which is kernel 2.6.22 based.
    My apologies, I stupidly missed the large bold characters at the top

    May I ask, will there be much work relating to ipv6 on the 'd' builds?

    Thanks.

  3. #168
    Join Date
    Nov 2006
    Location
    Russia, Moscow
    Posts
    3,640
    Quote Originally Posted by Dapper View Post
    May I ask, will there be much work relating to ipv6 on the 'd' builds?
    Not planned. Backport of IPv6 stack & netfilter features really huge task and, since all modern devices supports 2.6, has zero priority. Anyway, if someone will contribute some patches, we gladly accept it.

  4. #169
    Quote Originally Posted by lly View Post
    Not planned. Backport of IPv6 stack & netfilter features really huge task and, since all modern devices supports 2.6, has zero priority. Anyway, if someone will contribute some patches, we gladly accept it.
    Ok lly, thanks I guess it's time to try the rtn build...

  5. #170
    I can't believe this!

    I've just upgraded to 1.9.2.7-rtn-r2775 and all the problems I was experiencing before have returned, can't connect to various ipv6 sites, score 1 out of 10 on test-ipv6 etc.

    The tunnel is correctly configured and I can ping -6 all over the place. I can also connect to some ipv6 sites like ipv6.google.com. I've tried this from two different PCs and the results are the same.

    Could these problems have anything to do with the way I connect to the Internet, it's Russian Dual Access, with an l2tp tunnel through the ISP LAN to the Internet gateway?

    Edit: Out of curiosity, I put SUSE 11.4 on a box and it had the same problems, so whatever the issue is, it's platform independent
    Last edited by Dapper; 22-03-2011 at 06:04.

  6. #171
    Join Date
    Dec 2007
    Location
    The Netherlands - Eindhoven
    Posts
    1,767
    Dapper, that is possible yes.
    When I upgraded my WL500W to the rt-n firmware I noticed some settings couldn't be found.
    There is a good chance you might need to reconfigure your router for the rt-n firmware, or at least try to restore the settings

  7. #172
    I give up!

    1. Fresh installation of Windows 7 (nothing else added)
    2. Reset router to factory defaults
    3. Configured router for IPv6
    4. Enabled ping
    5. Configured the tunnel
    6. Confirmed connectivity with ping and tracert
    7. Tried to browse to ipv6 enabled sites such as tunnelbroker.net - Failed
    8. Tried test-ipv6 - 1 out or 10

    There has to be something obvious I'm missing with the router, because if I remove it from the equation and end the tunnel at a PC, it works. Likewise, if I disable ipv6 on the adapter so I'm connecting with ipv4, it works.
    Attached Images Attached Images  

  8. #173
    For what it's worth, the problem I'm having is the same as the one reported here: http://code.google.com/p/wl500g/issues/detail?id=198 As mentioned above, I too am using l2tp.

    I have no idea what the OP did to 'fix' his problem, it would seem a custom compile...

    I seem to have found a temporary solution by modifying the ipv6 MTU via netsh:

    netsh interface ipv6 set subinterface "name of adapter" mtu=1280

    Doing so gives me 10 out of 10 on test-ipv6 and sites load as quickly as they do with ipv4 alone.

    However, I don't really understand why I should need to do this only when the router is terminating the tunnel. It seems to suggest PMTU is breaking down somewhere?
    Last edited by Dapper; 05-04-2011 at 10:42.

  9. #174
    Quote Originally Posted by wpte View Post
    I added documentation on how to configure a tunnel due to the amount of problems and questions
    http://code.google.com/p/wl500g/wiki...Pv6Tunnelhowto
    Obviously things still could go wrong, but this makes things easier

    Also added the link in the first post of this thread
    Page "GUIIPconfigIPv6Tunnelhowto" Not Found
    Can you repost pls?

  10. #175
    Join Date
    Dec 2007
    Location
    The Netherlands - Eindhoven
    Posts
    1,767
    Quote Originally Posted by outlaw11 View Post
    Can you repost pls?
    ah excuse me, the file name has changed, but it can still be found in the wiki menu
    anyway, direct link: http://code.google.com/p/wl500g/wiki...gIPv6HowTo6in4
    And I'll edit my post

  11. #176
    thank you

    can you suggest some good or prefered iptables rules with ipv6 tunnel?

  12. #177
    Join Date
    Dec 2007
    Location
    The Netherlands - Eindhoven
    Posts
    1,767
    Quote Originally Posted by outlaw11 View Post
    thank you

    can you suggest some good or prefered iptables rules with ipv6 tunnel?
    The main IPv6 firewall is active by default when the main firewall is turned on, so you shouldn't need extra configuration

    but you should be able to add some extra things, like opening up port 80 for your router:

    #Remove last drop
    ip6tables -D INPUT -j DROP
    #add extra rules
    ip6tables -A INPUT -p tcp --dport 80 -j ACCEPT
    #add the final drop again
    ip6tables -A INPUT -j DROP

  13. #178
    this way is more secure and convenient, imho:
    Code:
    # set default input rule
    iptables -P INPUT DROP
    ip6tables -P INPUT DROP
    # remove last default rule
    iptables -D INPUT -j DROP
    ip6tables -D INPUT -j DROP
    # allow ...
    iptables -A INPUT ... -j ACCEPT
    ip6tables -A INPUT ... -j ACCEPT
    # allow ...
    iptables -A INPUT ... -j ACCEPT
    ip6tables -A INPUT ... -j ACCEPT

  14. #179
    Join Date
    Dec 2007
    Location
    The Netherlands - Eindhoven
    Posts
    1,767
    True, if "ip6tables -A INPUT -j DROP" for some reason doesn't execute correctly
    Or if you don't have a default firewall running

    it works either way

  15. #180

    IPv6 support

    My ISP has started rolling IPv6 and offers native IPv6 dual-stacked with IPv4. The requirements are as follows: the router should support PPPoE Ipv6 and Prefix Delegation via DHCPv6. Also, I have to write "ipv6" in the Service Name box. I currently connect via PPPoE, using an Asus WL500gP v1 with DD-WRT, which apparently doesn't support the reqs. above.
    I'd like to try Oleg's, but before I start flashing again, can anyone tell me if those 2 features are supported by Oleg's firmware?
    • PPPoE Ipv6
    • Prefix Delegation via DHCPv6

Page 12 of 13 FirstFirst ... 210111213 LastLast

Similar Threads

  1. New oleg firmware version
    By Lesiuk in forum WL-500gP Firmware Discussion
    Replies: 713
    Last Post: 13-05-2016, 04:55
  2. Broadcom 63xx SOCs support in linux-mips and OpenWrt
    By goundoulf in forum WL-600g Firmware Discussion
    Replies: 0
    Last Post: 22-10-2008, 17:48
  3. About to remove IPv6 support from the firmware
    By Oleg in forum WL-500g Firmware Releases
    Replies: 7
    Last Post: 25-04-2008, 18:51
  4. HOWTO use your WL-500g as IPv6 router
    By phedny in forum WL-500g/WL-500gx Tutorials
    Replies: 8
    Last Post: 17-02-2008, 07:19

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •