You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
931 B
19 lines
931 B
--- a/src/igmp.c
|
|
+++ b/src/igmp.c
|
|
@@ -139,8 +139,14 @@
|
|
return;
|
|
}
|
|
else if(!isAdressValidForIf(checkVIF, src)) {
|
|
- my_log(LOG_WARNING, 0, "The source address %s for group %s, is not in any valid net for upstream VIF.",
|
|
- inetFmt(src, s1), inetFmt(dst, s2));
|
|
+ struct IfDesc *downVIF = getIfByAddress(src);
|
|
+ if (downVIF && downVIF->state & IF_STATE_DOWNSTREAM) {
|
|
+ my_log(LOG_NOTICE, 0, "The source address %s for group %s is from downstream VIF. Ignoring.",
|
|
+ inetFmt(src, s1), inetFmt(dst, s2));
|
|
+ } else {
|
|
+ my_log(LOG_WARNING, 0, "The source address %s for group %s, is not in any valid net for upstream VIF.",
|
|
+ inetFmt(src, s1), inetFmt(dst, s2));
|
|
+ }
|
|
return;
|
|
}
|
|
|
|
|