[Gllug] Still struggling to set up IPv6 on a debian etch box
Anthony Newman
anthony.newman at ossified.net
Sun Feb 24 14:51:40 UTC 2008
John Winters wrote:
> ip tunnel add mytunl mode sit remote 81.187.81.6
> ip link set mytunl up
> ip route add 2000::0/3 via ::81.187.81.6
>
> but the last command fails with the error message:
>
> RTNETLINK answers: No route to host
FWIW, a v6-in-v4 tunnel I run over an OpenVPN link to give me a /64 on
my laptop wherever I have a v4 internet connection is set up on the
client side as follows:
ip tunnel add sit1 mode sit remote 172.24.128.1 local 172.24.128.2 ttl 64
ip link set up sit1
ip addr add 2001:6F8:96C:1::2/64 dev sit1
ip route add 2000::/3 dev sit1
And on the "master" (which happens to use sit2 because sit1 is used with
my tunnel broker to give me an IPv6 default route), and with a /64
routed to the "client":
ip tunnel add sit2 mode sit remote 172.24.128.2 local 172.24.128.1 ttl 64
ip link set up sit2
ip addr add 2001:6f8:96c:1::1/64 dev sit2
ip route add 2001:6f8:96c:1::/64 dev sit2
sysctl -w net.ipv6.conf.all.forwarding=1
Ant
--
Gllug mailing list - Gllug at gllug.org.uk
http://lists.gllug.org.uk/mailman/listinfo/gllug
More information about the GLLUG
mailing list