I'm having trouble getting my hurricane electric tunnel set up on a fremont-based linode.
I've set the IPv4 endpoint to my Linode's IP, tried the suggested configuration options (from tunnelbroker.net).
From browsing through the linode forums I found the following script:
Code:
#!/bin/sh
#
# Tunnel from HE - www.tunnelbroker.net
#
export IPV4="65.19.178.122"
export IPV6="2001:470:1F00:FFFF::E77"
#
ip tunnel add sixbone mode sit remote 64.71.128.82 local $IPV4 ttl 255
ip link set sixbone up
ip addr add $IPV6 dev sixbone
ip route add ::/0 dev sixbone
The linode is a clean install of Ubuntu 6.06. After running the script, I can't ping6 any ipv6 host. Can't even ping6 the server endpoint of the tunnel 2001:470:1F00:FFFF::E76.
Traceroutes to the linode's ipv6 get as far as tserv1.fmt.ipv6.he.net (2001:470:1fff:0:2e0:feef:fe07:c000).
I *can* ping the IPv4 address of the tunnel broker server (64.71.128.82) with no problem.
I had my linode working fine before with the Sixxs AICCU client connected to the atlanta tunnel, but have sense migrated to the west coast for the improved latency to asia-pacific.
I'll post some other network info at the end of this post.
Can anybody shed some light on what I'm doing wrong?
Many thanks!
Code:
root@none:~ # ifconfig
eth0 Link encap:Ethernet HWaddr FE:FD:41:13:B2:7A
inet addr:65.19.178.122 Bcast:65.19.178.255 Mask:255.255.255.0
inet6 addr: fe80::fcfd:41ff:fe13:b27a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2331 errors:0 dropped:0 overruns:0 frame:0
TX packets:1607 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:216297 (211.2 KiB) TX bytes:271590 (265.2 KiB)
Interrupt:5
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:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:832 (832.0 b) TX bytes:832 (832.0 b)
sit0 Link encap:IPv6-in-IPv4
inet6 addr: ::65.19.178.122/96 Scope:Compat
inet6 addr: ::127.0.0.1/96 Scope:Unknown
UP RUNNING NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
sit1 Link encap:IPv6-in-IPv4
inet6 addr: fe80::4113:b27a/64 Scope:Link
inet6 addr: 2001:470:1f00:ffff::e77/64 Scope:Global
UP POINTOPOINT RUNNING NOARP MTU:1480 Metric:1
RX packets:1 errors:0 dropped:0 overruns:0 frame:0
TX packets:41 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:64 (64.0 b) TX bytes:5084 (4.9 KiB)
sixbone Link encap:IPv6-in-IPv4
inet6 addr: fe80::4113:b27a/128 Scope:Link
inet6 addr: 2001:470:1f00:ffff::e77/128 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:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)