Hi all,
I am working in a NG-MVPN setup in mixed Cisco IOS XR-Juniper JUNOS environment.
I would like to know whether there is a Cisco IOS XR equivalent to the following JUNOS configuration:
routing-instances {
VPN-A {
provider-tunnel {
selective {
group 232.1.1.0/24 {
source 10.1.1.0/24 {
ldp-p2mp;
}}}}}}
which let the construction of a selective tree for multicast groups belonging to 232.1.1.0/24 and for sources belonging to 10.1.1.0/24.
Tried the following configuration:
ipv4 access-list MCAST
10 permit ipv4 10.1.1.0/24 232.1.1.0/24
!
multicast-routing
vrf VPN-A
address-family ipv4
mdt data mldp 10 MCAST ! 10 = max-number-of-tunnels
but it does not work.
Tried also the following ACL:
ipv4 access-list MCAST
10 permit 232.1.1.0/24
without success.
Any idea will be more than welcome
Thanks a lot.
Tiziano