igmpproxy icon indicating copy to clipboard operation
igmpproxy copied to clipboard

IGMP multicast routing daemon

Results 49 igmpproxy issues
Sort by recently updated
recently updated
newest added

If not fix , this timer execute every 10s or more。 The variable secs must be assigned and less than 3.Because the timer cycle each 3 seconds.

Dear authors: I have a problem when deploy pimd router in a vm. Could you please give some advice to fix? Thanks in advance. My topo looks link this: physical...

igmpproxy currently lacks a SIGHUP handler to reread the config. Going to implement this as follows. This will be based upon my rework of ifvc.c for issue #62 1. loadconfig...

This has been reported before I think, but because freebsd creates multiple logical interfaces for one actual, the default value of 40 for MAX_IF is often not sufficient. In my...

` timeout->tv_sec = (secs > 3) ? 3 : secs; // aimwang: set max timeout` pselect return max timeout is 3 seconds not secs when Rt==0

If the conf->queryInterval was much larger than upstream. The igmp snooping will kick out the membership of igmpproxy member. This commit forward upstream MembershipQuery to downstream, ensure that the MembershipReport...

I keep seeing the following error showing up in the system log. Any ideas what these are referencing? 2020-03-13 10:55:24 User.Warning 192.168.150.1 Mar 13 10:55:24 BigBlue igmpproxy[6239]: MRT_DROP_MEMBERSHIP failed; Errno(99):...

diff --git a/src/igmpproxy.c b/src/igmpproxy.c index 9d1172b..46a659b 100644 --- a/src/igmpproxy.c +++ b/src/igmpproxy.c @@ -297,7 +297,7 @@ void igmpProxyRun(void) { timeout = NULL; } else { timeout->tv_nsec = 0; **- timeout->tv_sec =...

when i read the code correct: ``` - acceptLeaveMessage ... calls - setRouteLastMemberMode ... if (numberOfInterfaces(croute)

My configuration: WAN: network 10.10.6.0/23 iface mvneta2 (10.10.7.95) LAN: network 10.14.0.0/24 iface mvneta1 (10.14.0.1) I am testing multicast with host source in LAN and host receiver in WAN - host...