Subject: Re: IPv6 oddities...
To: Secret Asian Man <cchen@nougat.org>
From: Jun-ichiro itojun Hagino <itojun@iijlab.net>
List: current-users
Date: 10/21/2000 00:23:37
>Have a GIF tunnel to my 6bone peer, like so:
>
>gif0: flags=8111<UP,POINTOPOINT,PROMISC,MULTICAST> mtu 1280
> tunnel inet xxx.6.xxx.185 --> xxx.220.xxx.249
> inet6 fe80::a00:xxxx:fe1f:e385%gif0 -> :: prefixlen 64 scopeid 0x4
> inet6 3ffe:xxx:x:x::39 -> 3ffe:xxx:x:x::38 prefixlen 127
use either of the following.
# ifconfig gif0 inet6 3ffe:xxx:x:x::39 3ffe:xxx:x:x::38 prefixlen 128 \
alias
OR
# ifconfig gif0 inet6 3ffe:xxx:x:x::39 prefixlen 127 alias
you are now using two address with /127:
# ifconfig gif0 inet6 3ffe:xxx:x:x::39 3ffe:xxx:x:x::38 prefixlen 127 \
alias
which is rather ambiguous/redundant.
itojun