[Xorp-users] multicast forwarding not working on xorp router

Williams, Mark william at losrios.edu
Mon Jun 6 07:34:19 PDT 2011


You need to define a rendezvous point (RP) for the multicast group. You can either do static-rp or configure the router to be a candidate RP for the specific group address or all groups.

-Mark Williams

-----Original Message-----
From: xorp-users-bounces at xorp.org [mailto:xorp-users-bounces at xorp.org] On Behalf Of Vikas Aggarwal
Sent: Friday, June 03, 2011 14:25
To: xorp-users at xorp.org
Subject: [Xorp-users] multicast forwarding not working on xorp router

Hi Everyone,
I am trying to setup a very simple XORP multicast router. It cannot do
Multicast Forwarding.
Please review setup details to help figure out the problem. Any help
is appreciated.

Configuration
=============
Linux_Box_A                         Linux_Box_B
                        Linux_Box_C
IGMP End Point (10.10.11.2/24)------(eth2, 10.10.11.1/24) XORP linux
(10.10.10.1/24, eth1)-----Multicast Server

Box A sends IGMP join message and supposed to receive multicast UDP
packets from Linux_box_C destined to 224.1.2.3

Problem Description
===================
1)Though IGMP JOIN, Query , Report works
2)But XORP router cannot "Multicast forward" UDP packets coming from
Linux_Box_C.

Installation
============
1) XORP router runs on Fedora-12 linux machine (2.6.31.5-127.fc12.x86_64)
2) Built/Installed latest XORP from git as described in XORP wiki
Getting Started
3) Added group xorp as described in wiki
4) Created xorp config file (copy/pasted below)
5) launched xorp_rtrmgr daemon :
      xorp_rtrmgr -d -P /var/run/xorp.pid -l /var/log/xorp -b
/home/xorp/xorp-config/multicast4.boot

Various Logs (ip route, sysctl, xorpsh, xorp config, xorp daemon log etc)
===============================================================
[root at localhost xorp]# ip route
192.168.162.0/24 dev eth0  proto kernel  scope link  src 192.168.162.195
10.10.10.0/24 dev eth1  proto kernel  scope link  src 10.10.10.1
10.10.11.0/24 dev eth2  proto kernel  scope link  src 10.10.11.1
169.254.0.0/16 dev eth0  scope link  metric 1002
default via 192.168.162.1 dev eth0
[root at localhost xorp]#
[root at localhost xorp]#
[root at localhost xorp]#

[root at localhost xorp]# ip mroute
(10.10.10.2, 224.1.2.3)          Iif: unresolved
[root at localhost xorp]#

[root at xorp_router ~]# sysctl -a | grep mc_
net.ipv4.conf.all.mc_forwarding = 1
net.ipv4.conf.default.mc_forwarding = 0
net.ipv4.conf.lo.mc_forwarding = 0
net.ipv4.conf.eth0.mc_forwarding = 0
net.ipv4.conf.eth1.mc_forwarding = 1
net.ipv4.conf.eth2.mc_forwarding = 1
net.ipv4.conf.pimreg.mc_forwarding = 1
net.ipv4.conf.tunl0.mc_forwarding = 0
net.ipv6.conf.all.mc_forwarding = 0
net.ipv6.conf.default.mc_forwarding = 0
net.ipv6.conf.lo.mc_forwarding = 0
net.ipv6.conf.eth0.mc_forwarding = 0
net.ipv6.conf.eth1.mc_forwarding = 0
net.ipv6.conf.eth2.mc_forwarding = 0
net.ipv6.conf.pimreg.mc_forwarding = 0
net.ipv6.conf.tunl0.mc_forwarding = 0
[root at xorp_router ~]#

[root at xorp_router ~]# sysctl -a | grep mcast
net.ipv4.neigh.default.mcast_solicit = 3
net.ipv4.neigh.lo.mcast_solicit = 3
net.ipv4.neigh.eth0.mcast_solicit = 3
net.ipv4.neigh.eth1.mcast_solicit = 3
net.ipv4.neigh.eth2.mcast_solicit = 3
net.ipv4.neigh.pimreg.mcast_solicit = 3
net.ipv4.neigh.tunl0.mcast_solicit = 3
net.ipv6.neigh.default.mcast_solicit = 3
net.ipv6.neigh.lo.mcast_solicit = 3
net.ipv6.neigh.eth0.mcast_solicit = 3
net.ipv6.neigh.eth1.mcast_solicit = 3
net.ipv6.neigh.eth2.mcast_solicit = 3
net.ipv6.neigh.pimreg.mcast_solicit = 3
net.ipv6.neigh.tunl0.mcast_solicit = 3

