Hi guys
I've been struggling to get my tunnel to work with my current setup.
I'm with Virgin Media on the 50Mb service - I'm starting to believe it may be the modems doing..
I've got a Linksys/Cisco WRT610N flashed with the latest version of DD-WRT.
I'm also seeing conflicting blog posts about what forms the address - should part of it be my wans mac or the 200:00ff:fe00:0000/64 that most tutorials seem to have..
Startup Configip tunnel add he-ipv6 mode sit remote 216.66.80.26 ttl 64 (216.66.80.26 being the IPv4 Tunnel Server)
ip link set he-ipv6 up
ip addr add XXXX:XXX:XXXX:XXX::1/64 dev he-ipv6 (XXXX:XXX:XXXX:XXX::1/64 being the IPv6 Tunnel Server)
ip route add ::/0 dev he-ipv6
ip addr add XXXX:XXX:XXXX:XXX:200:00ff:fe00:0000/64 dev br0 (XXX:XXX:XXXX:XXX being my routed /64 address - should the second part be the mac of my wan nic?)
Firewall Configinsmod ip6t_REJECT
ip6tables -F
ip6tables -A FORWARD -p tcp -i he-ipv6 &#-106;syn -m multiport &#-106;dports ftp-data,ftp,ssh,smtp,http,https,ntp,domain -j ACCEPT
ip6tables -A FORWARD -p tcp -i he-ipv6 &#-106;syn -j REJECT &#-106;reject-with adm-prohibited
ip6tables -A FORWARD -p udp -i he-ipv6 -m multiport &#-106;dports ntp,domain -j ACCEPT
ip6tables -A FORWARD -p udp -i he-ipv6 -j REJECT &#-106;reject-with adm-prohibited
I've enabled IPv6 under the management tab and radvd.
Radvd Configinterface br0
{
AdvSendAdvert on;
prefix XXXX:XXX:XXXX:XXX::/64 (XXXX:XXX:XXXX:XXX::/64 being my routed /64 address)
{
AdvOnLink on;
AdvAutonomous on;
};
};
Any help is greatly appreciated

Thanks