I can't get my server to correctly forward IPv6 traffic. I have done everything that I possible can understand. I have literally been trying to figure this out for over 24 straight hours. Help would be greatly appreciated. This really is my last option, I don't tend to rely on the community too much. Thank you kind souls ;]
server 2001:470:a:xxx::1/64
client 2001:470:a:xxx::2/64
routed ipv6 prefix 2001:470:b:xxx::/64
Interfaces
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.0.254.140
netmask 255.255.255.0
gateway 192.0.254.1
# Adding IPv6 address to the eth0 interface.
# Adding an IPv6 route to the he-ipv6 Client IPv6 Endpoint.
up ip -6 addr add 2001:470:b:xxx::60/64 dev eth0
up ip -6 route add 2001:470:a:xxx::2/64 dev eth0
# Interface down
down ip -6 addr del 2001:470:b:xxx::60/64 dev eth0
down ip -6 route del 2001:470:a:xxx::2/64 dev eth0
auto eth1
iface eth1 inet dhcp
auto eth2
iface eth2 inet dhcp
auto ath0
iface ath0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
# IPv6 via Hurricane Electric Tunnel
auto he-ipv6
iface he-ipv6 inet6 v4tunnel
endpoint 216.218.226.238
address 2001:470:a:xxx::2
gateway 2001:470:a:xxx::1
local xx.xx.xx.xx
netmask 64
ttl 255
up ip -6 route add default dev he-ipv6
down ip -6 route del default dev he-ipv6
RADVD.conf
interface eth0
{
AdvSendAdvert on;
prefix 2001:470:b:xxx::/64
{
AdvOnLink on;
AdvAutonomous on;
AdvRouterAddr on;
};
};
ifconfig
eth0 Link encap:Ethernet HWaddr 00:14:d1:20:51:98
inet addr:192.0.254.140 Bcast:192.0.254.255 Mask:255.255.255.0
inet6 addr: fe80::214:d1ff:fe20:5198/64 Scope:Link
inet6 addr: 2001:470:a:xxx::1/64 Scope:Global
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:8051101 errors:0 dropped:0 overruns:0 frame:0
TX packets:16302366 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:613371975 (613.3 MB) TX bytes:23273044793 (23.2 GB)
Interrupt:17 Base address:0x8000
eth1 Link encap:Ethernet HWaddr 00:1b:fc:4c:9c:87
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:333 errors:0 dropped:0 overruns:0 frame:0
TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:35484 (35.4 KB) TX bytes:2228 (2.2 KB)
Interrupt:23 Base address:0xc000
he-ipv6 Link encap:IPv6-in-IPv4
inet6 addr: fe80::414a:7212/128 Scope:Link
inet6 addr: 2001:470:a:xxx::2/64 Scope:Global
UP POINTOPOINT RUNNING NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:6 dropped:0 overruns:0 carrier:6
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:119 errors:0 dropped:0 overruns:0 frame:0
TX packets:119 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:11894 (11.8 KB) TX bytes:11894 (11.8 KB)
once again I appreciate all of your help.