root at xorp_router.localdomain> show igmp group
Interface    Group           Source          LastReported Timeout V State
eth1         224.0.0.2       0.0.0.0         10.10.10.1       162 2     E
eth1         224.0.0.22      0.0.0.0         10.10.10.1       155 2     E
eth1         224.0.0.251     0.0.0.0         10.10.10.1       160 2     E
eth2         224.0.0.2       0.0.0.0         10.10.11.1       156 2     E
eth2         224.0.0.22      0.0.0.0         10.10.11.1       161 2     E
eth2         224.0.0.251     0.0.0.0         10.10.11.1       163 2     E
eth2         224.1.2.3       0.0.0.0         10.10.11.2       161 2     E
root at xorp_router.localdomain>

root at xorp_router.localdomain> show igmp interface
Interface    State    Querier         Timeout Version Groups
eth1         UP       10.10.10.1         None       2      3
eth2         UP       10.10.11.1         None       2      4
root at xorp_router.localdomain>

root at xorp_router.localdomain> show mfea  interface
Interface    State    Vif/PifIndex Addr            Flags
eth1         UP                0/3 10.10.10.1      MULTICAST BROADCAST KERN_UP
eth2         UP                1/4 10.10.11.1      MULTICAST BROADCAST KERN_UP
register_vif UP                2/4 10.10.11.1      PIM_REGISTER KERN_UP
root at xorp_router.localdomain>

root at xorp_router.localdomain> show  route table ipv4 multicast final
10.10.10.0/24   [connected(0)/0]
                > via eth1/eth1
10.10.11.0/24   [connected(0)/0]
                > via eth2/eth2
root at xorp_router.localdomain>



[root at xorp_router ~]# lsmod
Module                  Size  Used by
bluetooth              94884  0
rfkill                 20488  1 bluetooth
ipip                    9764  0
xfrm4_tunnel            2864  0
tunnel4                 3600  2 ipip,xfrm4_tunnel
8021q                  24032  0
garp                    8464  1 8021q
stp                     2724  1 garp
llc                     6400  2 garp,stp
ext2                   67728  2
fuse                   62048  2
sunrpc                191864  1
ipv6                  298864  34
p4_clockmod             6148  0
freq_table              4864  1 p4_clockmod
speedstep_lib           5712  1 p4_clockmod
dm_multipath           17304  0
uinput                  9248  0
e1000                 115460  0
i5000_edac             10256  0
edac_core              43516  3 i5000_edac
ppdev                  10040  0
parport_pc             27640  0
parport                34320  2 ppdev,parport_pc
iTCO_wdt               13008  0
iTCO_vendor_support     3588  1 iTCO_wdt
tg3                   105476  0
i5k_amb                 7272  0
dcdbas                 10800  0
serio_raw               6644  0
shpchp                 34636  0
radeon                507616  2
ttm                    41952  1 radeon
drm_kms_helper         25360  1 radeon
drm                   171168  4 radeon,ttm,drm_kms_helper
i2c_algo_bit            6020  1 radeon
i2c_core               28608  3 radeon,drm,i2c_algo_bit
[root at xorp_router ~]#


[root at xorp_router ~]# vi /home/xorp/xorp-config/multicast4.boot
interfaces {
    interface eth1 {
        vif eth1 {
            address 10.10.10.1 {
                prefix-length: 24
            }
        }
    }
    interface eth2 {
        vif eth2 {
            address 10.10.11.1 {
                prefix-length: 24
            }
        }
    }
}

fea {
    unicast-forwarding4 {
        disable: false
    }
}

plumbing {
    mfea4 {
        interface eth2 {
            vif eth2 {
                disable: false
            }
        }
        interface eth1 {
            vif eth1 {
                disable: false
            }
        }
        interface register_vif {
            vif register_vif {
                /* Note: this vif should be always enabled */
                disable: false
            }
        }
        traceoptions {
            flag all {
                disable: false
            }
        }
    }
}

