Hi team!
I configured PIM SM based on the topology on eNSP:
Static RP has been configured on all routers.
Receivers send IGMP reports to AR2 and AR3, (*, G) entry is created:
<AR3>dis pim rout
VPN-Instance: public net
Total 1 (*, G) entry; 0 (S, G) entry
(*, 225.0.0.1)
RP: 1.1.1.1
Protocol: pim-sm, Flag: WC
UpTime: 00:00:35
Upstream interface: GigabitEthernet0/0/1
Upstream neighbor: 150.0.1.1
RPF prime neighbor: 150.0.1.1
Downstream interface(s) information:
Total number of downstreams: 1
1: GigabitEthernet2/0/0
Protocol: igmp, UpTime: 00:00:35, Expires: -
It looks like RP doesn't create an (S, G) entry. Debuggin PIM and catching packets I can see that multicast traffic is only transmitted to AR1 router. This configuration is simple. That's why my question if PIM SM is supported by eNSP? If yes where the problem can be?
sysname AR1
#
multicast routing-enable
#
interface GigabitEthernet0/0/0
ip address 150.0.0.1 255.255.255.252
pim sm
#
interface GigabitEthernet0/0/1
ip address 150.0.1.1 255.255.255.252
pim sm
#
interface GigabitEthernet2/0/0
ip address 10.10.10.1 255.255.255.0
pim sm
#
interface LoopBack0
ip address 1.1.1.1 255.255.255.255
#
ospf 1
area 0.0.0.0
network 1.1.1.1 0.0.0.0
network 10.10.10.0 0.0.0.255
network 150.0.0.0 0.0.0.3
network 150.0.1.0 0.0.0.3
#
pim
static-rp 1.1.1.1
#
sysname AR2
#
multicast routing-enable
#
interface GigabitEthernet0/0/0
ip address 150.0.0.2 255.255.255.252
pim sm
#
interface GigabitEthernet0/0/1
ip address 150.0.2.1 255.255.255.252
pim sm
#
interface GigabitEthernet2/0/0
ip address 10.10.50.1 255.255.255.0
pim sm
igmp enable
#
ospf 1
area 0.0.0.0
network 10.10.50.0 0.0.0.255
network 150.0.0.0 0.0.0.3
network 150.0.2.0 0.0.0.3
#
pim
static-rp 1.1.1.1
#
sysname AR3
#
multicast routing-enable
#
interface GigabitEthernet0/0/0
ip address 150.0.2.2 255.255.255.252
pim sm
#
interface GigabitEthernet0/0/1
ip address 150.0.1.2 255.255.255.252
pim sm
#
interface GigabitEthernet2/0/0
ip address 10.10.70.1 255.255.255.0
pim sm
igmp enable
#
ospf 1
area 0.0.0.0
network 10.10.70.0 0.0.0.255
network 150.0.1.0 0.0.0.3
network 150.0.2.0 0.0.0.3
#
pim
static-rp 1.1.1.1
#
Thanks!