Re: Problems on gated

A.N.Kuznetsov (kuznet@ms2.inr.ac.ru)
Tue, 14 Jan 1997 22:24:33 +0300


In article <Pine.LNX.3.93.970108215808.2879C-100000@filesrv1.baby-dragons.com> you wrote:

: Whether or not Linux's flavor of PPP will accept/send
: 'Multicast packets', is another Question.

gated cannot use multicasting on pointopoint interfaces in Linux.

Depending on tastes, it can be considered as Linux bug
or BSD bug. I prefer to consider it as BSD API bug 8-)

Workaround:

If all pointopoint interfaces have unique addresses,
change line in task.c (gated source tree):

mreq.imr_interface = sock2in(ifap->ifa_addr); /* struct copy */

with

mreq.imr_interface = sock2in(ifap->ifa_addr_local); /* struct copy */

Alexey Kuznetsov.