protocols {
    igmp {
        interface eth2 {
            vif eth2 {
                version: 2
                disable: false
            }
        }
        interface eth1 {
            vif eth1 {
                version: 2
                disable: false
            }
        }
        traceoptions {
            flag all {
                disable: false
            }
        }
    }
}

/*
protocols {
    static {
        mrib-route 10.30.0.0/16 {
            next-hop: 10.10.10.20
        }
    }
}
*/

protocols {
    fib2mrib {
        disable: false
    }
}

[root at localhost xorp]# tcpdump -i eth1 -v
tcpdump: listening on eth1, link-type EN10MB (Ethernet), capture size
65535 bytes
14:24:28.816696 IP (tos 0x0, ttl 5, id 0, offset 0, flags [DF], proto
UDP (17), length 40)
    10.10.10.2.44051 > 224.1.2.3.50002: UDP, length 12
14:24:31.817447 IP (tos 0x0, ttl 5, id 0, offset 0, flags [DF], proto
UDP (17), length 40)
    10.10.10.2.44051 > 224.1.2.3.50002: UDP, length 12
14:24:34.818151 IP (tos 0x0, ttl 5, id 0, offset 0, flags [DF], proto
UDP (17), length 40)
    10.10.10.2.44051 > 224.1.2.3.50002: UDP, length 12
14:24:37.818907 IP (tos 0x0, ttl 5, id 0, offset 0, flags [DF], proto
UDP (17), length 40)
    10.10.10.2.44051 > 224.1.2.3.50002: UDP, length 12
14:24:40.819610 IP (tos 0x0, ttl 5, id 0, offset 0, flags [DF], proto
UDP (17), length 40)
    10.10.10.2.44051 > 224.1.2.3.50002: UDP, length 12
14:24:42.744959 IP (tos 0xc0, ttl 1, id 12050, offset 0, flags [none],
proto IGMP (2), length 32, options (RA))
    10.10.10.1 > all-systems.mcast.net: igmp query v2
14:24:43.820318 IP (tos 0x0, ttl 5, id 0, offset 0, flags [DF], proto
UDP (17), length 40)
    10.10.10.2.44051 > 224.1.2.3.50002: UDP, length 12
14:24:46.821068 IP (tos 0x0, ttl 5, id 0, offset 0, flags [DF], proto
UDP (17), length 40)
    10.10.10.2.44051 > 224.1.2.3.50002: UDP, length 12

[root at localhost xorp]# tcpdump -i eth2 -v
tcpdump: listening on eth2, link-type EN10MB (Ethernet), capture size
65535 bytes
14:25:49.847804 IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto
IGMP (2), length 32, options (RA))
    10.10.11.2 > 224.1.2.3: igmp v2 report 224.1.2.3
14:25:50.107620 IP (tos 0xc0, ttl 1, id 0, offset 0, flags [DF], proto
IGMP (2), length 32, options (RA))
    10.10.11.2 > 224.1.2.3: igmp v2 report 224.1.2.3
14:25:52.124461 IP (tos 0x10, ttl 128, id 0, offset 0, flags [none],
proto UDP (17), length 328)


Partial Xorp log file
==================
 2011/06/03 14:05:57.719941 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:05:57.720038 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:05:57.720376 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:05:57.720418 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:05:57.720795 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:05:57.720836 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:05:58.498726 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:05:58.498787 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:05:58.548348  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:06:01.611703 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:06:01.611762 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:06:02.355699 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:06:02.355751 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:06:05.302733 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:06:05.302792 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:06:06.325692 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:06:06.325744 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:06:06.349909 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:06:06.558782 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:06:06.558841 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:06:10.551275  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:06:22.554143  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:06:34.557055  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:06:46.559980  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:06:58.562842  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:07:10.565763  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:07:22.568702  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:07:34.571563  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kerne
