[Xorp-users] Using Xorp for PIM SSM

pcaldes pcaldes at attglobal.net
Mon Jun 1 16:40:48 PDT 2009


Our access router is not allowed to run IGMP and only PIM is enabled.

Normally, we can connect our servers in the following manner:
( Cloud )-----PIM----[Cisco Access Router]-----PIM-----[Cisco 
Router]----IGMPv3----[ servers running IGMPv3 ]

For some stupid reason they won't let us run IGMP on the Cisco Acess Router.
Basically, we are trying to avoid having to install a Cisco Router to 
convert IGMPv3 <-> PIM
between our CentOS server and the access router to save some $$$.
We figure we should be able to run Xorp on one of the servers and it can 
convert IGMPv3 to PIM
for other servers on the VLAN in addition to an IGMPv3 application on 
the same box

( Cloud )-----PIM----[Cisco Access Router]-----PIM---+-[Server1 with Xorp]
                                                     |
                                                     +----IGMPv3----[ 
servers running IGMPv3 ]


Our servers are running CentOS 5.2/5.3 and one of them has Xorp Version 
1.6 installed so we can talk PIM with the access router.
Our software application (running on the same box as Xorp) uses SSM and 
issues IGMPv3 joins
and we hoped that Xorp will take that and allow us to access multicast 
data on the other side
of the access router.


 From the Cisco router, we can see the Xorp system show up as a neighbor:

#sh ip pim neigh
PIM Neighbor Table
Neighbor          Interface                Uptime/Expires    Ver   DR
Address                                                            Prio/Mode
10.96.114.33      FastEthernet1/1/0        7w0d/00:01:38     v2    1 / S
10.96.115.21      FastEthernet4/0/0        00:00:09/00:01:35 v2    1 / DR
#

The Xorp system and the other servers are on the VLAN subnet connected 
to FastEthernet4/0/0 on the Cisco router

[Multicast Network]---PIM---[Cisco ACCESS ROUTER]---PIM---[XORP System]
                                                         

The Xorp router only needs to support SSM so no RP should be needed but 
we cannot get it to work.
Hopefully it is just a configuration error.

We know our applications send out IGMPv3 SSM joins since if we stop Xorp
and enable IGMPv3 on the Cisco router, everything works.

Also, is there a configuration command similar to Cisco's "ip pim ssm 
range" statement which allows
you to specify non-standard SSM subnet ranges?

Before we start XORP, we make sure to run:

    echo 0 > /proc/sys/net/ipv4/conf/eth0/rp_filter



Can you please look over my config file for any mistakes?
All help is appreciated.
Following is our Xorp config.boot file.

interfaces {
    interface eth0 {
        /* Use the default setup as configured in the system */
        description: "Public interface ETH0"
        default-system-config
    }
}

fea {
    unicast-forwarding4 {
        disable: false
    }
}

plumbing {
    mfea4 {
        /* disable: false */
        interface eth0 {
            vif eth0 {
                disable: false
            }
        }

        interface register_vif {
            vif register_vif {
                /* Note: this vif should be always enabled */
                disable: false
            }
        }

        traceoptions {
            flag all {
                disable: false
            }
        }
    }
}

protocols {
    igmp {
        /* disable: false */
        interface eth0 {
            vif eth0 {
                version: 3
                disable: false
            }
        }

        traceoptions {
            flag all {
                disable: false
            }
        }
    }
}


protocols {
    pimsm4 {
        interface eth0 {
            vif eth0 {
                disable: false
            }
        }

        interface register_vif {
            vif register_vif {
                /* Note: this vif should be always enabled */
                disable: false
            }
        }

        switch-to-spt-threshold {
            /* approx. 1K bytes/s (10Kbps) threshold */
            disable: false
            interval: 100
            bytes: 102400
        }

        traceoptions {
            flag all {
                disable: false
            }
        }
    }
}


protocols {
    fib2mrib {
        disable: false
    }
}



Following are some of the IP addresses shown below
10.96.115.17   - Cisco Access Router
10.96.115.20   - CentOS 5.2 system with appl that issues IGMPv3 joins
10.96.115.21   - CentOS 5.2 system running Xorp that also has an appl 
that issues IGMPv3 joins.
(10.97.116.117, 232.27.106.1) - Multicast SSM group (S,G) that we want 
to join.

