[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
(usagi-users 00837) Re: IPV6 errors,how to solve the problems
In article <Pine.LNX.4.10.10110032206200.20998-100000@xxxxxxxxxxxx> (at Wed, 3 Oct 2001 22:10:37 +0300 (EEST)), Yaroslav Popovitch <yp@xxxxxxx> says:
> I aplied usagi patch to kernel-2.4.10
> (linux23-usagi-20010930,20011003),but got such messages
~~24?22?
> __ipv6_update_tmpid(idev=c19f0000): cannot get EUI64 identifier; use
> random bytes.
> igmp6: eth0 no linklocal address
>
> Where is the problem, and how to solve it?
Please just ignore them.
First one should came from the "lo" device; it does not have
EUI-64 identifier.
The senario of the second one should be:
1) We should send MLD Report message when joining a group
other than the link-local scope all-node multicast address.
2) At first, when an interface going up, a link-local address is
automatically generated and assigned on the device.
3) When doing DAD for an address including the link-local address,
we must join solicited multicast address for it.
4) Kernel trys to send a MLD message for the solicited multicast address,
but it does not have any appropriate source (link-local scope)
address at this moment. Kernel complains about it.
--yoshfuji