l signal: message_type = 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:07:46.574471  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:07:58.577330  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:08:02.724665 TRACE xorp_igmp MLD6I
GMP ] TX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:08:02.724769 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:08:02.725122 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:08:02.725165 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:08:02.725648 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:08:02.725688 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:08:03.578722 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:08:03.578782 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:08:04.534725 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:08:04.534782 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:08:04.764693 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:08:04.764745 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:08:06.733690 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:08:06.733741 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:08:07.466743 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:08:07.466808 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:08:10.580249  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:08:10.915548 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:08:11.280845 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:08:11.280915 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:08:22.583162  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:08:34.586031  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:08:46.588959  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:08:58.591818  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:09:10.594768  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:09:22.597674  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:09:34.600542  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:09:46.603511  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:09:58.606421  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:10:07.725810 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:10:07.725935 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:10:07.726325 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:10:07.726366 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:10:07.726666 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:10:07.726707 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:10:07.880730 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:10:07.880787 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:10:08.814438 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:10:10.190726 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:10:10.190786 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:10:10.609281  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:10:10.624714 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:10:10.624766 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:10:10.885697 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:10:10.885747 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:10:14.110864 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:10:14.110951 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:10:14.181677 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:10:14.181728 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:10:22.612185  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:10:34.615036  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:10:46.617941  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:10:58.620849  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:11:10.623735  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:11:22.626634  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:11:34.629541  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:11:46.632429  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:11:58.635348  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:12:10.638330  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:12:12.730521 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:12:12.730656 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:12:12.731029 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:12:12.731074 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:12:12.731140 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:12:12.731177 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:12:14.916863 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:12:14.916954 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:12:15.316785 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:12:15.316853 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:12:15.909737 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:12:15.909800 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:12:16.885745 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:12:16.885814 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:12:20.353754 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:12:20.353823 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:12:21.81745 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:12:21.81807 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:12:22.15755 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:12:22.641258  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:12:34.644110  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:12:46.646987  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:12:58.649894  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:13:10.652816  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:13:22.655726  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:13:34.658660  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:13:46.661541  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:13:58.664443  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:14:10.667335  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:14:17.731598 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:14:17.731720 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.
10.1 to 224.0.0.1
[ 2011/06/03 14:14:17.732066 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:14:17.732110 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:14:17.732176 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:14:17.732213 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:14:17.894730 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:14:17.894799 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:14:18.689747 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:14:18.689810 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:14:18.814713 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:14:18.814772 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:14:19.535051 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:14:19.949856 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:14:19.949927 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:14:20.830753 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:14:20.830815 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:14:21.393746 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:14:21.393807 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:14:22.670177  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:14:34.673130  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:14:46.675977  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:14:58.678917  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:15:10.681841  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:15:22.684694  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:15:34.687632  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:15:46.690525  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:15:58.693403  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:16:10.696327  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:16:22.699185  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:16:22.732921 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:16:22.733031 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:16:22.733384 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:16:22.733427 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:16:22.733769 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:16:22.733811 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:16:24.111788 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:16:24.111863 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:16:27.525812 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:16:27.525886 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:16:29.77788 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:16:29.77861 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:16:29.746709 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:16:29.746769 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:16:30.497135 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:16:31.799776 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:16:31.799845 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:16:32.674730 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:16:32.674795 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:16:34.702100  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel
signal: message_type = 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:16:46.705030  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:16:58.707953  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:17:10.710864  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:17:22.713767  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:17:34.716721  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:17:46.719573  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:17:58.722500  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:18:10.725402  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:18:22.728249  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:18:27.733938 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:18:27.734038 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:18:27.734500 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:18:27.734544 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:18:27.734952 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:18:27.734991 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:18:28.175758 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:18:28.175824 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:18:30.298869 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:18:30.298952 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:18:30.432770 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:18:30.432839 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:18:31.979799 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:18:31.979872 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:18:32.927739 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:18:32.927804 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:18:34.731181  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:18:36.942765 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:18:36.942832 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:18:37.271587 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:18:46.734134  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:18:58.736993  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:19:10.739937  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:19:22.742770  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:19:34.745693  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:19:46.748622  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:19:58.751465  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:20:10.754384  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:20:22.757304  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:20:32.738643 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:20:32.738782 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:20:32.739178 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on v
if eth2
[ 2011/06/03 14:20:32.739223 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:20:32.739290 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:20:32.739327 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:20:33.676812 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:20:33.676901 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:20:34.760137  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:20:36.11872 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:20:36.11962 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:20:36.66749 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:20:36.66816 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:20:37.974829 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:20:37.974919 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:20:40.121840 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:20:40.121922 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:20:41.617359 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:20:42.152763 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:20:42.152818 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:20:46.763101  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:20:58.765963  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:21:10.768905  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:21:22.771758  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:21:34.774652  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:21:46.777588  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:21:58.780497  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:22:10.783426  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:22:22.786272  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:22:34.789200  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:22:37.739564 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:22:37.739678 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:22:37.740041 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:22:37.740083 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:22:37.740494 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:22:37.740533 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:22:39.543845 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:22:39.543938 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:22:39.856108 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:22:40.246797 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:22:40.246864 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:22:42.533871 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:22:42.533956 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:22:43.783842 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:22:43.783926 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:22:44.291816 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:22:44.291891 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:22:46.217768 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:22:46.217838 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:22:46.792081  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:22:58.794957  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:23:10.797921  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:23:22.800835  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:23:34.803773  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:23:46.806646  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:23:58.809520  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:24:10.812425  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:24:22.815345  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:24:34.818295  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:24:42.744247 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:24:42.744370 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:24:42.744808 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:24:42.744853 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:24:42.745322 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:24:42.745364 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:24:43.879870 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:24:43.879966 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:24:44.321975 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:24:45.690861 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:24:45.690934 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:24:46.821197  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:24:46.957730 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:24:46.957792 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:24:48.948989 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:24:48.949072 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:24:49.373895 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:24:49.373958 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:24:51.498033 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:24:51.498112 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:24:58.824133  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:25:10.826988  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:25:22.829855  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:25:34.832771  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel si
gnal: message_type = 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:25:36.175149 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_LEAVE_GROUP from 10.10.11.2 to 224.0.0.2
on vif eth2
[ 2011/06/03 14:25:36.175231 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.1.2.3
[ 2011/06/03 14:25:36.175297 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_LEAVE_GROUP from 10.10.11.2 to 224.0.0.2
on vif eth2
[ 2011/06/03 14:25:36.175323 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.1.2.3
[ 2011/0
6/03 14:25:36.175354 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.1.2.3
[ 2011/06/03 14:25:36.175385 TRACE xorp_igmp MLD6IGMP ] Notify routing
delete membership for (0.0.0.0, 224.1.2.3) on vif eth2
[ 2011/06/03 14:25:36.175833 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:25:36.176119 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:25:36.176360 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:25:46.835660  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:25:49.848062 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:25:49.848122 TRACE xorp_igmp MLD6IGMP ] Notify routing
add membership for (0.0.0.0, 224.1.2.3) on vif eth2
[ 2011/06/03 14:25:50.107919 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:25:58.838568  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:25:59.842799 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:26:10.841497  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:26:22.844364  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:26:34.847339  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:26:46.850127  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:26:47.744598 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to 224.0.0.1
[ 2011/06/03 14:26:47.744694 TRACE xorp_igmp MLD6IGMP ] TX
IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to 224.0.0.1
[ 2011/06/03 14:26:47.745034 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:26:47.745076 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.11.1 to
224.0.0.1 on vif eth2
[ 2011/06/03 14:26:47.745349 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:26:47.745386 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_MEMBERSHIP_QUERY from 10.10.10.1 to
224.0.0.1 on vif eth1
[ 2011/06/03 14:26:48.127741 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:26:48.127797 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.22 on vif eth2
[ 2011/06/03 14:26:49.427860 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:26:49.427944 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.2 on vif eth1
[ 2011/06/03 14:26:52.416873 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:26:52.416962 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.251 on vif eth1
[ 2011/06/03 14:26:52.504686 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:26:52.504734 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.2 on vif eth2
[ 2011/06/03 14:26:53.616719 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:26:53.616771 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.10.1 to
224.0.0.22 on vif eth1
[ 2011/06/03 14:26:55.204129 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.2 to
224.1.2.3 on vif eth2
[ 2011/06/03 14:26:55.681883 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:26:55.681959 TRACE xorp_igmp MLD6IGMP ]
mld6igmp_process:  RX IGMP_V2_MEMBERSHIP_REPORT from 10.10.11.1 to
224.0.0.251 on vif eth2
[ 2011/06/03 14:26:58.853042  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:27:10.856009  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:27:22.858935  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3
[ 2011/06/03 14:27:34.861797  TRACE xorp_fea:1846 MFEA +1625
fea/mfea_node.cc signal_message_recv ] RX kernel signal: message_type
= 1 vif_index = 0 src = 10.10.10.2 dst = 224.1.2.3

Thanks in advance
Vikas Aggarwal

_______________________________________________
Xorp-users mailing list
Xorp-users at xorp.org
http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-users



More information about the Xorp-users mailing list