What's new

IPV6 DUID

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

I take it the router's coming up and just presuming it can use the range still
and not informing the isp end as such?
 
No, it was more that that. There was no advertisement at all from Sky until the router sent a request first.
 
im in over my head im a hack at best..

i tried
odhcp6c -df -R -s /tmp/dhcp6c -N force -k -c 00030001000000000000 -FP 0:56108 -r23 -r24 -r82 -r83 eth0
instead of
odhcp6c -df -R -s /tmp/dhcp6c -N try -k -c 00030001000000000000 -FP 0:56108 -r23 -r24 -r82 -r83 eth0
which didnt work
and actually ends up with nothing at all on the ipv6 side
 
'-N force' would have been my first guess as well.

odhcp6c is actually started multiple times in the boot sequence. You may need to do something similar to what I had to do, make the 'force' a one shot, only the first time it's called, then go back to 'try'.
 
There is also a 2nd issue where for no apparent reason occasionally sky's dhcp will take between 20 and 40 min to send the prefix. Seems to happen about 10% of the time. Not a asuswrt issue that one as people on other devices have reported it also.
 
Added option to prevent sending a RELEASE request at odhcp6c shutdown.
 
Added option to prevent sending a RELEASE request at odhcp6c shutdown.

thanks merlin
did you force it to poke the isp like john

Update-19E1 Highlights (full changelog is in the zip files)
  • Update OpenVPN to 2.3.12
  • Support prefix lengths other than 64 for native IPv6
  • New IPv6 options required by some ISPs
    • Prefix delegation requires address request
      Some ISPs require an active address request to provide an IPv6 prefix. Sky UK and at least one Singapore ISP are known to require this setting. The default for this setting is not to do this special handling.
    • Release addresses on exit
      Some ISPs are providing 'sticky' IPv6 addresses vs static addresses. The default behavior is to release all IPv6 addresses on exit/reboot, at which time new addresses may be assigned. This option prevents the release and keeps the same addresses following the restart.
    The default settings maintain the behavior of previous levels, so if IPv6 is working correctly on earlier levels, there is no need to make any changes.

http://www.snbforums.com/threads/ipv6-duid.34523/page-2#post-279969

edit nope its not pokeing the isp on boot

on boot
Untitled.jpg


kill and restart with exact command
image.jpg


image.jpg
 
Last edited:
as a temp workaround until someone more skilled than me does a clean fix

release prefix on exit = Disable in ipv6

/jffs/services/services-start
Code:
#!/bin/sh

ifconfig eth0:1 192.168.100.2 (to access my modem)
sleep 5
killall odhcp6c
odhcp6c -df -R -s /tmp/dhcp6c -N try -c 00030001000000000000 -FP 0:56108 -r23 -r24 -r82 -r83 -k eth0

(works without sleep 5 but just playing it safe)
(if you are getting problems try sleep 0 sleep 10 sleep 15 etc until one works for you)
 
Last edited:

Similar threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top