Following is the log output.
[ 2009/06/01 17:56:06  INFO xorp_rtrmgr:7078 RTRMGR +249 
master_conf_tree.cc execute ] Changed modules: interfaces, firewall, 
fea, mfea4, rib, fib2mrib, igmp, pimsm4
[ 2009/06/01 17:56:06  INFO xorp_rtrmgr:7078 RTRMGR +101 
module_manager.cc execute ] Executing module: interfaces (fea/xorp_fea)
[ 2009/06/01 17:56:07 INFO xorp_fea MFEA ] MFEA enabled
[ 2009/06/01 17:56:07 INFO xorp_fea MFEA ] CLI enabled
[ 2009/06/01 17:56:07 INFO xorp_fea MFEA ] CLI started
[ 2009/06/01 17:56:07 INFO xorp_fea MFEA ] MFEA enabled
[ 2009/06/01 17:56:07 INFO xorp_fea MFEA ] CLI enabled
[ 2009/06/01 17:56:07 INFO xorp_fea MFEA ] CLI started
[ 2009/06/01 17:56:08  INFO xorp_rtrmgr:7078 RTRMGR +101 
module_manager.cc execute ] Executing module: firewall (fea/xorp_fea)
[ 2009/06/01 17:56:12  INFO xorp_rtrmgr:7078 RTRMGR +101 
module_manager.cc execute ] Executing module: fea (fea/xorp_fea)
[ 2009/06/01 17:56:18  INFO xorp_rtrmgr:7078 RTRMGR +101 
module_manager.cc execute ] Executing module: mfea4 (fea/xorp_fea)
[ 2009/06/01 17:56:18 INFO xorp_fea MFEA ] Interface added: Vif[eth0] 
pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 10.96.115.16/28 
broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST BROADCAST 
UNDERLYING_VIF_UP MTU: 1500
[ 2009/06/01 17:56:18 INFO xorp_fea MFEA ] MFEA started
[ 2009/06/01 17:56:18 INFO xorp_fea MFEA ] Interface enabled Vif[eth0] 
pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 10.96.115.16/28 
broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST BROADCAST 
UNDERLYING_VIF_UP MTU: 1500 DOWN IPv4 ENABLED
[ 2009/06/01 17:56:18 INFO xorp_fea MFEA ] Interface started: Vif[eth0] 
pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 10.96.115.16/28 
broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST BROADCAST 
UNDERLYING_VIF_UP MTU: 1500 UP IPv4 ENABLED
[ 2009/06/01 17:56:18 INFO xorp_fea MFEA ] Interface added: 
Vif[register_vif] pif_index: 4 vif_index: 1 addr: 10.96.115.21 subnet: 
10.96.115.21/32 broadcast: 10.96.115.21 peer: 0.0.0.0 Flags: 
PIM_REGISTER UNDERLYING_VIF_UP MTU: 1500
[ 2009/06/01 17:56:18 INFO xorp_fea MFEA ] Interface enabled 
Vif[register_vif] pif_index: 4 vif_index: 1 addr: 10.96.115.21 subnet: 
10.96.115.21/32 broadcast: 10.96.115.21 peer: 0.0.0.0 Flags: 
PIM_REGISTER UNDERLYING_VIF_UP MTU: 1500 DOWN IPv4 ENABLED
[ 2009/06/01 17:56:18 INFO xorp_fea MFEA ] Interface started: 
Vif[register_vif] pif_index: 4 vif_index: 1 addr: 10.96.115.21 subnet: 
10.96.115.21/32 broadcast: 10.96.115.21 peer: 0.0.0.0 Flags: 
PIM_REGISTER UNDERLYING_VIF_UP MTU: 1500 UP IPv4 ENABLED
[ 2009/06/01 17:56:18  INFO xorp_rtrmgr:7078 RTRMGR +101 
module_manager.cc execute ] Executing module: rib (rib/xorp_rib)
[ 2009/06/01 17:56:20  INFO xorp_rtrmgr:7078 RTRMGR +101 
module_manager.cc execute ] Executing module: fib2mrib 
(fib2mrib/xorp_fib2mrib)
[ 2009/06/01 17:56:22  INFO xorp_rtrmgr:7078 RTRMGR +101 
module_manager.cc execute ] Executing module: igmp (mld6igmp/xorp_igmp)
[ 2009/06/01 17:56:22  WARNING xorp_rtrmgr:7078 XrlFinderTarget +407 
../xrl/targets/finder_base.cc handle_finder_0_2_resolve_xrl ] Handling 
method for finder/0.2/resolve_xrl failed: XrlCmdError 102 Command failed 
Target "IGMP" does not exist or is not enabled.
[ 2009/06/01 17:56:22 INFO xorp_igmp MLD6IGMP ] Protocol enabled
[ 2009/06/01 17:56:22 INFO xorp_igmp MLD6IGMP ] CLI enabled
[ 2009/06/01 17:56:22 INFO xorp_igmp MLD6IGMP ] CLI started
[ 2009/06/01 17:56:23 INFO xorp_igmp MLD6IGMP ] Protocol started
[ 2009/06/01 17:56:23 INFO xorp_igmp MLD6IGMP ] Interface added: 
Vif[eth0] pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 
10.96.115.16/28 broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST 
BROADCAST UNDERLYING_VIF_UP MTU: 1500
[ 2009/06/01 17:56:24 INFO xorp_igmp MLD6IGMP ] Interface enabled: 
Vif[eth0] pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 
10.96.115.16/28 broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST 
BROADCAST UNDERLYING_VIF_UP MTU: 1500 DOWN IPv4 ENABLED
[ 2009/06/01 17:56:24 INFO xorp_igmp MLD6IGMP ] Interface started: 
Vif[eth0] pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 
10.96.115.16/28 broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST 
BROADCAST UNDERLYING_VIF_UP MTU: 1500 UP IPv4 ENABLED
[ 2009/06/01 17:56:24  INFO xorp_rtrmgr:7078 RTRMGR +101 
module_manager.cc execute ] Executing module: pimsm4 (pim/xorp_pimsm4)
[ 2009/06/01 17:56:24  WARNING xorp_rtrmgr:7078 XrlFinderTarget +407 
../xrl/targets/finder_base.cc handle_finder_0_2_resolve_xrl ] Handling 
method for finder/0.2/resolve_xrl failed: XrlCmdError 102 Command failed 
Target "PIMSM_4" does not exist or is not enabled.
[ 2009/06/01 17:56:24 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:24 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (0.0.0.0, 224.0.0.22) on vif eth0
[ 2009/06/01 17:56:24 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (0.0.0.0, 224.0.0.2) on vif eth0
[ 2009/06/01 17:56:24 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.21 to 224.0.0.1 on vif eth0
[ 2009/06/01 17:56:24 INFO xorp_pimsm4 PIM ] Protocol enabled
[ 2009/06/01 17:56:24 INFO xorp_pimsm4 PIM ] CLI enabled
[ 2009/06/01 17:56:24 INFO xorp_pimsm4 PIM ] CLI started
[ 2009/06/01 17:56:25 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:25 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:25 INFO xorp_pimsm4 PIM ] Protocol started
[ 2009/06/01 17:56:25 INFO xorp_pimsm4 PIM ] Interface added: Vif[eth0] 
pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 10.96.115.16/28 
broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST BROADCAST 
UNDERLYING_VIF_UP MTU: 1500
[ 2009/06/01 17:56:25 INFO xorp_pimsm4 PIM ] Interface added: 
Vif[register_vif] pif_index: 0 vif_index: 1 addr: 10.96.115.21 subnet: 
10.96.115.21/32 broadcast: 0.0.0.0 peer: 0.0.0.0 Flags: PIM_REGISTER 
UNDERLYING_VIF_UP MTU: 1500
[ 2009/06/01 17:56:26 INFO xorp_pimsm4 PIM ] Interface enabled: 
Vif[eth0] pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 
10.96.115.16/28 broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST 
BROADCAST UNDERLYING_VIF_UP MTU: 1500 DOWN IPv4 ENABLED
[ 2009/06/01 17:56:26 INFO xorp_pimsm4 PIM ] Interface started: 
Vif[eth0] pif_index: 4 vif_index: 0 addr: 10.96.115.21 subnet: 
10.96.115.16/28 broadcast: 10.96.115.31 peer: 0.0.0.0 Flags: MULTICAST 
BROADCAST UNDERLYING_VIF_UP MTU: 1500 UP IPv4 ENABLED
[ 2009/06/01 17:56:26 INFO xorp_pimsm4 PIM ] Interface enabled: 
Vif[register_vif] pif_index: 0 vif_index: 1 addr: 10.96.115.21 subnet: 
10.96.115.21/32 broadcast: 0.0.0.0 peer: 0.0.0.0 Flags: PIM_REGISTER 
UNDERLYING_VIF_UP MTU: 1500 DOWN IPv4 ENABLED
[ 2009/06/01 17:56:26 INFO xorp_pimsm4 PIM ] Interface started: 
Vif[register_vif] pif_index: 0 vif_index: 1 addr: 10.96.115.21 subnet: 
10.96.115.21/32 broadcast: 0.0.0.0 peer: 0.0.0.0 Flags: PIM_REGISTER 
UNDERLYING_VIF_UP MTU: 1500 UP IPv4 ENABLED
[ 2009/06/01 17:56:26 WARNING xorp_pimsm4 PIM ] JoinDesired(*,G) = true: 
RP for group 232.27.106.1: not found
[ 2009/06/01 17:56:26  INFO xorp_rtrmgr:7078 RTRMGR +2233 task.cc 
run_task ] No more tasks to run
[ 2009/06/01 17:56:26 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:26 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (0.0.0.0, 224.0.0.13) on vif eth0
[ 2009/06/01 17:56:28 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:28 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:28 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (0.0.0.0, 224.0.0.5) on vif eth0
[ 2009/06/01 17:56:30 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:56:30 TRACE xorp_pimsm4 PIM ] RX PIM_HELLO from 
10.96.115.17 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:56:30 TRACE xorp_pimsm4 PIM ] Added new neighbor 
10.96.115.17 on vif eth0
[ 2009/06/01 17:56:30 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:56:30 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:39 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 224.0.0.1 on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0
[ 2009/06/01 17:56:45 WARNING xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0: 
this interface is in IGMPv3 mode, but received IGMPv2 message
[ 2009/06/01 17:56:45 WARNING xorp_igmp MLD6IGMP ] Please configure 
properly all routers on that subnet to use same IGMP version
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (0.0.0.0, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:56:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(0.0.0.0, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:56:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:56:46 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:47 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:49 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:53 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:56:59 TRACE xorp_pimsm4 PIM ] RX PIM_HELLO from 
10.96.115.17 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:57:00 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:15 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:16 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:17 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:23 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:26 WARNING xorp_pimsm4 PIM ] JoinDesired(*,G) = true: 
RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:29 TRACE xorp_pimsm4 PIM ] RX PIM_HELLO from 
10.96.115.17 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:57:30 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:57:39 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 224.0.0.1 on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0
[ 2009/06/01 17:57:45 WARNING xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0: 
this interface is in IGMPv3 mode, but received IGMPv2 message
[ 2009/06/01 17:57:45 WARNING xorp_igmp MLD6IGMP ] Please configure 
properly all routers on that subnet to use same IGMP version
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.11
5.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:57:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:57:46 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:47 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:48 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:53 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:57:59 TRACE xorp_pimsm4 PIM ] RX PIM_HELLO from 
10.96.115.17 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:58:00 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:15 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:20 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:22 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:26 WARNING xorp_pimsm4 PIM ] JoinDesired(*,G) = true: 
RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:29 TRACE xorp_pimsm4 PIM ] RX PIM_HELLO from 
10.96.115.17 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:58:30 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:58:39 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 224.0.0.1 on vif eth0
[ 2009/06/01 17:58:41 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:58:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:58:47 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:48 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:51 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:58:59 TRACE xorp_pimsm4 PIM ] RX PIM_HELLO from 
10.96.115.17 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:59:00 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:15 WARNING xorp_p
imsm4 PIM ] PruneDesired(S,G,rpt) = true: RP for group 232.27.106.1: not 
found
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:15 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:15 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:16 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:26 WARNING xorp_pimsm4 PIM ] JoinDesired(*,G) = true: 
RP for group 232.27.106.1: not found
[ 2009/06/01 17:59:29 TRACE xorp_pimsm4 PIM ] RX PIM_HELLO from 
10.96.115.17 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:59:30 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0
[ 2009/06/01 17:59:39 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 224.0.0.1 on vif eth0
[ 2009/06/01 17:59:43 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_MEMBERSHIP_QUERY from 10.96.115.17 to 232.27.106.1 on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] Notify routing delete 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_pimsm4 PIM ] Delete membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
true: RP for group 232.27.106.1: not found
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] Notify routing add 
membership for (10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:45 TRACE xorp_pimsm4 PIM ] Add membership for 
(10.97.116.117, 232.27.106.1) on vif eth0
[ 2009/06/01 17:59:45 WARNING xorp_pimsm4 PIM ] PruneDesired(S,G,rpt) = 
false: RP for group 232.27.106.1: not found
[ 2009/06/01 17:59:45 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.21 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:46 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:46 TRACE xorp_igmp MLD6IGMP ] RX 
IGMP_V3_MEMBERSHIP_REPORT from 10.96.115.20 to 224.0.0.22 on vif eth0
[ 2009/06/01 17:59:59 TRACE xorp_pimsm4 PIM ] RX PIM_HELLO from 
10.96.115.17 to 224.0.0.13 on vif eth0
[ 2009/06/01 18:00:00 TRACE xorp_pimsm4 PIM ] TX PIM_HELLO from 
10.96.115.21 to 224.0.0.13 on vif eth0



More information about the Xorp-users mailing list