Igmpproxy noworking
-
igmpproxy noworking
-
ding
-
anybody!!!!
-
what is the version of pfSense? I can't see this package at all.
-
what is the version of pfSense? I can't see this package at all.
This is version 1.2.3-RC1 :) I can not run the service through the web interface
-
To run this service you should specify downstream interface(s) first and then upstream interface. I think it's igmpproxy.conf parsing problem.
But if you want to restart the service you will not be able to do it from Status->Services. I do not know why, may be it is somehow related to the fact that igmpproxy.cfg is located not in /usr/local/etc but in /tmp.And the main problem here is that even if you get it up and running it does not work properly.
Here is what I get in debug mode:igmpproxy, Version 0.1 beta2, Build 090427 Copyright 2005 by Johnny Egeland <johnny@rlo.org> Distributed under the GNU GENERAL PUBLIC LICENSE, Version 2 - check GPL.txt Debu: Searching for config file at '/tmp/igmpproxy.conf' Debu: Config: Quick leave mode enabled. Debu: Config: Got a phyint token. Debu: Config: IF: Config for interface bge0. Debu: Config: IF: Got downstream token. Debu: Config: IF: Got ratelimit token '0'. Debu: Config: IF: Got threshold token '1'. Debu: Config: IF: Got altnet token 224.0.0.0/4. Debu: Config: IF: Altnet: Parsed altnet to 224/4. Debu: IF name : bge0 Debu: Next ptr : 0 Debu: Ratelimit : 0 Debu: Threshold : 1 Debu: State : 2 Debu: Allowednet ptr : 2820c030 Debu: Config: Got a phyint token. Debu: Config: IF: Config for interface bge1. Debu: Config: IF: Got upstream token. Debu: Config: IF: Got ratelimit token '0'. Debu: Config: IF: Got threshold token '1'. Debu: Config: IF: Got altnet token 224.0.0.0/4. Debu: Config: IF: Altnet: Parsed altnet to 224/4. Debu: IF name : bge1 Debu: Next ptr : 0 Debu: Ratelimit : 0 Debu: Threshold : 1 Debu: State : 1 Debu: Allowednet ptr : 2820c040 Debu: Adding Physical Index value of IF 'bge0' is 1 Debu: buildIfVc: Interface bge0 Addr: 192.168.1.1, Flags: 0xffff8943, Network: 192.168.1/24 Debu: Adding Physical Index value of IF 'bge1' is 2 Debu: buildIfVc: Interface bge1 Addr: 192.168.7.171, Flags: 0xffff8843, Network: 192.168.7/24 Debu: Adding Physical Index value of IF 'lo0' is 6 Debu: buildIfVc: Interface lo0 Addr: 127.0.0.1, Flags: 0xffff8049, Network: 127/8 Debu: Found config for bge1 Note: adding VIF, Ix 0 Fl 0x0 IP 0x0101a8c0 bge0, Threshold: 1, Ratelimit: 0 Debu: Network for [bge0] : 192.168.1/24 Note: adding VIF, Ix 1 Fl 0x0 IP 0xab07a8c0 bge1, Threshold: 1, Ratelimit: 0 Debu: Network for [bge1] : 192.168.7/24 Debu: Network for [bge1] : 224/4 Debu: Got 262144 byte buffer size in 0 iterations Debu: Joining all-routers group 224.0.0.2 on vif 192.168.1.1 Note: joinMcGroup: 224.0.0.2 on bge0 Debu: SENT Membership query from 192.168.1.1 to 224.0.0.1 Debu: Sent membership query from 192.168.1.1 to 224.0.0.1\. Delay: 10 Debu: Created timeout 1 (#0) - delay 10 secs Debu: (Id:1, Time:10) Debu: Created timeout 2 (#1) - delay 21 secs Debu: (Id:1, Time:10) Debu: (Id:2, Time:21) Debu: Packet from 192.168.1.1: proto: 2 hdrlen: 20 iplen: 8 or 2048 Note: RECV Membership query from 192.168.1.1 to 224.0.0.1 (ip_hl 20, data 8) ^[[5~Debu: About to call timeout 1 (#0) Debu: Aging routes in table. Debu: Current routing table (Age active routes); ----------------------------------------------------- Debu: No routes in table... Debu: -------------------------------[/code] Then I run small program on my laptop connected to LAN and generating IGMP membership reports and indeed igmpproxy sees them: [code]Debu: Packet from 192.168.1.2: proto: 2 hdrlen: 20 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.1.2 to 224.0.0.22 (ip_hl 20, data 8) Debu: Should insert group 239.142.1.1 (from: 192.168.1.2) to route table. Vif Ix : 0 Debu: No existing route for 239.142.1.1\. Create new. Debu: No routes in table. Insert at beginning. Info: Inserted route table entry for 239.142.1.1 on VIF #0 Debu: Joining group 239.142.1.1 upstream on IF address 192.168.7.171 Note: joinMcGroup: 239.142.1.1 on bge1 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.142.1.1, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- [/code] But this IGMP packet never goes to WAN interface... Code from mcgroup.c: [code] { my_log( LOG_NOTICE, 0, "%sMcGroup: %s on %s", CmdSt, inetFmt( mcastaddr, s1 ), IfDp ? IfDp->Name : "<any>" ); } if( setsockopt( UdpSock, IPPROTO_IP, Cmd == 'j' ? IP_ADD_MEMBERSHIP : IP_DROP_MEMBERSHIP, (void *)&CtlReq, sizeof( CtlReq ) ) ) { my_log( LOG_WARNING, errno, "MRT_%s_MEMBERSHIP failed", Cmd == 'j' ? "ADD" : "DROP" ); return 1; } return 0; [/code] Code before setsockopt() is executed as we see it in dump. setsockopt() is then also executed without error as we do not see any errors but this setsockopt() call must generate IGMP membership report on WAN though it does not happen. Could anybody explain this please? Thanks.</any></johnny@rlo.org>
-
Ok, when I disable PF then I have IGMP packets on WAN.
What rule needs to be added to allow IGMP out of WAN interface? -
hi,
i've got the same problem as Eugene, is there any news on this subject?
(using 1.2.3-RC2 built on Wed Jul 22 03:48:08 EDT 2009, screenshots and logs in the german section: http://forum.pfsense.org/index.php/topic,17921.0.html ) -
It's not about rules, I misinterpreted my dumps. igmpproxy just doesn't generate membership request on upstream interface.
-
k, then we have exactly the same problem…
-
Please reinstall package and try.
-
hi,
big thx for looking into this problem!
sadly its still not working…
config:
http://forum.pfsense.org/index.php/topic,13312.msg92781.html#msg92781
new debug output:
# igmpproxy -d -c /tmp/igmpproxy.conf igmpproxy, Version 0.1 beta2, Build 090427 Copyright 2005 by Johnny Egeland <johnny@rlo.org>Distributed under the GNU GENERAL PUBLIC LICENSE, Version 2 - check GPL.txt Debu: Searching for config file at '/tmp/igmpproxy.conf' Debu: Config: Quick leave mode enabled. Debu: Config: Got a phyint token. Debu: Config: IF: Config for interface ng0. Debu: Config: IF: Got upstream token. Debu: Config: IF: Got ratelimit token '0'. Debu: Config: IF: Got threshold token '1'. Debu: Config: IF: Got altnet token 239.35.0.0/16. Debu: Config: IF: Altnet: Parsed altnet to 239.35/16. Debu: Config: IF: Got altnet token 217.0.119.0/24. Debu: Config: IF: Altnet: Parsed altnet to 217.0.119/24. Debu: Config: IF: Got altnet token 193.158.35.0/24. Debu: Config: IF: Altnet: Parsed altnet to 193.158.35/24. Debu: IF name : ng0 Debu: Next ptr : 0 Debu: Ratelimit : 0 Debu: Threshold : 1 Debu: State : 1 Debu: Allowednet ptr : 2820c030 Debu: Config: Got a phyint token. Debu: Config: IF: Config for interface em0. Debu: Config: IF: Got downstream token. Debu: Config: IF: Got ratelimit token '0'. Debu: Config: IF: Got threshold token '1'. Debu: Config: IF: Got altnet token 192.168.0.0/24. Debu: Config: IF: Altnet: Parsed altnet to 192.168.0/24. Debu: IF name : em0 Debu: Next ptr : 0 Debu: Ratelimit : 0 Debu: Threshold : 1 Debu: State : 2 Debu: Allowednet ptr : 2820c060 Debu: Adding Physical Index value of IF 'em0' is 1 Debu: buildIfVc: Interface em0 Addr: 192.168.0.10, Flags: 0xffff8943, Network: 192.168.0/24 Debu: Adding Physical Index value of IF 'lo0' is 8 Debu: buildIfVc: Interface lo0 Addr: 127.0.0.1, Flags: 0xffff8049, Network: 127/8 Debu: Adding Physical Index value of IF 'ng0' is 10 Debu: buildIfVc: Interface ng0 Addr: 79.238.123.175, Flags: 0xffff88d1, Network: 79.238.123.175/32 Debu: Found config for em0 Debu: Found config for ng0 Note: adding VIF, Ix 0 Fl 0x0 IP 0x0a00a8c0 em0, Threshold: 1, Ratelimit: 0 Debu: Network for [em0] : 192.168.0/24 Debu: Network for [em0] : 192.168.0/24 Note: adding VIF, Ix 1 Fl 0x0 IP 0xaf7bee4f ng0, Threshold: 1, Ratelimit: 0 Debu: Network for [ng0] : 79.238.123.175/32 Debu: Network for [ng0] : 239.35/16 Debu: Network for [ng0] : 217.0.119/24 Debu: Network for [ng0] : 193.158.35/24 Debu: Got 262144 byte buffer size in 0 iterations Debu: Joining all-routers group 224.0.0.2 on vif 192.168.0.10 Note: joinMcGroup: 224.0.0.2 on em0 Debu: SENT Membership query from 192.168.0.10 to 224.0.0.1 Debu: Sent membership query from 192.168.0.10 to 224.0.0.1\. Delay: 10 Debu: Created timeout 1 (#0) - delay 10 secs Debu: (Id:1, Time:10) Debu: Created timeout 2 (#1) - delay 21 secs Debu: (Id:1, Time:10) Debu: (Id:2, Time:21) Debu: Packet from 192.168.0.10: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.10 to 224.0.0.2 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.10: proto: 2 hdrlen: 20 iplen: 8 or 2048 Note: RECV Membership query from 192.168.0.10 to 224.0.0.1 (ip_hl 20, data 8) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.129.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 3 (#1) - delay 0 secs Debu: (Id:1, Time:10) Debu: (Id:3, Time:0) Debu: (Id:2, Time:21) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.129.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 4 (#2) - delay 1 secs Debu: (Id:1, Time:9) Debu: (Id:3, Time:0) Debu: (Id:4, Time:1) Debu: (Id:2, Time:20) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 239.35.129.11\. Create new. Debu: No routes in table. Insert at beginning. Info: Inserted route table entry for 239.35.129.11 on VIF #0 Debu: Joining group 239.35.129.11 upstream on IF address 79.238.123.175 Note: joinMcGroup: 239.35.129.11 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 239.35.129.11 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.129.11\. Starting last member detection. Debu: Leaving group 239.35.129.11 upstream on IF address 79.238.123.175 Note: leaveMcGroup: 239.35.129.11 on ng0 Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 5 (#3) - delay 1 secs Debu: (Id:1, Time:8) Debu: (Id:3, Time:0) Debu: (Id:4, Time:1) Debu: (Id:5, Time:1) Debu: (Id:2, Time:19) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.129.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 6 (#4) - delay 4 secs Debu: (Id:1, Time:4) Debu: (Id:3, Time:0) Debu: (Id:4, Time:1) Debu: (Id:5, Time:1) Debu: (Id:6, Time:4) Debu: (Id:2, Time:15) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.68.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.68.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 239.35.68.11\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting at beginning, before route 239.35.129.11 Info: Inserted route table entry for 239.35.68.11 on VIF #0 Debu: Joining group 239.35.68.11 upstream on IF address 79.238.123.175 Note: joinMcGroup: 239.35.68.11 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.68.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.68.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.68.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 239.35.68.11 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.255.255.250 (ip_hl 24, data 8) Debu: Should insert group 239.255.255.250 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 239.255.255.250\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting after route 239.35.129.11 Info: Inserted route table entry for 239.255.255.250 on VIF #0 Debu: Joining group 239.255.255.250 upstream on IF address 79.238.123.175 Note: joinMcGroup: 239.255.255.250 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.255.255.250 (ip_hl 24, data 8) Debu: Should insert group 239.255.255.250 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.255.255.250 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.68.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.68.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.68.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.68.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.68.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.68.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 239.255.255.250 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.10: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.10 to 224.0.0.2 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 239.255.255.250 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 224.0.0.251 (ip_hl 24, data 8) Debu: Should insert group 224.0.0.251 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 224.0.0.251\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting after route 239.255.255.250 Info: Inserted route table entry for 224.0.0.251 on VIF #0 Debu: Joining group 224.0.0.251 upstream on IF address 79.238.123.175 Note: joinMcGroup: 224.0.0.251 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 224.0.0.251 (ip_hl 24, data 8) Debu: Should insert group 224.0.0.251 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 224.0.0.251 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 224.0.0.251 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 217.0.119.33: proto: 2 hdrlen: 24 iplen: 12 or 3072 Note: RECV Membership query from 217.0.119.33 to 224.0.0.1 (ip_hl 24, data 12) Debu: About to call timeout 1 (#0) Debu: Aging routes in table. Debu: Current routing table (Age active routes); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: About to call timeout 3 (#1) Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 7 (#3) - delay 4 secs Debu: (Id:4, Time:1) Debu: (Id:5, Time:1) Debu: (Id:6, Time:4) Debu: (Id:7, Time:4) Debu: (Id:2, Time:11) Debu: About to call timeout 4 (#0) Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 8 (#3) - delay 1 secs Debu: (Id:5, Time:1) Debu: (Id:6, Time:4) Debu: (Id:7, Time:4) Debu: (Id:8, Time:1) Debu: (Id:2, Time:10) Debu: About to call timeout 5 (#0) Debu: Removing group 239.35.129.11\. Died of old age. Debu: Removed route entry for 239.35.129.11 from table. Note: Route is not active. No kernel updates done. Debu: Current routing table (Remove route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.68.11\. Starting last member detection. Debu: Leaving group 239.35.68.11 upstream on IF address 79.238.123.175 Note: leaveMcGroup: 239.35.68.11 on ng0 Debu: SENT Membership query from 192.168.0.10 to 239.35.68.11 Debu: Sent membership query from 192.168.0.10 to 239.35.68.11\. Delay: 10 Debu: Created timeout 9 (#3) - delay 1 secs Debu: (Id:6, Time:4) Debu: (Id:7, Time:4) Debu: (Id:8, Time:1) Debu: (Id:9, Time:1) Debu: (Id:2, Time:9) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.68.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.68.11 Debu: Sent membership query from 192.168.0.10 to 239.35.68.11\. Delay: 10 Debu: Created timeout 10 (#4) - delay 0 secs Debu: (Id:6, Time:4) Debu: (Id:7, Time:4) Debu: (Id:8, Time:1) Debu: (Id:9, Time:1) Debu: (Id:10, Time:0) Debu: (Id:2, Time:9) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.20.14 (ip_hl 24, data 8) Debu: Should insert group 239.35.20.14 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 239.35.20.14\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting after route 239.35.68.11 Info: Inserted route table entry for 239.35.20.14 on VIF #0 Debu: Joining group 239.35.20.14 upstream on IF address 79.238.123.175 Note: joinMcGroup: 239.35.20.14 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.20.14, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.20.14 (ip_hl 24, data 8) Debu: Should insert group 239.35.20.14 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.20.14 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.20.14, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 239.35.20.14 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.20.14 (ip_hl 24, data 8) Debu: Should insert group 239.35.20.14 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.20.14 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.20.14, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.20.14 (ip_hl 24, data 8) Debu: Should insert group 239.35.20.14 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.20.14 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.68.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.20.14, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 239.35.20.14 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: About to call timeout 6 (#0) Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 224.0.0.251 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 79.238.123.175: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.175 to 239.255.255.250 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: About to call timeout 7 (#0) Debu: About to call timeout 8 (#0) Debu: About to call timeout 9 (#0) Debu: SENT Membership query from 192.168.0.10 to 239.35.68.11 Debu: Sent membership query from 192.168.0.10 to 239.35.68.11\. Delay: 10 Debu: Created timeout 11 (#2) - delay 1 secs Debu: (Id:10, Time:0) Debu: (Id:2, Time:9) Debu: (Id:11, Time:1) Debu: About to call timeout 10 (#1) Debu: Removing group 239.35.68.11\. Died of old age. Debu: Removed route entry for 239.35.68.11 from table. Note: Route is not active. No kernel updates done. Debu: Current routing table (Remove route); ----------------------------------------------------- Debu: #0: Dst: 239.35.20.14, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- ^CWarn: select() failure; Errno(4): Interrupted system call Note: Got a interupt signal. Exiting. Debu: clean handler called Debu: Removing route entry for 239.35.20.14 Note: Route is not active. No kernel updates done. Debu: Leaving group 239.35.20.14 upstream on IF address 79.238.123.175 Note: leaveMcGroup: 239.35.20.14 on ng0 Debu: Removing route entry for 239.255.255.250 Note: Route is not active. No kernel updates done. Debu: Leaving group 239.255.255.250 upstream on IF address 79.238.123.175 Note: leaveMcGroup: 239.255.255.250 on ng0 Debu: Removing route entry for 224.0.0.251 Note: Route is not active. No kernel updates done. Debu: Leaving group 224.0.0.251 upstream on IF address 79.238.123.175 Note: leaveMcGroup: 224.0.0.251 on ng0 Note: All routes removed. Routing table is empty. Info: Shutdown complete.... #</johnny@rlo.org>
-
Can you please do tcpdump -ni <wan interface="">to see wheter you have IGMP packets there?
And please show you netstat -rn</wan> -
# netstat -rn Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 217.0.119.33 UGS 0 326 ng0 79.238.118.101 lo0 UHS 0 0 lo0 127.0.0.1 127.0.0.1 UH 0 0 lo0 192.168.0.0/24 link#1 UC 0 0 em0 192.168.0.1 00:24:8c:be:e0:3b UHLW 1 211026 em0 1161 192.168.0.2 00:22:15:17:04:ff UHLW 1 20846 em0 1192 217.0.85.18 217.0.119.33 UGHS 0 23 ng0 217.0.119.33 79.238.118.101 UH 2 0 ng0 Internet6: Destination Gateway Flags Netif Expire ::1 ::1 UHL lo0 fe80::%em0/64 link#1 UC em0 fe80::219:dbff:fee3:8969%em0 00:19:db:e3:89:69 UHL lo0 fe80::%em1/64 link#2 UC em1 fe80::219:dbff:fee3:896a%em1 00:19:db:e3:89:6a UHL lo0 fe80::%ath0/64 link#4 UC ath0 fe80::21d:fff:feb4:b378%ath0 00:1d:0f:b4:b3:78 UHL lo0 fe80::%lo0/64 fe80::1%lo0 U lo0 fe80::1%lo0 link#8 UHL lo0 fe80::%vlan0/64 link#9 UC vlan0 fe80::219:dbff:fee3:8969%vlan0 00:19:db:e3:89:6a UHL lo0 fe80::%ng0/64 link#10 UC ng0 fe80::219:dbff:fee3:8969%ng0 link#10 UHL lo0 ff01:1::/32 link#1 UC em0 ff01:2::/32 link#2 UC em1 ff01:4::/32 link#4 UC ath0 ff01:8::/32 ::1 UC lo0 ff01:9::/32 link#9 UC vlan0 ff01:a::/32 link#10 UC ng0 ff02::%em0/32 link#1 UC em0 ff02::%em1/32 link#2 UC em1 ff02::%ath0/32 link#4 UC ath0 ff02::%lo0/32 ::1 UC lo0 ff02::%vlan0/32 link#9 UC vlan0 ff02::%ng0/32 link#10 UC ng0 #
using tcpdump -ni ng0 i see no multicast traffic on the wan interface… (just a few packets the isp sends every ~30 seconds, but nothing happens when using iptv...)
-
please try to add one route
route add -host 224.0.0.2 217.0.119.33
then
tcpdump -ni ng0 igmp
and run your iptv app -
still just the stuff that the isp sends to me every ~20 sec
wan port:
# tcpdump -ni ng0 igmp tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on ng0, link-type NULL (BSD loopback), capture size 96 bytes 09:38:42.613031 IP 217.0.119.33 > 224.0.0.1: igmp query v3 09:38:57.792866 IP 217.0.119.33 > 224.0.0.1: igmp query v3 ^C 2 packets captured 17 packets received by filter 0 packets dropped by kernel #
lan port(while switching between multiple channels):
# tcpdump -ni em0 igmp tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on em0, link-type EN10MB (Ethernet), capture size 96 bytes 09:38:38.308577 IP 192.168.0.2 > 239.35.10.1: igmp v2 report 239.35.10.1 09:38:38.737434 IP 192.168.0.2 > 239.35.10.1: igmp v2 report 239.35.10.1 09:38:54.032574 IP 192.168.0.2 > 224.0.0.2: igmp leave 239.35.10.1 09:38:54.033054 IP 192.168.0.10 > 239.35.10.1: igmp query v2 [gaddr 239.35.10.1] 09:38:54.033222 IP 192.168.0.10 > 239.35.10.1: igmp query v2 [gaddr 239.35.10.1] 09:38:54.038815 IP 192.168.0.2 > 239.35.10.2: igmp v2 report 239.35.10.2 09:38:54.239567 IP 192.168.0.2 > 239.35.10.2: igmp v2 report 239.35.10.2 09:39:00.530253 IP 192.168.0.10 > 239.35.10.1: igmp query v2 [gaddr 239.35.10.1] 09:39:00.576687 IP 192.168.0.2 > 224.0.0.2: igmp leave 239.35.10.2 09:39:00.576889 IP 192.168.0.10 > 239.35.10.2: igmp query v2 [gaddr 239.35.10.2] 09:39:00.577177 IP 192.168.0.10 > 239.35.10.2: igmp query v2 [gaddr 239.35.10.2] 09:39:00.582808 IP 192.168.0.2 > 239.35.129.11: igmp v2 report 239.35.129.11 09:39:00.739713 IP 192.168.0.2 > 239.35.129.11: igmp v2 report 239.35.129.11 09:39:04.329303 IP 192.168.0.10 > 239.35.10.1: igmp query v2 [gaddr 239.35.10.1] 09:39:05.242960 IP 192.168.0.2 > 224.0.0.2: igmp leave 239.35.129.11 09:39:05.243242 IP 192.168.0.10 > 239.35.129.11: igmp query v2 [gaddr 239.35.129.11] 09:39:05.243578 IP 192.168.0.10 > 239.35.129.11: igmp query v2 [gaddr 239.35.129.11] ^C 17 packets captured 53 packets received by filter 0 packets dropped by kernel #
-
And routing table now please?
netstat -rn
what version of pfSense by the way? -
# route add -host 224.0.0.2 217.0.119.33 add host 224.0.0.2: gateway 217.0.119.33 # netstat -rn Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 217.0.119.33 UGS 0 12873021 ng0 79.238.123.48 lo0 UHS 0 0 lo0 127.0.0.1 127.0.0.1 UH 0 0 lo0 192.168.0.0/24 link#1 UC 0 0 em0 192.168.0.1 00:24:8c:be:e0:3b UHLW 1 13675233 em0 1200 192.168.0.2 00:22:15:17:04:ff UHLW 1 251378 em0 1121 217.0.85.18 217.0.119.33 UGHS 0 2295 ng0 217.0.119.33 79.238.123.48 UH 3 0 ng0 224.0.0.2 217.0.119.33 UGHS 0 0 ng0 Internet6: Destination Gateway Flags Netif Expire ::1 ::1 UHL lo0 fe80::%em0/64 link#1 UC em0 fe80::219:dbff:fee3:8969%em0 00:19:db:e3:89:69 UHL lo0 fe80::%em1/64 link#2 UC em1 fe80::219:dbff:fee3:896a%em1 00:19:db:e3:89:6a UHL lo0 fe80::%ath0/64 link#4 UC ath0 fe80::21d:fff:feb4:b378%ath0 00:1d:0f:b4:b3:78 UHL lo0 fe80::%lo0/64 fe80::1%lo0 U lo0 fe80::1%lo0 link#8 UHL lo0 fe80::%vlan0/64 link#9 UC vlan0 fe80::219:dbff:fee3:8969%vlan0 00:19:db:e3:89:6a UHL lo0 fe80::%ng0/64 link#10 UC ng0 fe80::219:dbff:fee3:8969%ng0 link#10 UHL lo0 ff01:1::/32 link#1 UC em0 ff01:2::/32 link#2 UC em1 ff01:4::/32 link#4 UC ath0 ff01:8::/32 ::1 UC lo0 ff01:9::/32 link#9 UC vlan0 ff01:a::/32 link#10 UC ng0 ff02::%em0/32 link#1 UC em0 ff02::%em1/32 link#2 UC em1 ff02::%ath0/32 link#4 UC ath0 ff02::%lo0/32 ::1 UC lo0 ff02::%vlan0/32 link#9 UC vlan0 ff02::%ng0/32 link#10 UC ng0
using: 1.2.3-RC2 built on Sat Aug 22 04:59:31 UTC 2009 FreeBSD 7.2-RELEASE-p3 i386
-
For testing purposes let's try to route all multicast to upstream interface
route add -net 224.0.0.0/4 217.0.119.33
Then please run igmpproxy -d -c /tmp/igmpproxy.conf and tcpdump's from downstream and upstream interfaces.
Thank you. -
# igmpproxy -d -c /tmp/igmpproxy.conf igmpproxy, Version 0.1 beta2, Build 090427 Copyright 2005 by Johnny Egeland <johnny@rlo.org>Distributed under the GNU GENERAL PUBLIC LICENSE, Version 2 - check GPL.txt Debu: Searching for config file at '/tmp/igmpproxy.conf' Debu: Config: Quick leave mode enabled. Debu: Config: Got a phyint token. Debu: Config: IF: Config for interface ng0. Debu: Config: IF: Got upstream token. Debu: Config: IF: Got ratelimit token '0'. Debu: Config: IF: Got threshold token '1'. Debu: Config: IF: Got altnet token 239.35.0.0/16. Debu: Config: IF: Altnet: Parsed altnet to 239.35/16. Debu: Config: IF: Got altnet token 217.0.119.0/24. Debu: Config: IF: Altnet: Parsed altnet to 217.0.119/24. Debu: Config: IF: Got altnet token 193.158.35.0/24. Debu: Config: IF: Altnet: Parsed altnet to 193.158.35/24. Debu: IF name : ng0 Debu: Next ptr : 0 Debu: Ratelimit : 0 Debu: Threshold : 1 Debu: State : 1 Debu: Allowednet ptr : 2820c030 Debu: Config: Got a phyint token. Debu: Config: IF: Config for interface em0. Debu: Config: IF: Got downstream token. Debu: Config: IF: Got ratelimit token '0'. Debu: Config: IF: Got threshold token '1'. Debu: Config: IF: Got altnet token 192.168.0.0/24. Debu: Config: IF: Altnet: Parsed altnet to 192.168.0/24. Debu: IF name : em0 Debu: Next ptr : 0 Debu: Ratelimit : 0 Debu: Threshold : 1 Debu: State : 2 Debu: Allowednet ptr : 2820c060 Debu: Adding Physical Index value of IF 'em0' is 1 Debu: buildIfVc: Interface em0 Addr: 192.168.0.10, Flags: 0xffff8943, Network: 192.168.0/24 Debu: Adding Physical Index value of IF 'lo0' is 8 Debu: buildIfVc: Interface lo0 Addr: 127.0.0.1, Flags: 0xffff8049, Network: 127/8 Debu: Adding Physical Index value of IF 'ng0' is 10 Debu: buildIfVc: Interface ng0 Addr: 79.238.123.48, Flags: 0xffff89d1, Network: 79.238.123.48/32 Debu: Found config for em0 Debu: Found config for ng0 Note: adding VIF, Ix 0 Fl 0x0 IP 0x0a00a8c0 em0, Threshold: 1, Ratelimit: 0 Debu: Network for [em0] : 192.168.0/24 Debu: Network for [em0] : 192.168.0/24 Note: adding VIF, Ix 1 Fl 0x0 IP 0x307bee4f ng0, Threshold: 1, Ratelimit: 0 Debu: Network for [ng0] : 79.238.123.48/32 Debu: Network for [ng0] : 239.35/16 Debu: Network for [ng0] : 217.0.119/24 Debu: Network for [ng0] : 193.158.35/24 Debu: Got 262144 byte buffer size in 0 iterations Debu: Joining all-routers group 224.0.0.2 on vif 192.168.0.10 Note: joinMcGroup: 224.0.0.2 on em0 Debu: SENT Membership query from 192.168.0.10 to 224.0.0.1 Debu: Sent membership query from 192.168.0.10 to 224.0.0.1\. Delay: 10 Debu: Created timeout 1 (#0) - delay 10 secs Debu: (Id:1, Time:10) Debu: Created timeout 2 (#1) - delay 21 secs Debu: (Id:1, Time:10) Debu: (Id:2, Time:21) Debu: Packet from 192.168.0.10: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.10 to 224.0.0.2 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.10: proto: 2 hdrlen: 20 iplen: 8 or 2048 Note: RECV Membership query from 192.168.0.10 to 224.0.0.1 (ip_hl 20, data 8) Debu: Packet from 192.168.0.1: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.1 to 239.255.255.250 (ip_hl 24, data 8) Debu: Should insert group 239.255.255.250 (from: 192.168.0.1) to route table. Vif Ix : 0 Debu: No existing route for 239.255.255.250\. Create new. Debu: No routes in table. Insert at beginning. Info: Inserted route table entry for 239.255.255.250 on VIF #0 Debu: Joining group 239.255.255.250 upstream on IF address 79.238.123.48 Note: joinMcGroup: 239.255.255.250 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.1: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.1 to 239.255.255.250 (ip_hl 24, data 8) Debu: Should insert group 239.255.255.250 (from: 192.168.0.1) to route table. Vif Ix : 0 Info: Updated route entry for 239.255.255.250 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 239.255.255.250 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 224.0.0.251 (ip_hl 24, data 8) Debu: Should insert group 224.0.0.251 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 224.0.0.251\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting after route 239.255.255.250 Info: Inserted route table entry for 224.0.0.251 on VIF #0 Debu: Joining group 224.0.0.251 upstream on IF address 79.238.123.48 Note: joinMcGroup: 224.0.0.251 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 224.0.0.251 (ip_hl 24, data 8) Debu: Should insert group 224.0.0.251 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 224.0.0.251 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 224.0.0.251 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.194.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.194.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 239.35.194.11\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting at beginning, before route 239.255.255.250 Info: Inserted route table entry for 239.35.194.11 on VIF #0 Debu: Joining group 239.35.194.11 upstream on IF address 79.238.123.48 Note: joinMcGroup: 239.35.194.11 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.194.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.194.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.194.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 239.35.194.11 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 224.0.0.251 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.194.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.194.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.194.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.194.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.194.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.194.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.1: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.1 to 224.0.0.253 (ip_hl 24, data 8) Debu: Should insert group 224.0.0.253 (from: 192.168.0.1) to route table. Vif Ix : 0 Debu: No existing route for 224.0.0.253\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting after route 224.0.0.251 Info: Inserted route table entry for 224.0.0.253 on VIF #0 Debu: Joining group 224.0.0.253 upstream on IF address 79.238.123.48 Note: joinMcGroup: 224.0.0.253 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.1: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.1 to 224.0.0.253 (ip_hl 24, data 8) Debu: Should insert group 224.0.0.253 (from: 192.168.0.1) to route table. Vif Ix : 0 Info: Updated route entry for 224.0.0.253 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 224.0.0.253 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.10: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.10 to 224.0.0.2 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.194.11\. Starting last member detection. Debu: Leaving group 239.35.194.11 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 239.35.194.11 on ng0 Debu: SENT Membership query from 192.168.0.10 to 239.35.194.11 Debu: Sent membership query from 192.168.0.10 to 239.35.194.11\. Delay: 10 Debu: Created timeout 3 (#1) - delay 7 secs Debu: (Id:1, Time:3) Debu: (Id:3, Time:7) Debu: (Id:2, Time:14) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.194.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.194.11 Debu: Sent membership query from 192.168.0.10 to 239.35.194.11\. Delay: 10 Debu: Created timeout 4 (#2) - delay 0 secs Debu: (Id:1, Time:3) Debu: (Id:3, Time:7) Debu: (Id:4, Time:0) Debu: (Id:2, Time:14) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 239.35.129.11\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting at beginning, before route 239.35.194.11 Info: Inserted route table entry for 239.35.129.11 on VIF #0 Debu: Joining group 239.35.129.11 upstream on IF address 79.238.123.48 Note: joinMcGroup: 239.35.129.11 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 239.35.129.11 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: About to call timeout 1 (#0) Debu: Aging routes in table. Debu: Current routing table (Age active routes); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 239.255.255.250 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.129.11\. Starting last member detection. Debu: Leaving group 239.35.129.11 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 239.35.129.11 on ng0 Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 5 (#2) - delay 3 secs Debu: (Id:3, Time:7) Debu: (Id:4, Time:0) Debu: (Id:5, Time:3) Debu: (Id:2, Time:11) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.129.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 6 (#3) - delay 0 secs Debu: (Id:3, Time:7) Debu: (Id:4, Time:0) Debu: (Id:5, Time:3) Debu: (Id:6, Time:0) Debu: (Id:2, Time:11) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.132.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.132.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Debu: No existing route for 239.35.132.11\. Create new. Debu: Found existing routes. Find insert location. Debu: Inserting after route 239.35.129.11 Info: Inserted route table entry for 239.35.132.11 on VIF #0 Debu: Joining group 239.35.132.11 upstream on IF address 79.238.123.48 Note: joinMcGroup: 239.35.132.11 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.132.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.132.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.132.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 239.35.132.11 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.132.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.132.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.132.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.132.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.132.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.132.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 217.0.119.33: proto: 2 hdrlen: 24 iplen: 12 or 3072 Note: RECV Membership query from 217.0.119.33 to 224.0.0.1 (ip_hl 24, data 12) Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 224.0.0.251 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.132.11\. Starting last member detection. Debu: Leaving group 239.35.132.11 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 239.35.132.11 on ng0 Debu: SENT Membership query from 192.168.0.10 to 239.35.132.11 Debu: Sent membership query from 192.168.0.10 to 239.35.132.11\. Delay: 10 Debu: Created timeout 7 (#4) - delay 3 secs Debu: (Id:3, Time:4) Debu: (Id:4, Time:0) Debu: (Id:5, Time:3) Debu: (Id:6, Time:0) Debu: (Id:7, Time:3) Debu: (Id:2, Time:8) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.132.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.132.11 Debu: Sent membership query from 192.168.0.10 to 239.35.132.11\. Delay: 10 Debu: Created timeout 8 (#5) - delay 0 secs Debu: (Id:3, Time:4) Debu: (Id:4, Time:0) Debu: (Id:5, Time:3) Debu: (Id:6, Time:0) Debu: (Id:7, Time:3) Debu: (Id:8, Time:0) Debu: (Id:2, Time:8) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Joining group 239.35.129.11 upstream on IF address 79.238.123.48 Note: joinMcGroup: 239.35.129.11 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 239.35.129.11 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.129.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.129.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.129.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 224.0.0.253 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 239.255.255.250 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: About to call timeout 3 (#0) Debu: SENT Membership query from 192.168.0.10 to 239.35.194.11 Debu: Sent membership query from 192.168.0.10 to 239.35.194.11\. Delay: 10 Debu: Created timeout 9 (#5) - delay 4 secs Debu: (Id:4, Time:0) Debu: (Id:5, Time:3) Debu: (Id:6, Time:0) Debu: (Id:7, Time:3) Debu: (Id:8, Time:0) Debu: (Id:9, Time:4) Debu: (Id:2, Time:4) Debu: About to call timeout 4 (#1) Debu: SENT Membership query from 192.168.0.10 to 239.35.194.11 Debu: Sent membership query from 192.168.0.10 to 239.35.194.11\. Delay: 10 Debu: Created timeout 10 (#5) - delay 0 secs Debu: (Id:5, Time:3) Debu: (Id:6, Time:0) Debu: (Id:7, Time:3) Debu: (Id:8, Time:0) Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:2, Time:4) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.129.11\. Starting last member detection. Debu: Leaving group 239.35.129.11 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 239.35.129.11 on ng0 Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 11 (#6) - delay 0 secs Debu: (Id:5, Time:3) Debu: (Id:6, Time:0) Debu: (Id:7, Time:3) Debu: (Id:8, Time:0) Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:2, Time:4) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.129.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 12 (#7) - delay 1 secs Debu: (Id:5, Time:2) Debu: (Id:6, Time:0) Debu: (Id:7, Time:3) Debu: (Id:8, Time:0) Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:2, Time:3) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.194.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.194.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.194.11 on VIF #0 Debu: Joining group 239.35.194.11 upstream on IF address 79.238.123.48 Note: joinMcGroup: 239.35.194.11 on ng0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:1, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.194.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.194.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.194.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:1, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 79.238.123.48: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 79.238.123.48 to 239.35.194.11 (ip_hl 24, data 8) Note: The IGMP message was from myself. Ignoring. Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.194.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.194.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.194.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:1, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV V2 member report from 192.168.0.2 to 239.35.194.11 (ip_hl 24, data 8) Debu: Should insert group 239.35.194.11 (from: 192.168.0.2) to route table. Vif Ix : 0 Info: Updated route entry for 239.35.194.11 on VIF #0 Debu: Current routing table (Insert Route); ----------------------------------------------------- Debu: #0: Dst: 239.35.129.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.132.11, Age:2, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.35.194.11, Age:1, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #5: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Eliminate compiler warning for field type = 22 Debu: About to call timeout 5 (#0) Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 13 (#7) - delay 2 secs Debu: (Id:6, Time:0) Debu: (Id:7, Time:3) Debu: (Id:8, Time:0) Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:13, Time:2) Debu: (Id:2, Time:1) Debu: About to call timeout 6 (#1) Debu: SENT Membership query from 192.168.0.10 to 239.35.129.11 Debu: Sent membership query from 192.168.0.10 to 239.35.129.11\. Delay: 10 Debu: Created timeout 14 (#7) - delay 0 secs Debu: (Id:7, Time:3) Debu: (Id:8, Time:0) Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:13, Time:2) Debu: (Id:14, Time:0) Debu: (Id:2, Time:1) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.194.11\. Starting last member detection. Debu: Leaving group 239.35.194.11 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 239.35.194.11 on ng0 Debu: SENT Membership query from 192.168.0.10 to 239.35.194.11 Debu: Sent membership query from 192.168.0.10 to 239.35.194.11\. Delay: 10 Debu: Created timeout 15 (#8) - delay 0 secs Debu: (Id:7, Time:3) Debu: (Id:8, Time:0) Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:13, Time:2) Debu: (Id:14, Time:0) Debu: (Id:15, Time:0) Debu: (Id:2, Time:1) Debu: About to call timeout 7 (#0) Debu: SENT Membership query from 192.168.0.10 to 239.35.132.11 Debu: Sent membership query from 192.168.0.10 to 239.35.132.11\. Delay: 10 Debu: Created timeout 16 (#9) - delay 2 secs Debu: (Id:8, Time:0) Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:13, Time:2) Debu: (Id:14, Time:0) Debu: (Id:15, Time:0) Debu: (Id:2, Time:1) Debu: (Id:16, Time:2) Debu: About to call timeout 8 (#1) Debu: SENT Membership query from 192.168.0.10 to 239.35.132.11 Debu: Sent membership query from 192.168.0.10 to 239.35.132.11\. Delay: 10 Debu: Created timeout 17 (#9) - delay 0 secs Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:13, Time:2) Debu: (Id:14, Time:0) Debu: (Id:15, Time:0) Debu: (Id:2, Time:1) Debu: (Id:16, Time:2) Debu: (Id:17, Time:0) Debu: Packet from 192.168.0.2: proto: 2 hdrlen: 24 iplen: 8 or 2048 Note: RECV Leave message from 192.168.0.2 to 224.0.0.2 (ip_hl 24, data 8) Debu: Got leave message from 192.168.0.2 to 239.35.194.11\. Starting last member detection. Debu: SENT Membership query from 192.168.0.10 to 239.35.194.11 Debu: Sent membership query from 192.168.0.10 to 239.35.194.11\. Delay: 10 Debu: Created timeout 18 (#10) - delay 0 secs Debu: (Id:9, Time:4) Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:13, Time:2) Debu: (Id:14, Time:0) Debu: (Id:15, Time:0) Debu: (Id:2, Time:1) Debu: (Id:16, Time:2) Debu: (Id:17, Time:0) Debu: (Id:18, Time:0) Debu: About to call timeout 9 (#0) Debu: SENT Membership query from 192.168.0.10 to 239.35.194.11 Debu: Sent membership query from 192.168.0.10 to 239.35.194.11\. Delay: 10 Debu: Created timeout 19 (#10) - delay 4 secs Debu: (Id:10, Time:0) Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:13, Time:2) Debu: (Id:14, Time:0) Debu: (Id:15, Time:0) Debu: (Id:2, Time:1) Debu: (Id:16, Time:2) Debu: (Id:17, Time:0) Debu: (Id:18, Time:0) Debu: (Id:19, Time:4) Debu: About to call timeout 10 (#1) Debu: SENT Membership query from 192.168.0.10 to 239.35.194.11 Debu: Sent membership query from 192.168.0.10 to 239.35.194.11\. Delay: 10 Debu: Created timeout 20 (#10) - delay 0 secs Debu: (Id:11, Time:0) Debu: (Id:12, Time:1) Debu: (Id:13, Time:2) Debu: (Id:14, Time:0) Debu: (Id:15, Time:0) Debu: (Id:2, Time:1) Debu: (Id:16, Time:2) Debu: (Id:17, Time:0) Debu: (Id:18, Time:0) Debu: (Id:19, Time:4) Debu: (Id:20, Time:0) Debu: About to call timeout 11 (#2) Debu: Removing group 239.35.129.11\. Died of old age. Debu: Removed route entry for 239.35.129.11 from table. Note: Route is not active. No kernel updates done. Debu: Current routing table (Remove route); ----------------------------------------------------- Debu: #0: Dst: 239.35.132.11, Age:1, St: I, OutVifs: 0x00000001 Debu: #1: Dst: 239.35.194.11, Age:1, St: I, OutVifs: 0x00000001 Debu: #2: Dst: 239.255.255.250, Age:2, St: I, OutVifs: 0x00000001 Debu: #3: Dst: 224.0.0.251, Age:2, St: I, OutVifs: 0x00000001 Debu: #4: Dst: 224.0.0.253, Age:2, St: I, OutVifs: 0x00000001 Debu: ----------------------------------------------------- Debu: Packet from 217.0.119.33: proto: 2 hdrlen: 24 iplen: 12 or 3072 Note: RECV Membership query from 217.0.119.33 to 224.0.0.1 (ip_hl 24, data 12) Debu: About to call timeout 12 (#0) ^CWarn: select() failure; Errno(4): Interrupted system call Note: Got a interupt signal. Exiting. Debu: clean handler called Debu: Removing route entry for 239.35.132.11 Note: Route is not active. No kernel updates done. Debu: Leaving group 239.35.132.11 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 239.35.132.11 on ng0 Warn: MRT_DROP_MEMBERSHIP failed; Errno(49): Can't assign requested address Debu: Removing route entry for 239.35.194.11 Note: Route is not active. No kernel updates done. Debu: Leaving group 239.35.194.11 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 239.35.194.11 on ng0 Warn: MRT_DROP_MEMBERSHIP failed; Errno(49): Can't assign requested address Debu: Removing route entry for 239.255.255.250 Note: Route is not active. No kernel updates done. Debu: Leaving group 239.255.255.250 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 239.255.255.250 on ng0 Debu: Removing route entry for 224.0.0.251 Note: Route is not active. No kernel updates done. Debu: Leaving group 224.0.0.251 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 224.0.0.251 on ng0 Debu: Removing route entry for 224.0.0.253 Note: Route is not active. No kernel updates done. Debu: Leaving group 224.0.0.253 upstream on IF address 79.238.123.48 Note: leaveMcGroup: 224.0.0.253 on ng0 Note: All routes removed. Routing table is empty. Info: Shutdown complete.... #</johnny@rlo.org>
# tcpdump -ni em0 igmp tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on em0, link-type EN10MB (Ethernet), capture size 96 bytes 19:15:20.110852 IP 192.168.0.10 > 224.0.0.1: igmp query v2 19:15:20.398492 IP 192.168.0.1 > 239.255.255.250: igmp v2 report 239.255.255.250 19:15:21.896181 IP 192.168.0.1 > 224.0.0.253: igmp v2 report 224.0.0.253 19:15:25.438726 IP 192.168.0.10 > 224.0.0.1: igmp query v2 19:15:27.387088 IP 192.168.0.1 > 239.255.255.250: igmp v2 report 239.255.255.250 19:15:29.503301 IP 192.168.0.2 > 224.0.0.251: igmp v2 report 224.0.0.251 19:15:30.044836 IP 192.168.0.2 > 239.35.194.11: igmp v2 report 239.35.194.11 19:15:30.503409 IP 192.168.0.2 > 239.35.194.11: igmp v2 report 239.35.194.11 19:15:31.396303 IP 192.168.0.1 > 224.0.0.253: igmp v2 report 224.0.0.253 19:15:33.031440 IP 192.168.0.2 > 224.0.0.2: igmp leave 239.35.194.11 19:15:33.032053 IP 192.168.0.10 > 239.35.194.11: igmp query v2 [gaddr 239.35.194.11] 19:15:33.032260 IP 192.168.0.10 > 239.35.194.11: igmp query v2 [gaddr 239.35.194.11] 19:15:33.037868 IP 192.168.0.2 > 239.35.129.11: igmp v2 report 239.35.129.11 19:15:33.503456 IP 192.168.0.2 > 239.35.129.11: igmp v2 report 239.35.129.11 19:15:36.423428 IP 192.168.0.2 > 224.0.0.2: igmp leave 239.35.129.11 19:15:36.423750 IP 192.168.0.10 > 239.35.129.11: igmp query v2 [gaddr 239.35.129.11] 19:15:36.424027 IP 192.168.0.10 > 239.35.129.11: igmp query v2 [gaddr 239.35.129.11] 19:15:36.430048 IP 192.168.0.2 > 239.35.132.11: igmp v2 report 239.35.132.11 19:15:36.503378 IP 192.168.0.2 > 239.35.132.11: igmp v2 report 239.35.132.11 19:15:39.103419 IP 192.168.0.2 > 224.0.0.2: igmp leave 239.35.132.11 19:15:39.103772 IP 192.168.0.10 > 239.35.132.11: igmp query v2 [gaddr 239.35.132.11] 19:15:39.104383 IP 192.168.0.10 > 239.35.132.11: igmp query v2 [gaddr 239.35.132.11] 19:15:39.109665 IP 192.168.0.2 > 239.35.129.11: igmp v2 report 239.35.129.11 19:15:39.503538 IP 192.168.0.2 > 239.35.129.11: igmp v2 report 239.35.129.11 19:15:43.175854 IP 192.168.0.10 > 239.35.194.11: igmp query v2 [gaddr 239.35.194.11] 19:15:43.176090 IP 192.168.0.10 > 239.35.194.11: igmp query v2 [gaddr 239.35.194.11] 19:15:43.775448 IP 192.168.0.2 > 224.0.0.2: igmp leave 239.35.129.11 19:15:43.775687 IP 192.168.0.10 > 239.35.129.11: igmp query v2 [gaddr 239.35.129.11] 19:15:43.776384 IP 192.168.0.10 > 239.35.129.11: igmp query v2 [gaddr 239.35.129.11] 19:15:43.781694 IP 192.168.0.2 > 239.35.194.11: igmp v2 report 239.35.194.11 19:15:44.003434 IP 192.168.0.2 > 239.35.194.11: igmp v2 report 239.35.194.11 19:15:46.004875 IP 192.168.0.10 > 239.35.129.11: igmp query v2 [gaddr 239.35.129.11] 19:15:46.005207 IP 192.168.0.10 > 239.35.129.11: igmp query v2 [gaddr 239.35.129.11] 19:15:48.528053 IP 192.168.0.2 > 224.0.0.2: igmp leave 239.35.194.11 19:15:48.528295 IP 192.168.0.10 > 239.35.194.11: igmp query v2 [gaddr 239.35.194.11] 19:15:48.528718 IP 192.168.0.10 > 239.35.132.11: igmp query v2 [gaddr 239.35.132.11] 19:15:48.529092 IP 192.168.0.10 > 239.35.132.11: igmp query v2 [gaddr 239.35.132.11] 19:15:48.530714 IP 192.168.0.10 > 239.35.194.11: igmp query v2 [gaddr 239.35.194.11] 19:15:52.531751 IP 192.168.0.10 > 239.35.194.11: igmp query v2 [gaddr 239.35.194.11] 19:15:52.532100 IP 192.168.0.10 > 239.35.194.11: igmp query v2 [gaddr 239.35.194.11] ^C 40 packets captured 333296 packets received by filter 0 packets dropped by kernel #
# tcpdump -ni ng0 igmp tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on ng0, link-type NULL (BSD loopback), capture size 96 bytes 19:15:08.322242 IP 217.0.119.33 > 224.0.0.1: igmp query v3 19:15:23.484094 IP 217.0.119.33 > 224.0.0.1: igmp query v3 19:15:38.504513 IP 217.0.119.33 > 224.0.0.1: igmp query v3 19:15:53.491451 IP 217.0.119.33 > 224.0.0.1: igmp query v3 ^C 4 packets captured 430810 packets received by filter 0 packets dropped by kernel #
# netstat -rn Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 217.0.119.33 UGS 0 21885419 ng0 79.238.123.48 lo0 UHS 0 0 lo0 127.0.0.1 127.0.0.1 UH 0 0 lo0 192.168.0.0/24 link#1 UC 0 0 em0 192.168.0.1 00:24:8c:be:e0:3b UHLW 1 24070408 em0 1200 192.168.0.2 00:22:15:17:04:ff UHLW 1 816199 em0 1192 217.0.85.18 217.0.119.33 UGHS 0 2855 ng0 217.0.119.33 79.238.123.48 UH 4 0 ng0 224.0.0.0/4 217.0.119.33 UGS 0 0 ng0 224.0.0.2 217.0.119.33 UGHS 0 0 ng0 Internet6: Destination Gateway Flags Netif Expire ::1 ::1 UHL lo0 fe80::%em0/64 link#1 UC em0 fe80::219:dbff:fee3:8969%em0 00:19:db:e3:89:69 UHL lo0 fe80::%em1/64 link#2 UC em1 fe80::219:dbff:fee3:896a%em1 00:19:db:e3:89:6a UHL lo0 fe80::%ath0/64 link#4 UC ath0 fe80::21d:fff:feb4:b378%ath0 00:1d:0f:b4:b3:78 UHL lo0 fe80::%lo0/64 fe80::1%lo0 U lo0 fe80::1%lo0 link#8 UHL lo0 fe80::%vlan0/64 link#9 UC vlan0 fe80::219:dbff:fee3:8969%vlan0 00:19:db:e3:89:6a UHL lo0 fe80::%ng0/64 link#10 UC ng0 fe80::219:dbff:fee3:8969%ng0 link#10 UHL lo0 ff01:1::/32 link#1 UC em0 ff01:2::/32 link#2 UC em1 ff01:4::/32 link#4 UC ath0 ff01:8::/32 ::1 UC lo0 ff01:9::/32 link#9 UC vlan0 ff01:a::/32 link#10 UC ng0 ff02::%em0/32 link#1 UC em0 ff02::%em1/32 link#2 UC em1 ff02::%ath0/32 link#4 UC ath0 ff02::%lo0/32 ::1 UC lo0 ff02::%vlan0/32 link#9 UC vlan0 ff02::%ng0/32 link#10 UC ng0 #
/tmp/igmpproxy.conf
##------------------------------------------------------ ## Enable Quickleave mode (Sends Leave instantly) ##------------------------------------------------------ quickleave phyint ng0 upstream ratelimit 0 threshold 1 altnet 239.35.0.0/16 altnet 217.0.119.0/24 altnet 193.158.35.0/24 phyint em0 downstream ratelimit 0 threshold 1 altnet 192.168.0.0/24