The network topology displayed in Figure 1 shows a typical TPSDA setup. It consists of three 7750s and a single 7450. Two 7750s are configured as Broadband Network Gateways (BNGs) and the third 7750 is configured as a P router. The 7450 is used as an aggregation switch to aggregate all subscribers. In ESM IPv4: Multicast with SRRP , multicast is directly distributed to a subscriber through a subscriber SAP. This example walks through another popular model which redirects all multicast streams to a common routed interface for all subscribers. When multicast is put on the common routed interface, one single copy of a multicast stream is delivered to multiple subscribers. In this model, per-subscriber replication of multicast streams is done on an access node or on the aggregation network in order to minimize the bandwidth consumed by the multicast traffic in access/aggregation.
Figure 338 shows two BNGs configured with SRRP to provide redundancy. The P router is connected to the multicast source and is connected to both BNGs. The connections between the BNGs and the P router, and the multicast source and the P router, are also running PIM to provide multicast delivery. On the access side, the two BNGs are connected to an aggregation switch via MC-LAG aggregating the traffic for both PPPoE and IPoE subscribers. The BNGs facing the subscriber side are IGMP aware and will respond to any subscribers’ IGMP requests.
Figure 339 shows a popular ESM multicast model that redirects all multicast streams to a dedicated router interface. When configuring a redirected interface be aware that:
*A:BNG-1>config>router>info
#--------------------------------------------------
echo "Local DHCP Server Configuration"
#--------------------------------------------------
dhcp
local-dhcp-server "dhcp-local-server" create
use-gi-address scope pool
pool "pool-1" create
subnet 10.0.0.0/8 create
options
subnet-mask 255.0.0.0
default-router 10.255.255.254
exit
address-range 10.0.0.10 10.0.0.254
exit
exit
no shutdown
exit
exit
#--------------------------------------------------
echo "IP Configuration"
#--------------------------------------------------
interface "dhcp-lb1"
address 192.168.0.1/32
loopback
local-dhcp-server “dhcp-local-server”
no shutdown
exit
*A:BNG-1>config>service>ies# info
----------------------------------------------
description "BNG-1"
interface “int-multicast-source" create
address 192.168.4.1/30
sap 1/1/2 create
no shutdown
exit
exit
subscriber-interface "sub-int-1" create
address 10.255.255.254/8
group-interface "group-int-1" create
srrp-enabled-routing
dhcp
server 192.168.0.1
gi-address 10.255.255.254
lease-populate 10
no shutdown
exit
authentication-policy "auth-policy-1"
sap 1/1/5:4 create
sub-sla-mgmt
multi-sub-sap 10
no shutdown
exit
exit
pppoe
no shutdown
exit
exit
exit
*A:BNG-1>config>router# info
interface "system"
address 192.0.2.1/32
no shutdown
exit
igmp
group-interface “group-int-1”
no shutdown
exit
exit
pim
interface "int-multicast-source"
no shutdown
rp
static
address 192.0.2.1
group-prefix 224.0.0.0/4
exit
exit
exit
*A:BNG-1> config subscr-mgmt
igmp-policy "igmp-policy-1" create
exit
exit all
sub-profile "multicast-profile-1" create
igmp-policy "igmp-policy-1"
exit all
*A:BNG-1> config>service>ies# info
----------------------------------------------
interface "redirected" create
address 192.168.10.1/30
sap 1/1/10 create
exit
exit
*A:BNG-1>config>router# info
igmp
interface "redirected"
----------------------------------------------
*A:BNG-1> config>router>policy-options# info
----------------------------------------------
policy-statement "mcast_redirect_if"
default-action accept
multicast-redirection fwd-service 1 "redirected"
exit
exit
*A:BNG-1> config>subscr-mgmt>igmp-policy# info
----------------------------------------------
redirection-policy "mcast_redirect_if"
----------------------------------------------
Now send an IGMPv3 join message and then use the show router igmp group command to verify that all multicast streams are redirected. In this example IGMPv3 is used with an (S,G) of (192.168.4.2, 239.255.1.1). The host has the IP address 10.0.0.10. Below is the output for PPPoE and for IPoE subscribers, shown separately.
*A:BNG-1> show router igmp group
===============================================================================
IGMP Interface Groups
===============================================================================
(192.168.4.2,239.255.1.1) Up Time : 0d 00:00:04
Fwd List : redirected
===============================================================================
IGMP Host Groups
===============================================================================
(192.168.4.2,239.255.1.1)
Fwd List : 10.0.0.10 Up Time : 0d 00:00:04
===============================================================================
IGMP SAP Groups
===============================================================================
-------------------------------------------------------------------------------
(*,G)/(S,G) Entries : 2
===============================================================================
*A:BNG-1> show router igmp group
===============================================================================
IGMP Interface Groups
===============================================================================
(192.168.4.2,239.255.1.1) Up Time : 0d 00:00:04
Fwd List : redirected
===============================================================================
IGMP Host Groups
===============================================================================
===============================================================================
IGMP SAP Groups
===============================================================================
(192.168.4.2,239.255.1.1)
Fwd List : 10.0.0.10 Up Time : 0d 00:00:04
-------------------------------------------------------------------------------
(*,G)/(S,G) Entries : 2
===============================================================================
Now the “redirected” interface is the only interface sending out multicast streams. The first command shows that the group interface does not register any multicast group (Num-Groups=0). The second
command displays all multicast group are registered against the redirected interface (Num-Groups=1).
*A:BNG-1> show router igmp group-interface
===============================================================================
IGMP Group-Interfaces
===============================================================================
FwdSvc Group-Interface Adm/Opr-State Import-Policy
SAP Adm/Opr-Version Num-Groups
-------------------------------------------------------------------------------
1 group-int-1 Up/Up none
1/1/2 3/3 0
-------------------------------------------------------------------------------
Group-Interfaces = 1, SAPs = 1
===============================================================================
*A:BNG-1> show router igmp interface
===============================================================================
IGMP Interfaces
===============================================================================
Interface Adm Oper Querier Cfg/Opr Num Policy
Version Groups
-------------------------------------------------------------------------------
redirected Up Up 192.168.10.1 3/3 1 none
-------------------------------------------------------------------------------
Interfaces : 1
===============================================================================
7017 2013/05/24 09:27:50.65 EST MINOR: DEBUG #2001 ies1 IGMP[9]
"IGMP[9]: RX-PKT
[013 00:25:03.310] IGMP host 10.0.0.10 V3 PDU: 10.0.0.10 -> 224.0.0.22 pduLen
20
Type: V3 REPORT maxrespCode 0x0 checkSum 0xddf6
Num Group Records: 1
Group Record 0
Type: ALW_NEW_SRCS, AuxDataLen 0, Num Sources 1
Mcast Addr: 239.255.1.1
Source Address List
192.168.4.2
"
7018 2013/05/24 09:27:50.65 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9
]
"IGMP[ies1 inst 9]: igmpIfGroupAdd
Adding 239.255.1.1 to IGMP host 10.0.0.10 database"
7019 2013/05/24 09:27:50.65 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9
]
"IGMP[ies1 inst 9]: igmpProcessGroupRec
Process group rec ALW_NEW_SRCS received on host 10.0.0.10 for group 239.255.1.1 i
n mode INCLUDE. Num srcs 1"
7020 2013/05/24 09:27:50.66 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9
]
"IGMP[ies1 inst 9]: igmpIfSrcAdd
Adding i/f source entry for host 10.0.0.10 (192.168.4.2,239.255.1.1) to IGMP fwdList
Database, redir if interface redirected [ifIndex 13]"
7024 2013/05/24 09:29:29.85 EST MINOR: DEBUG #2001 ies1 IGMP[9]
"IGMP[9]: RX-PKT
[013 00:26:42.510] IGMP host 10.0.0.10 V3 PDU: 10.0.0.10 -> 224.0.0.22 pduLen
20
Type: V3 REPORT maxrespCode 0x0 checkSum 0xdcf6
Num Group Records: 1
Group Record 0
Type: BLK_OLD_SRCS, AuxDataLen 0, Num Sources 1
Mcast Addr: 239.255.1.1
Source Address List
192.168.4.2
"
7025 2013/05/24 09:29:29.85 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9
]
"IGMP[ies1 inst 9]: igmpProcessGroupRec
Process group rec BLK_OLD_SRCS received on host 10.0.0.10 for group 239.255.1.1 i
n mode INCLUDE. Num srcs 1"
7026 2013/05/24 09:29:29.85 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9
]
"IGMP[ies1 inst 9]: igmpProcessIfSrcTimerExp
Source Timer expired for IGMP host 10.0.0.10 (192.168.4.2,239.255.1.1)"
7027 2013/05/24 09:29:29.85 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9
]
"IGMP[ies1 inst 9]: igmpIfSrcDel
Deleting i/f source entry for host 10.0.0.10 (192.168.4.2,239.255.1.1) from IGMP Dat
abase. DeleteFromAvl: 1 Redir 0"
7028 2013/05/24 09:29:29.85 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9
]
"IGMP[ies1 inst 9]: igmpIfGroupDel
Deleting 239.255.1.1 from IGMP host 10.0.0.10 database"
7029 2013/05/24 09:29:29.85 EST MINOR: DEBUG #2001 ies1 IGMP MCS[9]
"IGMP MCS[9]: TX-MCS Data (GlblDel)
host 10.0.0.10
Key Type: HostGroup, Len: 13, Host : 10.0.0.10, Grp Addr: 239.255.1.1
Data Type: Group, Len: 16, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 0, Num Blk Srcs: 0
"
7030 2013/05/24 09:29:29.85 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9
]
"IGMP[ies1 inst 9]: igmpMcsDelIfGroup
Deleting MCS entry for host 10.0.0.10, group 239.255.1.1, Glb"
Figure 340 shows a numbered SRRP setup with MC-LAG SAPs serving both IPoE and PPPoE subscribers.
ESM IPv4: Multicast with SRRP covers the configuration of regular SRRP SAPs, consequently this example provides configuration guidelines to use a different type of SAP: SRRP MC-LAG SAPs. Note that redirection on SRRP SAPs without MC-LAG is also supported. The configuration of the RADIUS server is out of the scope of this example.
A:BNG-1>config>lag# info
----------------------------------------------
mode access
encap-type dot1q
port 1/1/5 priority 1
lacp active administrative-key 32768
no shutdown
A:BNG-1>config>redundancy# info
----------------------------------------------
multi-chassis
peer 192.0.2.2 create
mc-lag
lag 1 lacp-key 1 system-id 00:00:00:00:00:01 system-priority 100
no shutdown
exit
sync
igmp
srrp
sub-mgmt ipoe pppoe
port lag-1 create
range 4-4 sync-tag "mclagdata"
range 5-5 sync-tag "mclagcontrol"
exit
no shutdown
exit
no shutdown
exit
exit
A:BNG-1>config>service>ies# info
----------------------------------------------
description "BNG-1"
redundant-interface "MClink-BNG-1-BNG-2" create
address 192.168.1.0/31
ip-mtu 1500
spoke-sdp 1:1 create
no shutdown
exit
exit
interface “int-BNG-1-P-1" create
address 192.168.2.1/30
sap 1/1/2 create
no shutdown
exit
exit
interface "lag-redirected" create
address 192.168.10.253/24
vrrp 1
backup 192.168.10.254
exit
sap lag-1:4094 create
exit
exit
subscriber-interface "sub-int-1" create
address 10.255.255.253/8 gw-ip-address 10.255.255.254 track-srrp 1
group-interface "group-int-1" create
dhcp
server 192.168.0.1
gi-address 10.255.255.253
lease-populate 10
no shutdown
exit
authentication-policy "auth-policy-1"
redundant-interface "MClink-BNG-1-BNG-2"
sap lag-1:1 create
sub-sla-mgmt
def-sub-id use-sap-id
def-sub-profile "multicast-profile-1"
def-sla-profile "sla-profile-1"
sub-ident-policy "sub-ident-policy-1"
multi-sub-sap 10
no shutdown
exit
exit
sap lag-1:5 create
exit
srrp 4 create
message-path lag-1:5
priority 200
no shutdown
exit
pppoe
no shutdown
exit
exit
exit
*A:BNG-1>config>router# info
#--------------------------------------------------
echo "IP Configuration"
#--------------------------------------------------
interface "int-BNG-1-BNG-2"
address 192.168.6.1/30
port 1/1/1:1
no shutdown
exit
interface "system"
address 192.0.2.1/32
bfd 100 receive 100 multiplier 3
no shutdown
exit
autonomous-system 65536
#--------------------------------------------------
echo "OSPFv2 Configuration"
#--------------------------------------------------
ospf
traffic-engineering
area 0.0.0.0
interface "system"
no shutdown
exit
interface "int-BNG-1-BNG-2"
interface-type point-to-point
metric 10000
no shutdown
exit
interface "sub-int-1"
no shutdown
exit
interface "int-BNG-1-P-1"
no shutdown
exit
interface "lag-redirected"
no shutdown
exit
exit
exit
pim
interface “int-to_P_router”
exit
A:BNG-2>config>lag# info
----------------------------------------------
mode access
encap-type dot1q
port 1/1/5 priority 1
lacp active administrative-key 32768
no shutdown
A:BNG-2>config>redundancy# info
----------------------------------------------
multi-chassis
peer 192.0.2.1 create
mc-lag
lag 1 lacp-key 1 system-id 00:00:00:00:00:01 system-priority 100
no shutdown
exit
sync
igmp
srrp
sub-mgmt ipoe pppoe
port lag-1 create
range 4-4 sync-tag "mclagdata"
range 5-5 sync-tag "mclagcontrol"
exit
no shutdown
exit
no shutdown
exit
exit
A:BNG-2>config>service>ies# info
----------------------------------------------
description "BNG SRRP1"
redundant-interface "MClink-BNG-1-BNG-2" create
address 192.168.1.1/31
ip-mtu 1500
spoke-sdp 1:1 create
no shutdown
exit
exit
interface "lag-redirected" create
address 192.168.10.252/24
vrrp 2
backup 192.168.10.254
exit
sap lag-1:4094 create
exit
exit
interface “int-BNG-2-P-1" create
address 192.168.3.1/30
sap 1/1/2 create
no shutdown
exit
exit
subscriber-interface "sub-int-1" create
address 10.255.255.252/8 gw-ip-address 10.255.255.254 track-srrp 1
group-interface "group-int-1" create
dhcp
server 192.168.0.1
lease-populate 10
gi-address 10.255.255.252
no shutdown
exit
authentication-policy "auth-policy-1"
redundant-interface "MClink-BNG-1-BNG-2"
sap lag-1:4 create
sub-sla-mgmt
def-sub-id use-sap-id
def-sub-profile "multicast-profile-1"
def-sla-profile "sla-profile-1"
sub-ident-policy "sub-ident-policy-1"
multi-sub-sap 10
no shutdown
exit
exit
sap lag-1:5 create
exit
srrp 1 create
message-path lag-1:5
no shutdown
exit
pppoe
no shutdown
exit
exit
exit
*A:BNG-2>config>router# info
#--------------------------------------------------
echo "IP Configuration"
#--------------------------------------------------
interface "int-BNG-2-BNG-1"
address 192.168.6.1/30
port 1/1/1:1
no shutdown
exit
interface "system"
address 192.0.2.2/32
bfd 100 receive 100 multiplier 3
no shutdown
exit
autonomous-system 65536
#--------------------------------------------------
echo "OSPFv2 Configuration"
#--------------------------------------------------
ospf
traffic-engineering
area 0.0.0.0
interface "system"
no shutdown
exit
interface "int-BNG-2-BNG-1"
interface-type point-to-point
metric 10000
no shutdown
exit
interface "sub-int-1"
no shutdown
exit
interface "lag-redirected"
no shutdown
exit
interface "int-BNG-2-P-1"
no shutdown
exit
exit
exit
pim
interface “int-BNG-2-P-1”
exit
A:Agg-1>config>lag# info
----------------------------------------------
mode access
encap-type dot1q
port 1/1/2
port 1/1/3
lacp active administrative-key 1
no shutdown
*A:Agg-1>config>service>info
vpls 1 customer 1 create
sap lag-1:4094 create
no shutdown
exit
sap 1/1/1:4094 create
no shutdown
exit
no shutdown
exit
*A:Agg-1>config>service>info
vpls 2 customer 1 create
sap lag-1:4 create
no shutdown
exit
sap 1/1/1:4 create
no shutdown
exit
no shutdown
exit
*A:P-router>config>router>info
#--------------------------------------------------
echo "Local DHCP Server Configuration"
#--------------------------------------------------
dhcp
local-dhcp-server "dhcp-local-server" create
use-gi-address scope pool
pool "pool-01" create
subnet 10.0.0.0/8 create
options
subnet-mask 255.0.0.0
default-router 10.255.255.254
exit
address-range 10.0.0.10 10.0.0.254
exit
exit
no shutdown
exit
exit
#--------------------------------------------------
echo "IP Configuration"
#--------------------------------------------------
interface "dhcp-lb1"
address 192.168.0.1/32
loopback
local-dhcp-server “dhcp-local-server”
no shutdown
exit
interface “int-P-1-BNG-1"
address 192.168.2.2/30
port 1/1/2
no shutdown
exit
interface “int-P-1-BNG-2"
address 192.168.3.2/30
port 1/1/3
no shutdown
exit
interface "P-1-multicast-source"
address 192.168.4.1/30
port 1/1/1
no shutdown
exit
interface "system"
address 192.0.2.3/32
no shutdown
exit
#--------------------------------------------------
ospf
area 0.0.0.0
interface "system"
no shutdown
exit
interface “int-P-1-BNG-1"
no shutdown
exit
interface “int-P-1-BNG-2"
no shutdown
exit
interface “P-1-multicast-source"
no shutdown
exit
exit
exit
pim
interface “int-P-1-BNG-1"
exit
interface “int-P-1-BNG-2"
exit
interface “P-1-multicast-source"
exit
exit
*A:BNG-1>config>router>igmp# info
----------------------------------------------
group-interface "group-int-1"
no shutdown
exit
interface "lag-redirected"
no shutdown
exit
*A:BNG-1> config>router>policy-options# info
----------------------------------------------
policy-statement "mcast_redirect_if"
default-action accept
multicast-redirection fwd-service 1 "lag-redirected"
exit
exit
*A:BNG-1> config>subscr-mgmt>igmp-policy# info
----------------------------------------------
redirection-policy "mcast_redirect_if"
----------------------------------------------
*A:BNG-1>config>redundancy# info
----------------------------------------------
multi-chassis
peer 192.0.2.2 create
sync
port lag-1 create
range 4-4 sync-tag "mclagdata"
range 5-5 sync-tag "mclagcontrol"
range 4094-4094 sync-tag "mclagmulticast"
igmp
srrp
sub-mgmt ipoe pppoe
exit
no shutdown
*A:BNG-1> show router igmp group-interface
===============================================================================
IGMP Group-Interfaces
===============================================================================
FwdSvc Group-Interface Adm/Opr-State Import-Policy
SAP Adm/Opr-Version Num-Groups
-------------------------------------------------------------------------------
1 group-int-1 Up/Up none
lag-1:4 3/3 0
-------------------------------------------------------------------------------
Group-Interfaces = 1, SAPs = 1
===============================================================================
*A:BNG-1> show router igmp interface
===============================================================================
IGMP Interfaces
===============================================================================
Interface Adm Oper Querier Cfg/Opr Num Policy
Version Groups
-------------------------------------------------------------------------------
lag-redirected Up Down 0.0.0.0 3/3 0 none
-------------------------------------------------------------------------------
Interfaces : 1
===============================================================================
*A:BNG-1> show subscriber-mgmt sub-profile "multicast-profile-1"
===============================================================================
Subscriber Profile multicast-profile-1
===============================================================================
Description : (Not Specified)
I. Sched. Policy : N/A
E. Sched. Policy : N/A E. Agg Rate Limit: Max
I. Policer Ctrl. : N/A
E. Policer Ctrl. : N/A
Q Frame-Based Ac*: Disabled
Acct. Policy : N/A Collect Stats : Disabled
Rad. Acct. Pol. : N/A
Dupl. Acct. Pol. : N/A
ANCP Pol. : N/A
HostTrk Pol. : N/A
IGMP Policy : igmp-policy-1
Sub. MCAC Policy : N/A
NAT Policy : N/A
Def. Encap Offset: none Encap Offset Mode: none
Avg Frame Size : N/A
Preference : 5
-------------------------------------------------------------------------------
HSMDA-2
-------------------------------------------------------------------------------
I. Qos Policy : 1 E. Qos Policy : 1
E. Agg Rate Limit: Max
E. WRR Policy : N/A Pkt Byte Offset : add 0*
-------------------------------------------------------------------------------
Last Mgmt Change : 05/14/2013 10:12:49
===============================================================================
* indicates that the corresponding row element may have been truncated.
*A:BNG-1> show router igmp group
===============================================================================
IGMP Interface Groups
===============================================================================
(192.168.4.2,239.255.1.1) Up Time : 0d 00:00:12
Fwd List : lag-redirected
===============================================================================
IGMP Host Groups
===============================================================================
(192.168.4.2,239.255.1.1)
Fwd List : 10.0.0.2 Up Time : 0d 00:00:12
===============================================================================
IGMP SAP Groups
===============================================================================
-------------------------------------------------------------------------------
(*,G)/(S,G) Entries : 2
===============================================================================
*A:BNG-1> show service active-subscribers igmp detail
===============================================================================
Active Subscribers Detail
===============================================================================
Subscriber IGMP-Policy
HostAddr GrpItf NumGroups
GrpAddr Type Up-Time Mode
SrcAddr Type Blk/Fwd
-------------------------------------------------------------------------------
video_user_01 igmp-policy-1
10.0.0.2 sub-int-1 1
239.255.1.1 Dynamic 0d 00:01:26 Include
192.168.4.2 Dynamic Fwd
-------------------------------------------------------------------------------
Number of Subscribers : 1
===============================================================================
*A:BNG-1> show subscriber-mgmt igmp-policy "igmp-policy-1"
===============================================================================
IGMP Policy igmp-02
===============================================================================
Import Policy :
Admin Version : 3
Num Subscribers : 1
Host Max Group : No Limit
Host Max Sources : No Limit
Host Max Group Sources : No Limit
Fast Leave : yes
Redirection Policy : mcast_redirect_if
Per Host Replication : no
Egress Rate Modify : no
Mcast Reporting Destination Name :
Mcast Reporting Admin State : Disabled
===============================================================================
*A:BNG-1> show router igmp hosts detail
===============================================================================
IGMP Host 10.0.0.2
===============================================================================
Oper Status : notFwding MacAddress : 00:00:10:10:10:12
Oper version : 3 Subscriber : video_user_01
Num Groups : 1 GrpItf : sub-int-1
Max Grps Till Now: 1 IGMP-Policy : igmp-policy-1
PPPoE SessionId : N/A
FwdSvcId : 1 Max Srcs Allow*: No Limit
Max Grps Allowed : No Limit Max Grp Srcs A*: No Limit
-------------------------------------------------------------------------------
IGMP Group
-------------------------------------------------------------------------------
Group Address : 239.255.1.1 Up Time : 0d 00:02:38
Expires : Not running Mode : Include
V1 Host Timer : Not running Type : Dynamic
V2 Host Timer : Not running Compat Mode: IGMP Version 3
Redir.SvcId : 1 Redir.Intf : lag-redirected
-----------------------------------------------------------
Source Address Expires Type Fwd/Blk
-----------------------------------------------------------
192.168.4.2 0d 00:01:42 Dynamic Fwd
-------------------------------------------------------------------------------
Hosts : 1
===============================================================================
The same baseline configuration is used for PPPoE subscriber. Figure 342 shows the message flow for delivery of multicast streams to PPPoE subscribers.
*A:BNG-1> show router igmp group-interface detail
===============================================================================
IGMP Group-Interfaces
===============================================================================
FwdSvc/Grp-Intf : 1/group-int-1
Admin-Status : Up Oper-Status : Up
Import-Policy : none Subnet-Check : Enabled
Router-Alert-Check : Enabled Sub-Hosts-Only : Enabled
MCAC Policy Name : MCAC Const Adm St : Enable
MCAC Max Unconst BW: no limit MCAC Max Mand BW : no limit
MCAC In use Mand BW: 0 MCAC Avail Mand BW : unlimited
MCAC In use Opnl BW: 0 MCAC Avail Opnl BW : unlimited
-------------------------------------------------------------------------------
SAP : lag-1:4
Admin/Oper version: 3/3 Num Groups : 0
Max Groups Allowed: No Limit Max Groups Till Now: 0
Max Sources Allow*: No Limit
Max Grp Srcs Allo*: No Limit
-------------------------------------------------------------------------------
Group-Interfaces = 1, SAPs = 1
===============================================================================
* indicates that the corresponding row element may have been truncated.
*A:BNG-1> show router igmp group
===============================================================================
IGMP Interface Groups
===============================================================================
(192.168.4.2,239.255.1.1) Up Time : 0d 00:05:15
Fwd List : lag-redirected
===============================================================================
IGMP Host Groups
===============================================================================
(192.168.4.2,239.255.1.1)
Fwd List : 10.0.0.2 Up Time : 0d 00:05:15
===============================================================================
IGMP SAP Groups
===============================================================================
-------------------------------------------------------------------------------
(*,G)/(S,G) Entries : 2
===============================================================================
*A:BNG-1> show router igmp hosts detail
===============================================================================
IGMP Host 10.0.0.2
===============================================================================
Oper Status : Up MacAddress : 52:e0:50:bd:00:00
Oper version : 3 Subscriber : user-ppp-1
Num Groups : 1 GrpItf : group-int-1
Max Grps Till Now: 1 IGMP-Policy : igmp-policy-1
PPPoE SessionId : 1 Next query time: 0d 00:01:47
FwdSvcId : 1 Max Srcs Allow*: No Limit
Max Grps Allowed : No Limit Max Grp Srcs A*: No Limit
-------------------------------------------------------------------------------
IGMP Group
-------------------------------------------------------------------------------
Group Address : 239.255.1.1 Up Time : 0d 00:00:36
Expires : Not running Mode : Include
V1 Host Timer : Not running Type : Dynamic
V2 Host Timer : Not running Compat Mode: IGMP Version 3
Redir.SvcId : 1 Redir.Intf : lag-redirected
-----------------------------------------------------------
Source Address Expires Type Fwd/Blk
-----------------------------------------------------------
192.168.4.2 0d 00:04:03 Dynamic Fwd
-------------------------------------------------------------------------------
Hosts : 1
===============================================================================
* indicates that the corresponding row element may have been truncated.
*A:BNG-1> show service active-subscribers igmp subscriber "user-ppp-1" detail
===============================================================================
Active Subscribers Detail
===============================================================================
Subscriber IGMP-Policy
HostAddr GrpItf NumGroups
GrpAddr Type Up-Time Mode
SrcAddr Type Blk/Fwd
-------------------------------------------------------------------------------
user-ppp-1 igmp-policy-1
10.0.0.2 group-int-1 1
239.255.1.1 Dynamic 0d 00:02:07 Include
192.168.4.2 Dynamic Fwd
-------------------------------------------------------------------------------
Number of Subscribers : 1
===============================================================================
*A:BNG-1> show redundancy multi-chassis sync peer 192.0.2.2 detail
===============================================================================
Multi-chassis Peer Table
===============================================================================
Peer
-------------------------------------------------------------------------------
Peer IP Address : 192.0.2.2
Description : (Not Specified)
Authentication : Disabled
Source IP Address : 192.0.2.1
Admin State : Enabled
-------------------------------------------------------------------------------
Sync-status
-------------------------------------------------------------------------------
Client Applications : IGMP SUBMGMT-IPOE SUBMGMT-PPPOE SRRP
Sync Admin State : Up
Sync Oper State : Up
DB Sync State : inSync
Num Entries : 15
Lcl Deleted Entries : 0
Alarm Entries : 0
Rem Num Entries : 15
Rem Lcl Deleted Entries : 0
Rem Alarm Entries : 0
===============================================================================
MCS Application Stats
===============================================================================
Application : igmp
Num Entries : 1
Lcl Deleted Entries : 0
Alarm Entries : 0
-------------------------------------------------------------------------------
Rem Num Entries : 1
Rem Lcl Deleted Entries : 0
Rem Alarm Entries : 0
-------------------------------------------------------------------------------
Application : subMgmtIpoe
Num Entries : 1
Lcl Deleted Entries : 0
Alarm Entries : 0
-------------------------------------------------------------------------------
Rem Num Entries : 1
Rem Lcl Deleted Entries : 0
Rem Alarm Entries : 0
-------------------------------------------------------------------------------
Application : srrp
Num Entries : 14
Lcl Deleted Entries : 0
Alarm Entries : 0
-------------------------------------------------------------------------------
Rem Num Entries : 14
Rem Lcl Deleted Entries : 0
Rem Alarm Entries : 0
-------------------------------------------------------------------------------
Application : subMgmtPppoe
Num Entries : 1
Lcl Deleted Entries : 0
Alarm Entries : 0
-------------------------------------------------------------------------------
Rem Num Entries : 1
Rem Lcl Deleted Entries : 0
Rem Alarm Entries : 0
-------------------------------------------------------------------------------
===============================================================================
*A:BNG-1> tools dump redundancy multi-chassis sync-database application igmp detail
If no entries are present for an application, no detail will be displayed.
FLAGS LEGEND: ld - local delete; da - delete alarm; pd - pending global delete
Peer Ip 192.0.2.2
Application IGMP
Sap-id Client Key
SyncTag DLen Flags timeStamp
deleteReason code and description
-------------------------------------------------------------------------------
lag-1:4094 Host=10.0.0.2, HostGroup=239.255.1.1
mclagdata 20 -- -- -- 07/03/2013 15:20:49
0x0
lag-1:4 Group=239.255.1.1
mclagmulticast 20 -- -- -- 07/03/2013 15:20:49
0x0
The following totals are for:
peer ip ALL, port/lag ALL, sync-tag ALL, application IGMP
Valid Entries: 2
Locally Deleted Entries: 0
Locally Deleted Alarmed Entries: 0
Pending Global Delete Entries: 0
debug
router
igmp
packet mode egr-ingr-and-dropped
exit
exit
2977 2013/05/23 13:01:45.43 EST MINOR: DEBUG #2001 IGMP[9]
"IGMP[9]: RX-PKT
[012 03:58:58.090] IGMP host 10.0.0.2 V3 PDU: 10.0.0.2 -> 224.0.0.22 pduLen
20
Type: V3 REPORT maxrespCode 0x0 checkSum 0xddf7
Num Group Records: 1
Group Record 0
Type: ALW_NEW_SRCS, AuxDataLen 0, Num Sources 1
Mcast Addr: 239.255.1.1
Source Address List
192.168.4.2
"
debug
router
igmp
host "10.0.0.2"
exit
exit
9 2013/07/03 15:26:32.74 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpIfGroupAdd
Adding 239.255.1.1 to IGMP host 10.0.0.2 database"
10 2013/07/03 15:26:32.74 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpProcessGroupRec
Process group rec ALW_NEW_SRCS received on host 10.0.0.2 for group 239.255.1.1 i
n mode INCLUDE. Num srcs 1"
11 2013/07/03 15:26:32.74 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpIfSrcAdd
Adding i/f source entry for host 10.0.0.2 (192.168.4.2,239.255.1.1) to IGMP fwdList
Database, redir if interface lag-redirected [ifIndex 16]"
12 2013/07/03 15:26:32.73 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpMcsAddIfGroup
Building MCS entry for host 10.0.0.2, group 239.255.1.1"
debug
router
igmp
mcs "lag-redirected"
exit
exit
20 2013/07/03 15:28:26.20 EST MINOR: DEBUG #2001 ies1 IGMP MCS[9]
"IGMP MCS[9]: TX-MCS Data
interface lag-redirected [ifIndex 16]
Key Type: Group, Len: 9, Grp Addr: 239.255.1.1
Data Type: Group, Len: 20, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 1, Num Blk Srcs: 0
Fwd Sources:
192.168.4.2
"
21 2013/07/03 15:28:26.20 EST MINOR: DEBUG #2001 ies1 IGMP MCS[9]
"IGMP MCS[9]: TX-MCS Data
interface lag-redirected [ifIndex 16]
Key Type: Group, Len: 9, Grp Addr: 239.255.1.1
Data Type: Group, Len: 20, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 1, Num Blk Srcs: 0
Fwd Sources:
192.168.4.2
"
2 2013/07/03 20:30:24.97 UTC MINOR: DEBUG #2001 ies1 IGMP MCS[5]
"IGMP MCS[5]: RX-MCS Data
interface lag-redirected [ifIndex 15]
Key Type: Group, Len: 9, Grp Addr: 239.255.1.1
Data Type: Group, Len: 20, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 1, Num Blk Srcs: 0
Fwd Sources:
192.168.4.2
"
debug
router
igmp
packet mode egr-ingr-and-dropped
exit
exit
37 2013/07/03 15:32:10.05 EST MINOR: DEBUG #2001 ies1 IGMP[9]
"IGMP[9]: RX-PKT
[001 03:23:17.050] IGMP host 10.0.0.2 V3 PDU: 10.0.0.2 -> 224.0.0.22 pduLen
20
Type: V3 REPORT maxrespCode 0x0 checkSum 0xddf3
Num Group Records: 1
Group Record 0
Type: BLK_OLD_SRCS, AuxDataLen 0, Num Sources 1
Mcast Addr: 239.255.1.1
Source Address List
192.168.4.2
"
38 2013/07/03 15:32:10.05 EST MINOR: DEBUG #2001 ies1 IGMP[9]
"IGMP[9]: TX-PKT
[001 03:23:17.050] IGMP interface lag-redirected [ifIndex 16] V3 PDU: 192.168.10.253
-> 239.255.1.1 pduLen 16
Type: QUERY maxrespCode 0xa checkSum 0xf26d
GroupAddr: 239.255.1.1
S bit 0, QRV 2, Encoded-QQIC 125, NumSources 1
Source Address List:
192.168.4.2
"
39 2013/07/03 15:32:11.36 EST MINOR: DEBUG #2001 ies1 IGMP[9]
"IGMP[9]: TX-PKT
[001 03:23:18.370] IGMP interface lag-redirected [ifIndex 16] V3 PDU: 192.168.10.253
-> 239.255.1.1 pduLen 16
Type: QUERY maxrespCode 0xa checkSum 0xf26d
GroupAddr: 239.255.1.1
S bit 0, QRV 2, Encoded-QQIC 125, NumSources 1
Source Address List:
192.168.4.2
"
debug
router
igmp
host "192.168.0.10"
exit
exit
44 2013/07/03 15:33:06.00 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpProcessGroupRec
Process group rec BLK_OLD_SRCS received on host 10.0.0.2 for group 239.255.1.1 i
n mode INCLUDE. Num srcs 1"
45 2013/07/03 15:33:06.00 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpProcessIfSrcTimerExp
Source Timer expired for IGMP host 10.0.0.2 (192.168.4.2,239.255.1.1)"
46 2013/07/03 15:33:06.00 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpIfSrcDel
Deleting i/f source entry for host 10.0.0.2 (192.168.4.2,239.255.1.1) from IGMP Data
base. DeleteFromAvl: 1 Redir 0"
47 2013/07/03 15:33:06.00 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpIfGroupDel
Deleting 239.255.1.1 from IGMP host 10.0.0.2 database"
48 2013/07/03 15:33:05.99 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpMcsDelIfGroup
Deleting MCS entry for host 10.0.0.2, group 239.255.1.1, Glb"
49 2013/07/03 15:33:05.99 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpMcsDelIfGroup
Deleting MCS entry for host 10.0.0.2, group 239.255.1.1, Glb"
50 2013/07/03 15:33:06.00 EST MINOR: DEBUG #2001 ies1 IGMP[ies1 inst 9]
"IGMP[ies1 inst 9]: igmpMcsDelIfGroup
Deleting MCS entry for host 10.0.0.2, group 239.255.1.1, Glb"
debug
router
igmp
mcs "group-int-1"
exit
exit
69 2013/07/03 15:34:42.43 EST MINOR: DEBUG #2001 ies1 IGMP MCS[9]
"IGMP MCS[9]: TX-MCS Data
interface lag-redirected [ifIndex 16]
Key Type: Group, Len: 9, Grp Addr: 239.255.1.1
Data Type: Group, Len: 20, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 1, Num Blk Srcs: 0
Fwd Sources:
192.168.4.2
"
70 2013/07/03 15:34:42.43 EST MINOR: DEBUG #2001 ies1 IGMP MCS[9]
"IGMP MCS[9]: TX-MCS Data
interface lag-redirected [ifIndex 16]
Key Type: Group, Len: 9, Grp Addr: 239.255.1.1
Data Type: Group, Len: 20, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 1, Num Blk Srcs: 0
Fwd Sources:
192.168.4.2
"
71 2013/07/03 15:34:44.36 EST MINOR: DEBUG #2001 ies1 IGMP MCS[9]
"IGMP MCS[9]: TX-MCS Data (GlblDel)
interface lag-redirected [ifIndex 16]
Key Type: Group, Len: 9, Grp Addr: 239.255.1.1
Data Type: Group, Len: 16, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 0, Num Blk Srcs: 0
"
72 2013/07/03 15:34:44.37 EST MINOR: DEBUG #2001 ies1 IGMP MCS[9]
"IGMP MCS[9]: TX-MCS Data (GlblDel)
interface lag-redirected [ifIndex 16]
Key Type: Group, Len: 9, Grp Addr: 239.255.1.1
Data Type: Group, Len: 16, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 0, Num Blk Srcs: 0
"
13 2013/07/03 20:34:44.37 UTC MINOR: DEBUG #2001 ies1 IGMP MCS[5]
"IGMP MCS[5]: RX-MCS Data
interface lag-redirected [ifIndex 15]
Key Type: Group, Len: 9, Grp Addr: 239.255.1.1
Data Type: Group, Len: 20, Ver: 0, RecType: 1, Compat Mode: 3,
Num Fwd Srcs: 1, Num Blk Srcs: 0
Fwd Sources:
192.168.4.2
"