Joined: 02 Mar 2009 Posts: 135 Location: Phoenix, Az
Posted: Fri May 01, 2009 2:35 am Post subject: IPv6, V24 .. please help
I am a home user. My provider, Cox, supports IPv6. Installing IPv6 on my Xp platform works great plugged directly into the cable modem..
Following the various examples on how to configure IPv6 in dd-wrt and doing the things suggested to make V24 work I still cant get it...
Im running Mega, I have lots of jffs avaliable.
DD-WRT v24-sp2 (03/27/09) mega - build 11793M NEWD Eko
Im mostly default settings...
Can someone please give me some help. Maybe some config for Radvd and startup scripts to get this to work please
Again I can hook the computer directly to the cable modem and do ping6 and resolve/use IPv6 like ipv6.google.com. But adding in the router and it no longer works with any suggested script/config i have found.
Joined: 02 Mar 2009 Posts: 135 Location: Phoenix, Az
Posted: Fri May 01, 2009 4:06 am Post subject:
hooking my computer directly to the cable modem and doing a ipconfig /all it looks like it uses
"Tunneling adapter 6to4 tunneling psuedo-adapter"
This gets a IPv6 gateway and IP...
My ping6 to google does seem right showing a 2001: address rather then when im connected to the router which then returns a fe80: when i do the same command.
Try 11296. Note that these are test builds, and they are still working on them. Don't expect them to be fully functional or working perfectly. If they were, they would be SP2, not pre-sp2.
Might also try 12030, but I don't think I saw any IPv6 comments in trac.
I tried following every tutorial I could find on setting up IPv6 a couple months back to no avail.. I finally gave up on it. I'd love to see the solution if one ever comes to be though!
Joined: 26 Jan 2008 Posts: 5860 Location: Out'a Here
Posted: Mon May 04, 2009 1:16 pm Post subject:
Make sure you guys file a bug report in trac. If you don't, you can't be sure that the devs will see this thread. _________________ 4 X Wrt54GL V1.1
2 X Wrt54g-TM
1 X Wrt300n V1.1
1 X wrt350n
1 X wrt600n
1 X wrt610n
1 x Wrt54g V3
1 x wrt54g V5
1 x wrt54gs V5
1 x wrt54g V8
1 x wrtgs2 V1
1 X Wap54g V2
1 X Asus RT-N16 OTW
2 X WSB24
6 X +7dbi Antenna's
Hi,
Xymox, I am using IPv6 without any problems.
Current version dd-wrt.v24-12031_VINT_mega.
To load radvd you need to radvd -C /tmp/radvd.conf start (but it is included in the command script below).
Also make sure where is your IPv6 module, mine in VINT ver is in /lib/modules/2.4.35/ipv6.o (in NEWD it is in different location)
I use tun6to4, and following scripts:
Radvd config
#insmod /lib/modules/2.4.36/ipv6.o
insmod /lib/modules/2.4.35/ipv6.o
sleep 5
radvd -C /tmp/radvd.conf start
sleep 5
WANIP=$(ip -4 addr show dev vlan1 | grep 'inet ' | awk '{print $2}' | cut -d/ -f1)
if [ -n "$WANIP" ]
then
V6PREFIX=$(printf '2002:%02x%02x:%02x%02x' $(echo $WANIP | tr . ' '))
ip tunnel add tun6to4 mode sit ttl 255 remote any local $WANIP
ip link set tun6to4 mtu 1280
ip link set tun6to4 up
ip addr add $V6PREFIX:0::1/16 dev tun6to4
ip addr add $V6PREFIX:1::1/64 dev br0
ip -6 route add 2000::/3 via ::192.88.99.1 dev tun6to4
kill -HUP $(cat /var/run/radvd.pid)
fi
And again, it works great for me.
Good Luck
Pandora-Box _________________ WRT54GS & WRT610N
Initial IPconfig shows i get a v6 IP and a v6 gateway but nothing IPv6 pings. See attached initial.gif
Hook the computer directly to cable modem and reset network adapter.
I now get some sort of 6to4 tunnel in windows.
See attached cabledirect.gif
Hook the computer back to the router and reset the adapter. See attached backtowrt.gif
IT WORKS !..... Hmmmmm.......
Maybe the computer is getting something from the cable modem direct connection that lingers past the network reset ?
Reboot computer...
It still works !
Reboot router,,,, no longer works...
If I then connect the computer again it will work until I reboot the router...
SOoOOOoOo.....
It seems my connecting the XP computer directly to the cable modem is gaining some information in the direct connection with the cable modem that gets shared with the router once I connect it back to the router.
Thats very very weird...
Its completely repeatable...
The computer is doing DHCP.
Reboot router, reboot computer - no IPv6 pings
connect computer to cable modem - pings
connect computer to router - pings
reboot computer - pings
reboot router - no more ping
There is something that the router is not passing along to the computer, or not getting from the modem, that somehow the computer gets and passes back to the router when connected to the lan side.