Subject: Re: IPv6 nd6_lookup: failed to add route...
To: Secret Asian Man <cchen@nougat.org>
From: Jun-ichiro itojun Hagino <itojun@iijlab.net>
List: current-users
Date: 10/05/2000 17:46:22
>Running 1.5G on a Sparc 5, with a single gif tunnel to my 6bone peer. Since I ave only one connection, I'm running with a static route, i.e.
>route add -inet6 default 3ffe:a00:2:2::38
from IPv6 specification, you must not do this. under IPv6,
the nexthop address has to be link-local address (starting from
"fe80").
the recommended way to do this is either of the following:
- route add -inet6 default fe80::xxxxx
- route add -inet6 default ::1
then
route change -inet6 default -ifp gif0
(give two commands)
itojun