LSM-MLDP-based MVPN Support
First Published: November 28, 2012
The Label Switched Multicast (LSM) feature supports IPv4 and IPv6 multicast traffic over a Multi-Protocol Label Switching (MPLS) network. This feature is based on the basic MPLS infrastructure and supports IP multicast traffic through the MPLS clouds. The LSM feature enables service providers to extend the existing MPLS backbone network for multicast services. By default, MPLS creates an out-label for an in-label for each packet. This feature extends this functionality to create multiple out-labels for a single in-label.
The LSM service includes point-to-multipoint (P2MP) and multipoint-to-multipoint (MP2MP) packet transport. The P2MP packet transport can be implemented using either Resource reSerVation Protocol (RSVP) P2MP - Traffic Engineering (P2MP-TE), or Multicast Label Distribution Protocol (MLDP) based Multicast VPN (MVPN). The MP2MP packet transport can be implemented only through MLDP based MVPN.
The packets are transported over three types of routers:
- Head-end router: Encapsulates the IP packet with one or more labels.
- Midpoint router: Replaces the in-label with an out-label.
- Tail-end router: Removes the label from the packet.
Restrictions and Usage Guidelines
Follow these restrictions and usage guidelines while configuring LSM-MLDP-based MVPN support:
- A head-end router does not support multiple sub Label Switched Paths (subLSPs) belonging to different tunnels, over the same physical interface.
- RSVP-TE-based LSM is not supported; only MLDP-based LSM is supported.
- Process-level software forwarding is not supported.
- Rosen Model MLDP is not supported in the global configuration mode. However, MLDP inband signaling is supported in the global configuration mode.
- These are the scale considerations for MLDP-based MVPN:
– Maximum number of Multicast Virtual Route Forwardings (MVRFs) supported on each PE is 600.
– Maximum number of m-route supported on each PE is 200,000.
– Maximum number of OIF supported is 1000.
– Maximum number of MLDP ingress labels (local labels) supported on each PE is 100,000.
– Maximum number of MLDP egress labels (remote labels) supported on each PE is 100,000.
– Max of 32 PE or P neighbors in a PE router per MDT, and max of 33 PE or P neighbors in a P router per MDT.
- Supported content group modes are Protocol Independent Multicast (PIM) sparse mode (PIM-SM) and Source Specific Multicast (SSM) traffic.
- Unsupported content group modes are PIM dense mode (PIM-DM) and bidirectional PIM (bidir-PIM) traffic.
- The PIM-sparse content group mode is supported if the RP is configured behind the PE router (on CE). The RP and the source router have to be in the same VRF and PE site with the same RPF interface.
- For RPF lookup in the context of the extranet, only the ip multicast rpf select command is supported for the configuration.
- The MLDP provides only link protection with the FRR TE. Only single hop is supported with MLDP TE. However, the backup path can have multiple hops.
Configuring LSM-MLDP-based MVPN Support
Deployment of an LSM-MLDP-based MVPN involves configuring a default Multicast Distribution Trees (MDT) and one or more data MDTs.
A static default MDT is established for each multicast domain. The default MDT defines the path used by PE routers to send multicast data and control messages to other PE routers in the multicast domain. A default MDT is created in the core network using a single MP2MP LSP.
An MLDP-based MVPN also supports dynamic creation of data MDTs for high-bandwidth transmissions. For high-rate data sources, a data MDT is created using the P2MP LSPs to offload the traffic from the default MDT to avoid unnecessary wastage of bandwidth to PEs that are not a part of the stream. You can configure MLDP MVPN for both the intranet and the extranet.
Note Before configuring MLDP-based MVPN, ensure that the MPLS is enabled on the core facing interface. For information on MPLS configuration, see the Cisco IOS Multiprotocol Label Switching Configuration Guide. Also, ensure that the BGP and any interior gateway protocol (OSPF or ISIS) is enabled on the core router.
Configuring MLDP MVPN Intranet Services
Complete these steps to configure MLDP MVPN for intranet:
- Enabling MPLS MLDP
- Configuring MVPN Routing and Forwarding instance
- Configuring a VRF entry
- Configuring the route distinguisher
- Configuring VPN Id
- Configuring the Route-Target extended community
- Configuring the default MDT
- Configuring Data MDTs (optional)
- Configuring BGP MDT address family
- Configuring BGP vpnv4 address family
- Configuring BGP VRF address family
- Configuring PIM SM/SSM mode for the VRFs
SUMMARY STEPS
1. enable
2. configure terminal
3. mpls MLDP
4. vrf definition vrf-name
5. rd route-distinguisher
6. vpn id vpn_id
7. route-target [import | export | both] route-target-ext-community
8. route-target [import | export | both] route-target-ext-community
9. mdt default mpls MLDP root-node
10. mdt data mpls MLDP numberofdataMDTs
11. mdt data threshold bandwidth
12. exit
13. ip multicast-routing vrf vrf-name distributed
14. end
Note See Configuring the MDT Address Family in BGP for Multicast VPN for information on configuring an MDT and vpnv4 address family session on the PE routers to establish MDT peering sessions for MVPN.
DETAILED STEPS
|
|
|
Step 1 |
enable
|
Enables privileged EXEC mode.
- Enter your password when prompted.
|
Step 2 |
configure terminal
Router# configure terminal |
Enters global configuration mode. |
Step 3 |
mpls MLDP
Router(config)# mpls MLDP |
Enables MPLS MLDP support.
Note The mpls MLDP command is configured by default. To disable MPLS MLDP, use the no mpls MLDP command.
|
Step 4 |
vrf definition vrf-name
Router(config)# ip vrf blue |
Defines the VPN routing instance by assigning a VRF name, and enters the VRF configuration mode. The vrf-name argument is the name assigned to a VRF. |
Step 5 |
rd route-distinguisher
Router(config-vrf)# rd 10:3 |
Creates routing and forwarding tables. Specify the route-distinguisher argument to add an 8-byte value to create a VPN prefix. You can enter an route-distinguisher value in either of these formats:
- 16-bit autonomous system number: Your 16-bit number. For example, 101:3.
- 32-bit IP address: Your 32-bit number. For example, 192.168.122.15:1.
|
Step 6 |
vpn id vpn-id
Router(config-vrf)# vpn id 10:3 |
Sets or updates a VPN identifier on a VRF. |
Step 7 |
route-target import route-target-ext-community
Router(config-vrf)# route-target import 10:3 |
Creates a route-target extended community for a VRF.
- The import keyword imports the routing information from the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 8 |
route-target export route-target-ext-community
Router(config-vrf)# route-target export 10:3 |
Creates a route-target extended community for a VRF.
- The export keyword exports the routing information from the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 9 |
mdt default mpls MLDP root-node
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2 |
Configures MLDP MDT for a VRF. The root node can be IP address of a loopback or physical interface on any router (source PE, receiver PE or core router) in the provider network. The root node address should be reachable by all the routers in the network. The router from where the signalling occurs functions as the root node. The default MDT must be configured on each PE router to enable the PE routers to receive multicast traffic for this particular MVRF.
Note By default MPLS MLDP is enabled. To disable, use the no mpls MLDP command.
Note LSPVIF tunnel is created as a result of mdt default mpls MLDP root-node command.
|
Step 10 |
mdt data mpls MLDP numberofdataMDTs
Router(config-vrf)# mdt data mpls MLDP 100 |
Configures the MLDP data MDP. |
Step 11 |
mdt data threshold bandwidth
Router(config-vrf)# mdt data threshold 20 |
Configures the threshold value for data MDT.
Note Bandwidth is traffic rate in Kb/s.
|
Step 12 |
exit
Router(config-vrf)# exit |
Exits the configuration session. |
Step 13 |
ip multicast-routing vrf vrf-name distributed
Router(config)# ip multicast-routing vrf blue distributed |
Enables multicast routing for the specified VRF. |
Step 14 |
end
Router(config)# end |
Closes the configuration session. |
Note See Configuring the MDT Address Family in BGP for Multicast VPN for information on configuring an MDT address family session on the PE routers to establish MDT peering sessions for MVPN.
Example
This example describes how to configure MLDP MVPN on an intranet:
Router# configure terminal
Router(config)# mpls MLDP
Router(config)# ip vrf blue
Router(config-vrf)# rd 10:3
Router(config-vrf)# vpn id 10:3
Router(config-vrf)# route-target import 10:3
Router(config-vrf)# route-target export 10:3
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2
Router(config-vrf)# mdt data mpls MLDP 100
Router(config-vrf)# mdt data threshold 20
Router(config)# ip multicast-routing vrf blue distributed
Verification
Use these commands to verify the LSM-MLDP-based MVPN support intranet configuration.
- To check the MLDP neighbors, use the show mpls MLDP neighbors command:
Router# show mpls MLDP neighbors
MLDP peer ID : 3.3.3.3:0, uptime 00:41:41 Up,
Path(s) : 3.3.3.3 No LDP Tunnel20
MLDP peer ID : 2.2.2.2:0, uptime 00:17:42 Up,
Path(s) : 3.3.3.3 No LDP Tunnel20
- To check the PIM neighbors, use the show ip pim vrf vrf-name neighbor command:
Router# show ip pim vrf blue neighbor
Mode: B - Bidir Capable, DR - Designated Router, N - Default DR Priority,
P - Proxy Capable, S - State Refresh Capable, G - GenID Capable
Neighbor Interface Uptime/Expires Ver DR
3.3.3.3 Lspvif1 00:06:21/00:01:17 v2 1 / DR S P G
- To check the multicast routes for a given VRF, use show ip mroute vrf vrf_name verbose command:
Router# show ip mroute vrf blue verbose
IP Multicast Routing Table
Flags: D - Dense, S - Sparse, B - Bidir Group, s - SSM Group, C - Connected,
L - Local, P - Pruned, R - RP-bit set, F - Register flag,
T - SPT-bit set, J - Join SPT, M - MSDP created entry, E - Extranet,
X - Proxy Join Timer Running, A - Candidate for MSDP Advertisement,
U - URD, I - Received Source Specific Host Report,
Z - Multicast Tunnel, z - MDT-data group sender,
Y - Joined MDT-data group, y - Sending to MDT-data group,
V - RD & Vector, v - Vector
Outgoing interface flags: H - Hardware switched, A - Assert winner
Interface state: Interface, Next-Hop or VCD, State/Mode
(40.0.0.2, 232.0.1.4), 00:00:16/00:03:13, flags: sT
Incoming interface: GigabitEthernet3/2/1, RPF nbr 0.0.0.0
Lspvif1, LSM MDT: B0000004 (default), Forward/Sparse, 00:00:16/00:03:13
(*, 224.0.1.40), 00:47:09/00:02:56, RP 0.0.0.0, flags: DPL
Incoming interface: Null, RPF nbr 0.0.0.0
Outgoing interface list: Null
- To check the packet counters, use show ip mroute vrf vrf_name count command:
Router# show ip mroute vrf blue count
2 routes using 1208 bytes of memory
2 groups, 0.50 average sources per group
Forwarding Counts: Pkt Count/Pkts per second/Avg Pkt Size/Kilobits per second
Other counts: Total/RPF failed/Other drops(OIF-null, rate-limit etc)
Group: 232.0.1.4, Source count: 1, Packets forwarded: 1333, Packets received: 1334
Source: 40.0.0.2/32, Forwarding: 1333/20/46/7, Other: 1334/0/1
Group: 224.0.1.40, Source count: 0, Packets forwarded: 0, Packets received: 0
- To check the MPLS forwarding, use show mpls forwarding-table command:
Router# show mpls forwarding-table
Local Outgoing Prefix Bytes Label Outgoing Next Hop
Label Label or Tunnel Id Switched interface
16 Pop Label IPv4 VRF[V] 0 aggregate/blue
17 Pop Label IPv4 VRF[V] 0 aggregate/red
18 [T] Pop Label 3.3.3.3/32 0 Tu20 point2point
19 [T] 25 2.2.2.2/32 0 Tu20 point2point
20 [T] Pop Label 19.0.0.0/24 0 Tu20 point2point
22 [T] No Label [mdt 55:1111 0][V] \9422 aggregate/red
23 [T] No Label [mdt 55:2222 0][V] \9708 aggregate/blue
[T] Forwarding through a LSP tunnel.
View additional labelling info with the 'detail' option
Configuring MLDP MVPN for Extranet Services
You can configure MLDP MVPN for extranet services using these methods:
- Source-Side Chaining (SSC): Configure the phantom receiver MVRF on the source-side router. Multicast routes with VRF Reverse Path Forwarding (RPF) loopup should be configured on the source PE.
- Receiver-Side Chaining (RSC): Configure the phantom source MVRF on the receiver-side router. Multicast routes with VRF RPF loopup should be configured on the receiver VRF.
Configuring MLDP MVPN for Extranet using SSC
Complete these steps to configure the MLDP MVPN extranet support using SSC:
- Configuring receiver MVRF on the source PE.
- Configuring a loopback address in the receiver VRF on the source PE.
- Configuring fallback multicast route for source address on source PE.
- Configuring fallback multicast route for RP address on the source PE in case of SM mode.
- Configuring static multicast route on recevier PE for loopback IP in the receiver VRF configured on the source PE.
Note This configuration is based on illustration Figure 19-1. Configure multicast routes on the PE1 router.
Figure 19-1 MLDP Based MVPN Network
SUMMARY STEPS
The followings are the summary steps to configure MLDP MVPN for Extranet using SSC.
Configuration on the Source PE:
1. enable
2. configure terminal
3. vrf definition vrf-name
4. rd route-distinguisher
5. vpn id vpn_id
6. route-target import route-target-ext-community
7. route-target import route-target-ext-community
8. mdt default mpls MLDP root-node
9. end
10. interface type instance
11. ip vrf forwarding vrf-name
12. ip address ip-address subnet
13. exit
14. ip multicast [vrf receiver-vrf-name] rpf select {global | vrf source-vrf-name} group-list access-list
15. end
Configuration on the receiver PE:
1. enable
2. configure terminal
3. vrf definition vrf-name
4. rd route-distinguisher
5. vpn id vpn_id
6. route-target import route-target-ext-community
7. route-target import route-target-ext-community
8. mdt default mpls MLDP root-node
9. end
10. interface type instance
11. ip vrf forwarding vrf-name
12. ip address ip-address subnet
13. exit
14. ip mroute vrf receiver_vrf source_address subnet_mask loopback_ip
15. end
DETAILED STEPS
The followings are the detailed steps to configure MLDP MVPN for Extranet using SSC.
Configuration on the Source PE:
|
|
|
Step 1 |
enable
|
Enables privileged EXEC mode.
- Enter your password when prompted.
|
Step 2 |
configure terminal
Router# configure terminal |
Enters global configuration mode. |
Step 3 |
vrf definition vrf-name
Router(config)# vrf definition blue |
Defines the VPN routing instance by assigning a VRF name argument, and enters the VRF configuration mode. The vrf-name argument is the name assigned to a VRF. |
Step 4 |
rd route-distinguisher
Router(config-if)# rd 10:4 |
Creates routing and forwarding tables. Specify the route-distinguisher argument to add an 8-byte value to create a VPN prefix. You can enter an route-distinguisher value in either of these formats:
- 16-bit autonomous system number: Your 16-bit number. For example, 101:3.
- 32-bit IP address: Your 32-bit number. For example, 192.168.122.15:1.
|
Step 5 |
vpn id vpn-id
Router(config-if)# vpn id 10:4 |
Sets or updates a VPN identifier on a VRF. |
Step 6 |
route-target import route-target-ext-community
Router(config-vrf)# route-target import 10:4 |
Creates a route-target extended community for a VRF.
- The import keyword imports the routing information from the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 7 |
route-target export route-target-ext-community
Router(config-vrf)# route-target export 10:4 |
Creates a route-target extended community for a VRF.
- The export keyword export the routing information to the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 8 |
mdt default mpls MLDP root-node
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2 |
Configures MLDP multicast distribution tree (MDT) for a VRF.
Note LSPVIF tunnel is created as a result of this command.
|
Step 9 |
end
Router(config-vrf)# end |
Closes the configuration session. |
Step 10 |
interface type instance
Router(config)# interface loopback 3 |
Enters interface configuration mode and names the new loopback interface. |
Step 11 |
ip vrf forwarding vrf-name
Router(config-if)# ip vrf forwarding red |
Associates a VRF instance with an interface or subinterface.
- vrf-name is the name assigned to a VRF.
|
Step 12 |
ip address ip-address subnet-mask
Router(config-if)# ip address 1.1.1.1 255.255.255.255 |
Specifies the interface IP address and subnet mask.
- ip-address specifies the IP address of the interface.
- subnet-mask specifies the subnet mask of the interface.
|
Step 13 |
exit |
Exits the interface configuration mode. |
Step 14 |
ip multicast [vrf receiver-vrf-name] rpf select {global | vrf source-vrf-name} group-list access-list
Router(config)# ip multicast vrf red rpf select vrf blue |
Configures Reverse Path Forwarding (RPF) lookups originating in a receiver Multicast VPN (MVPN) routing and forwarding (MVRF) instance, in the global routing table to be performed in a source MVRF instance, or in the global routing table based on group address. The optional vrf keyword and receiver-vrf-name argument are used to apply a group-based VRF selection policy to RPF lookups originating in the VRF specified for the receiver-vrf-name argument. If the optional vrf keyword and receiver-vrf-name argument are not specified, the group-based VRF selection policy applies to RPF lookups originating from the global table. |
Step 15 |
end
Router(config-vrf)# end |
Closes the configuration session. |
Configuration on Receiver PE:
|
|
|
Step 1 |
enable
|
Enables privileged EXEC mode.
- Enter your password when prompted.
|
Step 2 |
configure terminal
Router# configure terminal |
Enters global configuration mode. |
Step 3 |
vrf definition vrf-name
Router(config)# vrf definition blue |
Defines the VPN routing instance by assigning a VRF name, and enters the VRF configuration mode. The vrf-name argument is the name assigned to a VRF. |
Step 4 |
rd route-distinguisher
Router(config-if)# rd 10:4 |
Creates routing and forwarding tables. Specify the route-distinguisher argument to add an 8-byte value to create a VPN prefix. You can enter an RD value in either of these formats:
- 16-bit autonomous system number: Your 16-bit number. For example, 101:3.
- 32-bit IP address: Your 32-bit IP address. For example, 192.168.122.15:1.
|
Step 5 |
vpn id vpn-id
Router(config-if)# vpn id 10:4 |
Sets or updates a VPN identifier on a VRF. |
Step 6 |
route-target import route-target-ext-community
Router(config-vrf)# route-target import 10:4 |
Creates a route-target extended community for a VRF.
- The import keyword imports the routing information from the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 7 |
route-target export route-target-ext-community
Router(config-vrf)# route-target export 10:4 |
Creates a route-target extended community for a VRF.
- The export keyword exports the routing information to the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 8 |
mdt default mpls MLDP root-node
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2 |
Configures MLDP multicast distribution tree (MDT) for a VRF.
Note LSPVIF tunnel is created as a result of this command.
|
Step 9 |
end
Router(config-vrf)# end |
Closes the configuration session. |
Step 10 |
interface type instance
Router(config)# interface loopback 3 |
Enters interface configuration mode and names the new loopback interface. |
Step 11 |
ip vrf forwarding vrf-name
Router(config-if)# ip vrf forwarding blue |
Associates a VRF instance with an interface or subinterface.
- vrf-name is the name assigned to a VRF.
|
Step 12 |
ip address ip-address subnet-mask
Router(config-if)# ip address 3.3.3.3 255.255.255.255 |
Specifies the interface IP address and subnet mask.
- ip-address specifies the IP address of the interface.
- subnet-mask specifies the subnet mask of the interface.
|
Step 13 |
exit |
Exits the interface configuration mode. |
Step 14 |
ip mroute vrf receiver_vrf source_address subnet_mask loopback_ip
Router(config-if)# ip mroute vrf red 40.0.0.0 255.255.255.0 1.1.1.1 |
Configures the static multicast routes for source addresses in the reciever VRF, where: loopback ip is ip address of the loopback configured in the recevier VRF in the source PE. |
Step 15 |
end
Router(config-vrf)# end |
Closes the configuration session. |
Example
This is sample example for configuring MLDP MVPN for configuring extranet using SSC:
Configuration on the Source PE(Configure These Steps for Both Red and Blue VRFs)
Router# configure terminal
Router(config)# ip vrf blue
Router(config-if)# rd 10:4
Router(config-if)# vpn id 10:4
Router(config-vrf)# route-target import 10:4
Router(config-vrf)# route-target export 10:4
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2
Router(config)# interface loopback 3
Router(config-if)# ip vrf forwarding red
Router(config-if)# ip address 1.1.1.1 255.255.255.255
Router(config)# ip mroute vrf red 40.0.0.0 255.255.255.0 fallback-lookup vrf blue
Router(config)# ip mroute vrf red 44.44.44.44 255.255.255.0 fallback-lookup vrf blue
Configuration on the Receiver PE
Router# configure terminal
Router(config)# ip vrf blue
Router(config-if)# rd 10:4
Router(config-if)# vpn id 10:4
Router(config-vrf)# route-target import 10:4
Router(config-vrf)# route-target export 10:4
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2
Router(config)# interface loopback 3
Router(config-if)# ip vrf forwarding blue
Router(config-if)# ip address 3.3.3.3 255.255.255.255 Remove
Router(config-if)# ip mroute vrf red 40.0.0.0 255.255.255.0 1.1.1.1
Configuring MLDP MVPN for Extranet Services using RSC
Complete these steps to configuring MLDP MVPN for extranet services using RSC:
- Configuring the source mVRF on the receiver PE router.
- Configuring RPF for MLDP based MVPN extranet support using static multicast routes on the receiver PE.
Note This configuration is based on illustration Figure 19-1. Configure multicast routes on PE2 and PE3 routers.
SUMMARY STEPS
Configuration on Source PE:
1. enable
2. configure terminal
3. vrf definition vrf-name
4. rd route-distinguisher
5. vpn id vpn_id
6. route-target import route-target-ext-community
7. route-target import route-target-ext-community
8. mdt default mpls MLDP root-node
9. end
Configuration on Receiver PE (Configure these steps for both red and blue VRFs)
1. enable
2. configure terminal
3. vrf definition vrf-name
4. rd route-distinguisher
5. vpn id vpn_id
6. route-target import route-target-ext-community
7. route-target import route-target-ext-community
8. mdt default mpls MLDP root-node
9. ip mroute [vrf recevier-vrf-name] source-address mask fallback-lookup {global | vrf source-vrf-name} [distance]
10. end
DETAILED STEPS
Configuration on Source PE
|
|
|
Step 1 |
enable
|
Enables privileged EXEC mode.
- Enter your password when prompted.
|
Step 2 |
configure terminal
Router# configure terminal |
Enters global configuration mode. |
Step 3 |
vrf definition vrf-name
Router(config)# ip vrf blue |
Defines the VPN routing instance by assigning a VRF name, and enters the VRF configuration mode. The vrf-name argument is the name assigned to a VRF. |
Step 4 |
rd route-distinguisher
Router(config-if)# rd 10:3 |
Creates routing and forwarding tables. Specify the route-distinguisher argument to add an 8-byte value to create a VPN prefix. You can enter an RD value in either of these formats:
- 16-bit autonomous system number: Your 16-bit number. For example, 101:3.
- 32-bit IP address: Your 32-bit number. For example, 192.168.122.15:1.
|
Step 5 |
vpn id vpn-id
Router(config-if)# vpn id 10:3 |
Sets or updates a VPN identifier on a VRF. |
Step 6 |
route-target import route-target-ext-community
Router(config-vrf)# route-target import 10:3 |
Creates a route-target extended community for a VRF.
- The import keyword imports routing information from the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 7 |
route-target export route-target-ext-community
Router(config-vrf)# route-target export 10:3 |
Creates a route-target extended community for a VRF.
- The export keyword exports the routing information to the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 8 |
mdt default mpls MLDP root-node
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2 |
Configures MLDP multicast distribution tree (MDT) for a VRF.
Note LSPVIF tunnel is created as a result of this command.
|
Step 9 |
end
Router(config-vrf)# end |
Closes the configuration session. |
Configuration on Receiver PE
|
|
|
Step 1 |
enable
|
Enables privileged EXEC mode.
- Enter your password when prompted.
|
Step 2 |
configure terminal
Router# configure terminal |
Enters global configuration mode. |
Step 3 |
vrf definition vrf-name
Router(config)# ip vrf blue |
Defines the VPN routing instance by assigning a VRF name, and enters the VRF configuration mode. The vrf-name argument is the name assigned to a VRF. |
Step 4 |
rd route-distinguisher
Router(config-if)# rd 10:3 |
Creates routing and forwarding tables. Specify the route-distinguisher argument to add an 8-byte value to create a VPN prefix. You can enter an RD value in either of these formats:
- 16-bit autonomous system number: Your 16-bit number. For example, 101:3.
- 32-bit IP address: Your 32-bit number. For example, 192.168.122.15:1.
|
Step 5 |
vpn id vpn-id
Router(config-if)# vpn id 10:3 |
Sets or updates a VPN identifier on a VRF. |
Step 6 |
route-target import route-target-ext-community
Router(config-vrf)# route-target import 10:3 |
Creates a route-target extended community for a VRF.
- The import keyword imports routing information from the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 7 |
route-target export route-target-ext-community
Router(config-vrf)# route-target export 10:3 |
Creates a route-target extended community for a VRF.
- The export keyword exports the routing information to the target VPN extended community.
- The route-target-ext-community argument adds the route-target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 8 |
mdt default mpls MLDP root-node
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2 |
Configures MLDP multicast distribution tree (MDT) for a VRF.
Note LSPVIF tunnel is created as a result of this command.
|
Step 9 |
ip mroute [vrf receiver-vrf-name] source-address mask {fallback-lookup vrf source-vrf-name} [distance]
Router(config)# ip mroute vrf red 40.0.0.0 255.255.255.0 fallback-lookup vrf blue |
Configures RPF lookups originating in a receiver MVRF or in the global routing table to be resolved in a source MVRF or in the global routing table based on group address. Use this command on the receiver PE.
- The optional vrf keyword and receiver-vrf-name argument are used to apply a group-based VRF selection policy to RPF lookups originating in the VRF specified for the receiver-vrf-name argument. If the optional vrf keyword and receiver-vrf-name argument are not specified, the group-based VRF selection policy applies to RPF lookups originating in the global table.
|
Step 10 |
end
Router(config-vrf)# end |
Closes the configuration session. |
Example
This is sample example for configuring MLDP MVPN for configuring extranet using RSC:
Configuration on Source PE:
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)# ip vrf blue1
Router(config-if)# rd 10:3
Router(config-if)# vpn id 10:3
Router(config-vrf)# route-target import 10:3
Router(config-vrf)# route-target export 10:3
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2
mdt default mpls MLDP root-node
Router(config)# ip mroute vrf red 40.0.0.0 255.255.255.0 fallback-lookup vrf blue
Configuration on Receiver PE:
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)# ip vrf blue1
Router(config-if)# rd 10:3
Router(config-if)# vpn id 10:3
Router(config-vrf)# route-target import 10:3
Router(config-vrf)# route-target export 10:3
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2
Router(config)# ip mroute vrf red 40.0.0.0 255.255.255.0 fallback-lookup vrf blue
Configuring MLDP TE-FRR Support
TE-FRR provides link protection, however TE-FRR on MLDP provides link protection only for the single hop primary path. Node protection is not supported.These are the highlights:
- Backup tunnel support
- Backup bandwidth protection
For more information on MPLS TE-FRR, see MPLS Point-to-Multipoint Traffic Engineering.
Summary Steps
1. enable
2. configure terminal
3. ip multicast mpls traffic-eng [range {access-list-number | access-list-name}]
4. mpls MLDP path traffic-eng
5. end
DETAILED STEPS
|
|
|
Step 1 |
enable
|
Enables privileged EXEC mode.
- Enter your password when prompted.
|
Step 2 |
configure terminal
Router# configure terminal |
Enters global configuration mode. |
Step 3 |
ip multicast mpls traffic-eng [range {access-list-number | access-list-name}]
Router(config)# ip multicast mpls traffic-eng |
Enables IP multicast traffic on a tail end router enabled with MPLS TE P2MP functionality. |
Step 4 |
mpls MLDP path traffic-eng
Router(config)# mpls MLDP path traffic-en |
Configures MLDP to use traffic-eng tunnels. |
Step 5 |
end
Router(config)# end |
Closes the configuration session. |
For more information, see MPLS Traffic Engineering (TE) - Fast Reroute (FRR) Link and Node Protection.
Configuring MLDP with PIM-based MVPN
MLDP with PIM-based MVPN supports MLDP coexistence with a PIM-based MVPN deployment. Using this feature, you can gradually introduce MLDP in an existing PIM-based MVPN environment, facilitating phased migration towards a complete LSM-based MVPN network infrastructure. If both the MLDP-based MVPN and GRE-based MVPN are configured, MDT selects PIM based MVPN by default. Configure the precedence for MLDP MVPN and PIM based MVPN using the mdt preference option1 option2 command. This example sets MLDP MVPN precedence over PIM based MVPN:
Router(config-vrf)# mdt preference MLDP pim
MLDP Support with Load Balancing
MLDP supports load balancing of multicast traffic with Equal Cost Multipath (ECMP) links. For Load balancing to work with MLDP, use the disable mpls MLDP forwarding recursive command, which is enabled by default. Also, ensure that the mpls MLDP path multipath command is enabled for load balancing to function as expected.
Root Node Redundancy
Configure multiple root nodes in the network using the mdt default mpls MLDP ip_address command. The control plane builds a corresponding tree with root at the configured node to enable efficient forwarding. A node in the network selects the nearest root for optimal bandwidth usage. Also, in case a root node is unreachable (due to link failure, or router crash), the node switches to the next available root.
This example describes the root node redundancy configuration:
Router(config)# ip vrf blue1
Router(config-if)# rd 10:3
Router(config-if)# vpn id 10:3
Router(config-vrf)# route-target import 10:3
Router(config-vrf)# route-target export 10:3
Router(config-vrf)# mdt default mpls MLDP 2.2.2.2
Router(config-vrf)# mdt default mpls MLDP 5.5.5.5
Verification
Use these commands to verify the LSM-MLDP-based MVPN support configuration.
- To check the MLDP neighbors, use the show mpls MLDP neighbors command:
Router# show mpls MLDP neighbors
MLDP peer ID : 3.3.3.3:0, uptime 00:41:41 Up,
Path(s) : 3.3.3.3 No LDP Tunnel20
MLDP peer ID : 2.2.2.2:0, uptime 00:17:42 Up,
Path(s) : 3.3.3.3 No LDP Tunnel20
- To check the PIM neighbors, use the show ip pim vrf vrf_name neighbor command:
Router# show ip pim vrf blue neighbor
Mode: B - Bidir Capable, DR - Designated Router, N - Default DR Priority,
P - Proxy Capable, S - State Refresh Capable, G - GenID Capable
Neighbor Interface Uptime/Expires Ver DR
3.3.3.3 Lspvif1 00:06:21/00:01:17 v2 1 / DR S P G
- To check the multicast routes for a given VRF, use show ip mroute vrf vrf_name verbose command:
Router# show ip mroute vrf blue verbose
IP Multicast Routing Table
Flags: D - Dense, S - Sparse, B - Bidir Group, s - SSM Group, C - Connected,
L - Local, P - Pruned, R - RP-bit set, F - Register flag,
T - SPT-bit set, J - Join SPT, M - MSDP created entry, E - Extranet,
X - Proxy Join Timer Running, A - Candidate for MSDP Advertisement,
U - URD, I - Received Source Specific Host Report,
Z - Multicast Tunnel, z - MDT-data group sender,
Y - Joined MDT-data group, y - Sending to MDT-data group,
V - RD & Vector, v - Vector
Outgoing interface flags: H - Hardware switched, A - Assert winner
Interface state: Interface, Next-Hop or VCD, State/Mode
(40.0.0.2, 232.0.1.4), 00:00:16/00:03:13, flags: sT
Incoming interface: GigabitEthernet3/2/1, RPF nbr 0.0.0.0
Lspvif1, LSM MDT: B0000004 (default), Forward/Sparse, 00:00:16/00:03:13
(*, 224.0.1.40), 00:47:09/00:02:56, RP 0.0.0.0, flags: DPL
Incoming interface: Null, RPF nbr 0.0.0.0
Outgoing interface list: Null
- To check the packet counters, use show ip mroute vrf vrf_name count command:
Router# show ip mroute vrf blue count
2 routes using 1208 bytes of memory
2 groups, 0.50 average sources per group
Forwarding Counts: Pkt Count/Pkts per second/Avg Pkt Size/Kilobits per second
Other counts: Total/RPF failed/Other drops(OIF-null, rate-limit etc)
Group: 232.0.1.4, Source count: 1, Packets forwarded: 1333, Packets received: 1334
Source: 40.0.0.2/32, Forwarding: 1333/20/46/7, Other: 1334/0/1
Group: 224.0.1.40, Source count: 0, Packets forwarded: 0, Packets received: 0
- To check the MFIB output and whether hardware switching or software switching is enabled, use show ip mfib vrf vrf_name group_address verbose command:
Router# show ip mfib vrf blue 232.0.1.4 verbose
Entry Flags: C - Directly Connected, S - Signal, IA - Inherit A flag,
ET - Data Rate Exceeds Threshold, K - Keepalive
DDE - Data Driven Event, HW - Hardware Installed
I/O Item Flags: IC - Internal Copy, NP - Not platform switched,
NS - Negate Signalling, SP - Signal Present,
A - Accept, F - Forward, RA - MRIB Accept, RF - MRIB Forward,
Platform per slot HW-Forwarding Counts: Pkt Count/Byte Count
Platform Entry flags: HF - Hardware Forwarding, NP - Not platform switched,
PF - Partial Hardware Forwarding
Platform Interface flags: HW - Hardware Switched, NP - Not platform switched
Forwarding Counts: Pkt Count/Pkts per second/Avg Pkt Size/Kbits per second
Other counts: Total/RPF failed/Other drops
I/O Item Counts: FS Pkt Count/PS Pkt Count
(40.0.0.2,232.0.1.4) Flags: K HW
Slot 6: HW Forwarding: 912/41952, Platform Flags: HF
SW Forwarding: 0/0/0/0, Other: 1/0/1
HW Forwarding: 912/20/46/7, Other: 0/0/0
GigabitEthernet3/2/1 Flags: RA A MA
Lspvif1, LSM/B0000004 Flags: RF F NS
- To check the labels, use show mpls forwarding-table command:
Router# show mpls forwarding-table
Local Outgoing Prefix Bytes Label Outgoing Next Hop
Label Label or Tunnel Id Switched interface
16 Pop Label IPv4 VRF[V] 0 aggregate/blue
17 Pop Label IPv4 VRF[V] 0 aggregate/red
18 [T] Pop Label 3.3.3.3/32 0 Tu20 point2point
19 [T] 25 2.2.2.2/32 0 Tu20 point2point
20 [T] Pop Label 19.0.0.0/24 0 Tu20 point2point
22 [T] No Label [mdt 55:1111 0][V] \9422 aggregate/red
23 [T] No Label [mdt 55:2222 0][V] \9708 aggregate/blue
[T] Forwarding through a LSP tunnel.
View additional labelling info with the 'detail' option
- To display all the Replicate Output Chain Element (Replicate OCE) on the Forwarding Manager (FMAN) RP, use show platform software mpls rp act-status replicate command.
Router#show platform software mpls rp active replicate
Replicate-oce-list: 0x400000d2 (1 OCEs)
Replicate-oce-list: 0x400000d3 (1 OCEs)
Replicate-oce-list: 0x400000d4 (0 OCEs)
Replicate-oce-list: 0x400000d5 (0 OCEs)
- To display the Replicate OCE with the specified index value on FMAN RP, use show platform software mpls rp act-status replicate index index-value command.
Note You should run "show platform software mpls rp active replicate" first to see the all the replicated OCE on the FMAN RP.
Router#show platform software mpls fp active replicate
Replicate-oce-list: 0x84 (1 OCEs)
AOM obj: 478, HW list: 0x11b19610 (created)
Router#show platform software mpls rp active replicate index 0x84 Replicate-oce-list entries
------------------------------------------------------------------------------------
0xa3 OBJ_LABEL aom id: 494, HW info: 0x11b19e40
- To display all the replicated OCE on the FMAN FP, use show platform software mpls fp act-status replicate command.
Router#show platform software mpls fp active replicate
Replicate-oce-list: 0x400000d2 (1 OCEs)
AOM obj: 352887, HW list: 0x11a65628 (created)
Replicate-oce-list: 0x400000d3 (1 OCEs)
AOM obj: 352889, HW list: 0x10d4a518 (created)
Replicate-oce-list: 0x400000d4 (0 OCEs)
AOM obj: 352891, HW list: 0x139e3d90 (created)
Replicate-oce-list: 0x400000d5 (0 OCEs)
AOM obj: 352894, HW list: 0x139e7cb8 (created)
- To display the complete OCE chain used for forwarding traffic to a particular IPv4 multicast address, use show platform hardware qfp active feature multicast v4mcast ip-address-mgroup ip-address-source vrf vrf-id extension command.
Router#show platform hardware qfp active feature multicast v4mcast 239.1.1.1/32 vrf 2 extension
NS DCS Punt limit: 0x000001
RPF Fast Convergence Flags: 00000000
Secondary RPF interface: 00000000
RPF Fast Convergence Timer: 0
Extended leaf address: 0x89f80060
Cumulative Free Space: : 4
Software Child Ptr: : 0x1187fce0, 0x1187fd60, 0x11887fa8, 00000000
00000000, 00000000, 00000000
Hardware Child Ptr: : 0x89f8e440, 0x89f8e450, 0x89f8e460, 00000000
00000000, 00000000, 00000000
SW OCE chain ptr: 0x11884b48
HW OCE chain ptr: 0x895d59a0
OCE Type: Adjacency, Number of children: 1
Adj Type: : IPV4 Adjacency
Next Hop Address: : 00000000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 0x895d5940
OCE Type: REPLICATE OCE, Number of children: 1
Replica_node: : 0x89fab440
Next HW OCE Ptr: : 0x895d5ab0
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x895d5a70
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x895d59f0
OCE Type: Adjacency, Number of children: 0
Adj Type: : MPLS Adjacency
Interface Name: GigabitEthernet0/1/0
Encap: : 00 24 14 f4 9d 00 00 21 d8 d4 a5 10 88 47
Next Hop Address: : 0b000002 00000000 00000000 00000000
Next HW OCE Ptr: : 00000000
SW OCE chain ptr: 0x118830d0
HW OCE chain ptr: 0x895d58f0
OCE Type: Adjacency, Number of children: 0
Adj Type: : IPV4 Adjacency
Encap: : 45 00 00 00 00 00 00 00 ff 67 39 94 c0 00 01 01
Next Hop Address: : 00000000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 00000000
SW OCE chain ptr: 0x1186c250
HW OCE chain ptr: 0x895d5650
OCE Type: Adjacency, Number of children: 0
Adj Type: : IPV4 Adjacency
Interface Name: GigabitEthernet0/1/2
Encap: : 01 00 5e 00 00 00 00 21 d8 d4 a5 12 08 00
Next Hop Address: : e1000000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 00000000
SW OCE chain ptr: 0x1186d478
HW OCE chain ptr: 0x895d5660
OCE Type: Adjacency, Number of children: 0
Adj Type: : IPV4 Adjacency
Interface Name: GigabitEthernet0/1/4
Encap: : 01 00 5e 00 00 00 00 21 d8 d4 a5 14 08 00
Next Hop Address: : e1000000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 00000000
- To display the complete OCE chain used for forwarding traffic to a particular IPv6 multicast address, use show platform hardware qfp active feature multicast v6mcast ip-address-mgroup ip-address-source vrf vrf-id extension command.
Router#show platform hardware qfp active feature multicast v6mcast FF04::10/128 vrf 503316482 extension
NS DCS Punt limit: 0x000001
RPF Fast Convergence Flags: 00000000
Secondary RPF interface: 00000000
RPF Fast Convergence Timer: 0
Extended leaf address: 0x8ba18c90
Cumulative Free Space: : 4
Software Child Ptr: : 0x11b6dcb0, 0x11b6e0b0, 0x11e55bc8, 00000000
00000000, 00000000, 00000000
Hardware Child Ptr: : 0x8ba24060, 0x8ba24070, 0x8ba245f0, 00000000
00000000, 00000000, 00000000
SW OCE chain ptr: 0x11b71af0
HW OCE chain ptr: 0x895ffa40
OCE Type: Adjacency, Number of children: 1
Adj Type: : IPV6 Adjacency
Next Hop Address: : 00000000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 0x895ffa20
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x895ff9f0
OCE Type: Adjacency, Number of children: 1
Adj Type: : MPLS Adjacency
Next Hop Address: : 00000000 00000000 00000000 00000000
Next HW OCE Ptr: : 0x895ff980
OCE Type: REPLICATE OCE, Number of children: 1
Replica_node: : 0x8ba51060
Next HW OCE Ptr: : 0x895ffa60
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x895ff7b0
OCE Type: Adjacency, Number of children: 0
Adj Type: : MPLS Adjacency
Interface Name: GigabitEthernet0/1/0
Encap: : 00 24 14 f4 9d 00 00 21 d8 d4 a5 10 88 47
Next Hop Address: : 0b000002 00000000 00000000 00000000
Next HW OCE Ptr: : 00000000
SW OCE chain ptr: 0x11b6b800
HW OCE chain ptr: 0x895ff6a0
OCE Type: Adjacency, Number of children: 0
Adj Type: : IPV6 Adjacency
Interface Name: GigabitEthernet0/1/2
Encap: : 33 33 00 00 00 00 00 21 d8 d4 a5 12 86 dd
Next Hop Address: : ff0e0000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 00000000
SW OCE chain ptr: 0x11b6ba08
HW OCE chain ptr: 0x895ff6e0
OCE Type: Adjacency, Number of children: 0
Adj Type: : IPV6 Adjacency
Interface Name: GigabitEthernet0/1/4
Encap: : 33 33 00 00 00 00 00 21 d8 d4 a5 14 86 dd
Next Hop Address: : ff0e0000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 00000000
SW OCE chain ptr: 0x11b6de20
HW OCE chain ptr: 0x895ff770
OCE Type: Adjacency, Number of children: 0
Adj Type: : IPV6 Adjacency
Next Hop Address: : 00000000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 00000000
NS DCS Punt limit: 0x000001
RPF Fast Convergence Flags: 00000000
Secondary RPF interface: 00000000
RPF Fast Convergence Timer: 0
Extended leaf address: 0x8ba21210
Cumulative Free Space: : 4
Software Child Ptr: : 0x11e424b8, 0x11e332b8, 0x11e51b90, 00000000
NS DCS Punt limit: 0x000001
RPF Fast Convergence Flags: 00000000
Secondary RPF interface: 00000000
RPF Fast Convergence Timer: 0
Extended leaf address: 0x8ba212a0
Cumulative Free Space: : 4
Software Child Ptr: : 0x11e424b8, 0x11e56f98, 0x11e51b90, 00000000
00000000, 00000000, 00000000
Hardware Child Ptr: : 0x8ba247a0, 0x8ba24750, 0x8ba24740, 00000000
00000000, 00000000, 00000000
SW OCE chain ptr: 0x11b6ba08
HW OCE chain ptr: 0x895ff6e0
OCE Type: Adjacency, Number of children: 0
Adj Type: : IPV6 Adjacency
Interface Name: GigabitEthernet0/1/4
Encap: : 33 33 00 00 00 00 00 21 d8 d4 a5 14 86 dd
Next Hop Address: : ff0e0000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 00000000
SW OCE chain ptr: 0x11b71af0
HW OCE chain ptr: 0x895ffa40
OCE Type: Adjacency, Number of children: 1
Adj Type: : IPV6 Adjacency
Next Hop Address: : 00000000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 0x895ffa20
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x895ff9f0
OCE Type: Adjacency, Number of children: 1
Adj Type: : MPLS Adjacency
Next Hop Address: : 00000000 00000000 00000000 00000000
Next HW OCE Ptr: : 0x895ff980
OCE Type: REPLICATE OCE, Number of children: 1
Replica_node: : 0x8ba51060
Next HW OCE Ptr: : 0x895ffa60
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x895ff7b0
OCE Type: Adjacency, Number of children: 0
Adj Type: : MPLS Adjacency
Interface Name: GigabitEthernet0/1/0
Encap: : 00 24 14 f4 9d 00 00 21 d8 d4 a5 10 88 47
Next Hop Address: : 0b000002 00000000 00000000 00000000
Next HW OCE Ptr: : 00000000
SW OCE chain ptr: 0x11b6b800
HW OCE chain ptr: 0x895ff6a0
OCE Type: Adjacency, Number of children: 0
Adj Type: : IPV6 Adjacency
Interface Name: GigabitEthernet0/1/2
Encap: : 33 33 00 00 00 00 00 21 d8 d4 a5 12 86 dd
Next Hop Address: : ff0e0000 00000000 00000000 00000000
Lisp locator status: : 00000000
Next HW OCE Ptr: : 00000000
- To display the complete OCE chain used for handling incoming MPLS packets with the particular label, use show platform hardware qfp active feature cef-mpls prefix mpls mpls-lable exact command.
Router# show platform hardware qfp active feature cef-mpls prefix mpls 17 exact
Gtrie Node Type: Leaf Node
HW Content: : 0a000000 00000f00 00000000 8bb08a30
QPPB QoS Precedence valid: 0
BGPPA Traffic Index valid: 0
TBLF application lf handle: 0
Lisp locator status bits: 0
Lisp dynamic configured eid: 0
Lisp dynamic discovered eid: 0
OCE Type: EOS OCE, Number of children: 2
Next HW OCE Ptr: : 0x8bb07e10, 0x8bb07e00
OCE Type: REPLICATE OCE, Number of children: 2
Replica_node: : 0x8ca90a20
Next HW OCE Ptr: : 0x8bb07eb0, 0x8bb08840
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x8bb07e60
OCE Type: Interface OCE, Number of children: 1
Next HW OCE Ptr: : 0x8bb07e40
OCE Type: Lookup OCE, Number of children: 0
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x8bb06ca0
OCE Type: Adjacency, Number of children: 0
Adj Type: : MPLS Adjacency
Interface Name: GigabitEthernet0/1/0
Encap: : 00 0e 39 88 70 19 00 21 d8 60 c0 10 88 47
Next Hop Address: : 0f000001 00000000 00000000 00000000
Next HW OCE Ptr: : 00000000
OCE Type: REPLICATE OCE, Number of children: 2
Replica_node: : 0x8ca90a00
Next HW OCE Ptr: : 0x8bb07e70, 0x8bb08840
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x8bb07e50
OCE Type: Interface OCE, Number of children: 1
Next HW OCE Ptr: : 0x8bb001f0
OCE Type: Lookup OCE, Number of children: 0
OCE Type: Label OCE, Number of children: 1
Next HW OCE Ptr: : 0x8bb06ca0
OCE Type: Adjacency, Number of children: 0
Adj Type: : MPLS Adjacency
Interface Name: GigabitEthernet0/1/0
Encap: : 00 0e 39 88 70 19 00 21 d8 60 c0 10 88 47
Next Hop Address: : 0f000001 00000000 00000000 00000000
Next HW OCE Ptr: : 00000000
Sample Configuration for MLDP MVPN
You can configure MLDP MVPN in these two modes:
- Source Specific Mode (SSM)
- Sparse Mode (SM)
Configuration Example Using SSM Mode
These examples are based on the topology shown in Figure 19-1. Consider these scenarios while configuring MLDP MVPN using SSM mode:
- MLDP MVPN Extranet SSC
- MLDP MVPN Extranet RSC
- MLDP MVPN Intranet
MLDP MVPN Extranet SSC
Configuration on PE1 Router (Source PE):
mdt default mpls MLDP 4.4.4.4
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip multicast-routing vrf red3
ip address 1.1.1.1 255.255.255.255
ip address 101.2.0.2 255.255.255.255
ip address 101.3.0.2 255.255.255.255
interface GigabitEthernet1/22.2
ip address 12.2.0.1 255.255.0.0
interface TenGigabitEthernet8/1
ip address 10.1.1.1 255.255.255.0
network 1.1.1.1 0.0.0.0 area 0
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red3
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 ssm default
ip pim vrf red3 ssm default
ip mroute vrf red3 12.2.0.0 255.255.0.0 fallback-lookup vrf red2
Configuration on PE Router:
ip address 4.4.4.4 255.255.255.255
interface GigabitEthernet2/10
ip address 20.1.1.2 255.255.255.0
interface GigabitEthernet2/20
ip address 30.1.1.2 255.255.255.0
interface TenGigabitEthernet4/0/0
ip address 10.1.1.2 255.255.255.0
network 4.4.4.4 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 2.2.2.2 remote-as 100
neighbor 3.3.3.3 remote-as 100
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
Configuration on PE2 Router (Receiver PE):
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red3
ip address 2.2.2.2 255.255.255.255
ip address 102.3.0.2 255.255.255.255
interface GigabitEthernet4/0/0
ip address 20.1.1.1 255.255.255.0
interface GigabitEthernet4/0/1.3
ip address 22.2.0.1 255.255.0.0
network 2.2.2.2 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red3
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red3 ssm default
ip mroute vrf red3 12.2.0.0 255.255.0.0 101.3.0.2
Configuraton on PE3 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red3
ip address 3.3.3.3 255.255.255.255
ip address 103.3.0.2 255.255.255.255
interface GigabitEthernet3/2/0.3
ip address 32.2.0.1 255.255.0.0
interface GigabitEthernet3/2/1
ip address 30.1.1.1 255.255.255.0
network 3.3.3.3 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
address-family ipv4 vrf red3
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
ip pim vrf red3 ssm default
ip mroute vrf red3 12.2.0.0 255.255.0.0 101.3.0.2
MLDP MVPN Extranet RSC
Configuration on PE1 Router (Source PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip address 1.1.1.1 255.255.255.255
ip address 101.2.0.2 255.255.255.255
interface GigabitEthernet1/22.2
ip address 12.2.0.1 255.255.0.0
interface TenGigabitEthernet8/1
ip address 10.1.1.1 255.255.255.0
network 1.1.1.1 0.0.0.0 area 0
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 ssm default
Configuration on P Router (Core Router)
ip address 4.4.4.4 255.255.255.255
interface GigabitEthernet2/10
ip address 20.1.1.2 255.255.255.0
interface GigabitEthernet2/20
ip address 30.1.1.2 255.255.255.0
interface TenGigabitEthernet4/0/0
ip address 10.1.1.2 255.255.255.0
network 4.4.4.4 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 2.2.2.2 remote-as 100
neighbor 3.3.3.3 remote-as 100
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
Configuration ond PE2 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red3
ip multicast-routing vrf red2
ip address 2.2.2.2 255.255.255.255
ip address 102.2.0.2 255.255.255.255
ip address 102.3.0.2 255.255.255.255
interface GigabitEthernet4/0/0
ip address 20.1.1.1 255.255.255.0
interface GigabitEthernet4/0/1.3
ip address 22.2.0.1 255.255.0.0
network 2.2.2.2 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red3
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red3 ssm default
ip pim vrf red2 ssm default
ip mroute vrf red3 12.2.0.0 255.255.0.0 fallback-lookup vrf red2
Configuration on PE3 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red3
ip multicast-routing vrf red2
ip address 3.3.3.3 255.255.255.255
ip address 103.2.0.2 255.255.255.255
ip address 103.3.0.2 255.255.255.255
interface GigabitEthernet3/2/0.3
ip address 32.2.0.1 255.255.0.0
interface GigabitEthernet3/2/1
ip address 30.1.1.1 255.255.255.0
network 3.3.3.3 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
address-family ipv4 vrf red2
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
address-family ipv4 vrf red3
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
ip pim vrf red3 ssm default
ip pim vrf red2 ssm default
ip mroute vrf red3 12.2.0.0 255.255.0.0 fallback-lookup vrf red2
MLDP MVPN Intranet
Configuration ond PE1 Router (Source PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip address 1.1.1.1 255.255.255.255
ip address 101.2.0.2 255.255.255.255
interface GigabitEthernet1/22.2
ip address 12.2.0.1 255.255.0.0
interface TenGigabitEthernet8/1
ip address 10.1.1.1 255.255.255.0
network 1.1.1.1 0.0.0.0 area 0
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 ssm default
Configuration on P Router (Core Router)
ip address 4.4.4.4 255.255.255.255
interface GigabitEthernet2/10
ip address 20.1.1.2 255.255.255.0
interface GigabitEthernet2/20
ip address 30.1.1.2 255.255.255.0
interface TenGigabitEthernet4/0/0
ip address 10.1.1.2 255.255.255.0
network 4.4.4.4 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 2.2.2.2 remote-as 100
neighbor 3.3.3.3 remote-as 100
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
Configuration on PE2 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip address 2.2.2.2 255.255.255.255
ip address 102.2.0.2 255.255.255.255
interface GigabitEthernet4/0/0
ip address 20.1.1.1 255.255.255.0
interface GigabitEthernet4/0/1.2
ip address 22.2.0.1 255.255.0.0
network 2.2.2.2 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 ssm default
Configuration on PE3 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip address 3.3.3.3 255.255.255.255
ip address 103.2.0.2 255.255.255.255
interface GigabitEthernet3/2/0.2
ip address 32.2.0.1 255.255.0.0
interface GigabitEthernet3/2/1
ip address 30.1.1.1 255.255.255.0
network 3.3.3.3 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
address-family ipv4 vrf red2
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
ip pim vrf red2 ssm default
Configuration Example Using SM Mode
These examples are based on the topology shown in Figure 19-1. Consider these scenarios while configuring MLDP MVPN using SSM mode:
- MLDP MVPN Extranet SSC
- MLDP MVPN Extranet RSC
- MLDP MVPN Intranet
MLDP MVPN Extranet SSC
Configuration on PE1 Router (Source PE)
mdt default mpls MLDP 4.4.4.4
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip multicast-routing vrf red3
ip address 1.1.1.1 255.255.255.255
ip address 101.2.0.2 255.255.255.255
ip address 101.3.0.2 255.255.255.255
interface GigabitEthernet1/22.2
ip address 12.2.0.1 255.255.0.0
interface TenGigabitEthernet8/1
ip address 10.1.1.1 255.255.255.0
network 1.1.1.1 0.0.0.0 area 0
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red3
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 rp-address 11.11.11.11
ip pim vrf red3 rp-address 11.11.11.11
ip mroute vrf red3 12.2.0.0 255.255.0.0 fallback-lookup vrf red2
ip mroute vrf red3 11.11.11.11 255.255.0.0 fallback-lookup vrf red2
Configuration on P Router
ip address 4.4.4.4 255.255.255.255
interface GigabitEthernet2/10
ip address 20.1.1.2 255.255.255.0
interface GigabitEthernet2/20
ip address 30.1.1.2 255.255.255.0
interface TenGigabitEthernet4/0/0
ip address 10.1.1.2 255.255.255.0
network 4.4.4.4 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 2.2.2.2 remote-as 100
neighbor 3.3.3.3 remote-as 100
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
Configuration on PE2 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red3
ip address 2.2.2.2 255.255.255.255
ip address 102.3.0.2 255.255.255.255
interface GigabitEthernet4/0/0
ip address 20.1.1.1 255.255.255.0
interface GigabitEthernet4/0/1.3
ip address 22.2.0.1 255.255.0.0
network 2.2.2.2 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red3
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red3 rp-address 11.11.11.11
ip mroute vrf red3 12.2.0.0 255.255.0.0 101.3.0.2
Configuraton on PE3 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red3
ip address 3.3.3.3 255.255.255.255
ip address 103.3.0.2 255.255.255.255
interface GigabitEthernet3/2/0.3
ip address 32.2.0.1 255.255.0.0
interface GigabitEthernet3/2/1
ip address 30.1.1.1 255.255.255.0
network 3.3.3.3 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
address-family ipv4 vrf red3
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
ip pim vrf red3 rp-address 11.11.11.11
ip mroute vrf red3 12.2.0.0 255.255.0.0 101.3.0.2
MLDP MVPN Extranet RSC
Configuration on PE1 Router (Source PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip address 1.1.1.1 255.255.255.255
ip address 101.2.0.2 255.255.255.255
interface GigabitEthernet1/22.2
ip address 12.2.0.1 255.255.0.0
interface TenGigabitEthernet8/1
ip address 10.1.1.1 255.255.255.0
network 1.1.1.1 0.0.0.0 area 0
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 rp-address 11.11.11.11
Configuration on P Router (Core Router)
ip address 4.4.4.4 255.255.255.255
interface GigabitEthernet2/10
ip address 20.1.1.2 255.255.255.0
interface GigabitEthernet2/20
ip address 30.1.1.2 255.255.255.0
interface TenGigabitEthernet4/0/0
ip address 10.1.1.2 255.255.255.0
network 4.4.4.4 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 2.2.2.2 remote-as 100
neighbor 3.3.3.3 remote-as 100
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
Configuration ond PE2 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red3
ip multicast-routing vrf red2
ip address 2.2.2.2 255.255.255.255
ip address 102.2.0.2 255.255.255.255
ip address 102.3.0.2 255.255.255.255
interface GigabitEthernet4/0/0
ip address 20.1.1.1 255.255.255.0
interface GigabitEthernet4/0/1.3
ip address 22.2.0.1 255.255.0.0
network 2.2.2.2 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red3
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 rp-address 11.11.11.11
ip pim vrf red3 rp-address 11.11.11.11
ip mroute vrf red3 12.2.0.0 255.255.0.0 fallback-lookup vrf red2
ip mroute vrf red3 11.11.11.11 255.255.255.255 fallback-lookup vrf red2
Configuration on PE3 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red3
ip multicast-routing vrf red2
ip address 3.3.3.3 255.255.255.255
ip address 103.2.0.2 255.255.255.255
ip address 103.3.0.2 255.255.255.255
interface GigabitEthernet3/2/0.3
ip address 32.2.0.1 255.255.0.0
interface GigabitEthernet3/2/1
ip address 30.1.1.1 255.255.255.0
network 3.3.3.3 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
address-family ipv4 vrf red2
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
address-family ipv4 vrf red3
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
ip pim vrf red2 rp-address 11.11.11.11
ip pim vrf red3 rp-address 11.11.11.11
ip mroute vrf red3 12.2.0.0 255.255.0.0 fallback-lookup vrf red2
ip mroute vrf red3 11.11.11.11 255.255.255.255 fallback-lookup vrf red2
MLDP MVPN Intranet
Configuration ond PE1 Router (Source PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip address 1.1.1.1 255.255.255.255
ip address 101.2.0.2 255.255.255.255
interface GigabitEthernet1/22.2
ip address 12.2.0.1 255.255.0.0
interface TenGigabitEthernet8/1
ip address 10.1.1.1 255.255.255.0
network 1.1.1.1 0.0.0.0 area 0
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 rp-address 11.11.11.11
Configuration ond P Router (Core Router)
ip address 4.4.4.4 255.255.255.255
interface GigabitEthernet2/10
ip address 20.1.1.2 255.255.255.0
interface GigabitEthernet2/20
ip address 30.1.1.2 255.255.255.0
interface TenGigabitEthernet4/0/0
ip address 10.1.1.2 255.255.255.0
network 4.4.4.4 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 2.2.2.2 remote-as 100
neighbor 3.3.3.3 remote-as 100
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 3.3.3.3 activate
Configuration on PE2 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip address 2.2.2.2 255.255.255.255
ip address 102.2.0.2 255.255.255.255
interface GigabitEthernet4/0/0
ip address 20.1.1.1 255.255.255.0
interface GigabitEthernet4/0/1.2
ip address 22.2.0.1 255.255.0.0
network 2.2.2.2 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 3.3.3.3 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
address-family ipv4 vrf red2
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 3.3.3.3 remote-as 100
neighbor 3.3.3.3 activate
neighbor 3.3.3.3 send-community both
ip pim vrf red2 rp-address 11.11.11.11
Configuration on PE3 Router (Receiver PE)
mdt default mpls MLDP 4.4.4.4
ip multicast-routing vrf red2
ip address 3.3.3.3 255.255.255.255
ip address 103.2.0.2 255.255.255.255
interface GigabitEthernet3/2/0.2
ip address 32.2.0.1 255.255.0.0
interface GigabitEthernet3/2/1
ip address 30.1.1.1 255.255.255.0
network 3.3.3.3 0.0.0.0 area 0
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 update-source Loopback1
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 update-source Loopback1
neighbor 4.4.4.4 remote-as 100
neighbor 4.4.4.4 update-source Loopback1
neighbor 1.1.1.1 activate
neighbor 2.2.2.2 activate
neighbor 4.4.4.4 activate
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
address-family ipv4 vrf red2
neighbor 1.1.1.1 remote-as 100
neighbor 1.1.1.1 activate
neighbor 1.1.1.1 send-community both
neighbor 2.2.2.2 remote-as 100
neighbor 2.2.2.2 activate
neighbor 2.2.2.2 send-community both
ip pim vrf red2 rp-address 11.11.11.11
MVPN MLDP over GRE
The Multicast Label Distribution Protocol- based Multicast VPN (MVPN) feature supports IPv4 and IPv6 multicast traffic over a Multi-Protocol Label Switching (MPLS) network. But a large part of the network infrastructure is still IP network, and the legacy IP network does not support MPLS. The existing MPLS over Generic Routing Encapsulation (GRE) feature provides a mechanism for tunneling MPLS packets over a non-MPLS network by creating a GRE tunnel across the IP network and bridging the separated MPLS networks. However, the existing MPLS over GRE feature does not support MPLS multicast traffic. The MVPN MLDP over GRE feature provides a solution by supporting encapsulating MPLS multicast traffic in the GRE tunnel.
Figure 19-2 shows a sample configuration for MVPN Multicast Label Distribution Protocol over GRE using the PE-PE network topology.
Figure 19-2 MVPN MLDP over GRE with PE-PE Network Topology
Restrictions for MVPN MLDP over GRE
The following are the restrictions that you will encounter while configuring the MVPN MLDP over GRE feature:
- MVPN MLDP over GRE supports only IPv4 GRE.
- MVPN MLDP over GRE supports IPv4 and IPv6 multicast traffic.
Configuring MVPN MLDP over GRE
Complete these steps to configure MVPN MLDP over GRE with PE-to-PE topology. You should perform these steps on both the PE routers.
SUMMARY STEPS
1. enable
2. configure terminal
3. mpls MLDP
4. vrf definition vrf-name
5. rd route-distinguisher
6. vpn id vpn_id
7. address-family ipv4
8. mdt default mpls MLDP root-node
9. mdt data mpls MLDP number-of-data-MDTs
10. mdt data threshold bandwidth
11. route-target [import | export | both] route-target-ext-community
12. route-target [import | export | both] route-target-ext-community
13. exit
14. address-family ipv6
15. mdt default mpls MLDP root-node
16. mdt default mpls MLDP root-node
17. mdt data mpls MLDP number-of-data-MDTs
18. mdt data threshold bandwidth
19. route-target [import | export | both] route-target-ext-community
20. route-target [import | export | both] route-target-ext-community
21. exit
22. exit
23. interface name
24. vrf forwarding vrf-name
25. ip address ip-address subnet-mask
26. ip pim sparse-mode
27. ipv6 address ipv6-address
28. ospfv3100 ipv6 area 0
29. ip multicast-routing vrf vrf-name distributed
30. ip multicast-routing vrf vrf-name
31. exit
32. end
DETAILED STEPS
|
|
|
Step 1 |
enable
|
Enables the privileged EXEC mode. Enter your password when prompted. |
Step 2 |
configure terminal
Router# configure terminal |
Enters the global configuration mode. |
Step 3 |
mpls MLDP
Router(config)# mpls MLDP |
Enables MPLS MLDP support.
Note The mpls MLDP command is configured by default. To disable MPLS MLDP, use the no mpls MLDP command.
|
Step 4 |
vrf definition vrf-name
Router(config)# vrf definition blue |
Defines the VPN routing instance by assigning a VRF name, and enters the VRF configuration mode. vrf-name— Name assigned to a VRF. |
Step 5 |
rd route-distinguisher
Router(config-vrf)# rd 200:2 |
Creates routing and forwarding tables. route-distinguisher— Specifies the 8-byte value to create a VPN prefix. You can enter a route-distinguisher value in either of these formats:
- 16-bit autonomous system number : Your 16-bit number Example, 200:2.
- 32-bit IP address : Your 32-bit number Example, 192.168.122.15:1.
|
Step 6 |
vpn id vpn-id
Router(config-vrf)# vpn id 200:2 |
Sets or updates a VPN identifier on a VRF. |
Step 7 |
address-family ipv4
Router(config-vrf)# address-family ipv4 |
Enters the address family configuration mode using standard IP Version 4 (IPv4) address prefixes. |
Step 8 |
mdt default mpls MLDP root-node
Router(config-vrf-af)# mdt default mpls MLDP 1.1.1.1 |
Configures MLDP MDT for a VRF. root-node—The root node can be IP address of a loopback or physical interface on any router (source PE, receiver PE, or core router) in the provider network. The root node address should be accessible to all the routers in the network. The router from where signalling occurs functions as the root node. The default MDT must be configured on each PE router to enable the PE routers to receive multicast traffic for this particular MVRF.
Note Creates the LSPVIF tunnel with the mdt default mpls MLDP root-node command.
|
Step 9 |
mdt default mpls MLDP root-node
Router(config-vrf-af)# mdt default mpls MLDP 1.1.1.2 |
Configures Root Node Redundancy. root-node—The root node can be IP address of a loopback or physical interface on any router (source PE, receiver PE, or core router) in the provider network. The root node address should be accessible to all the routers in the network. The router from where signaling occurs functions as the root node. The default MDT must be configured on each PE router to enable the PE routers to receive multicast traffic for this particular MVRF. |
Step 10 |
mdt data mpls MLDP number_of_data_MDTs
Router(config-vrf-af)# mdt data mpls MLDP 20 |
Configures the MLDP data MDP. |
Step 11 |
mdt data threshold bandwidth
Router(config-vrf-af)# mdt data threshold 1 |
Configures the threshold value for data MDT.
Note Bandwidth is traffic rate, in Kbps.
|
Step 12 |
route-target export route-target-ext-community
Router(config-vrf-af)# route-target export 200:2 |
Creates a route target extended community for a VRF.
- export —Exports the routing information from the target VPN extended community.
- route-target-ext-community —Adds the route target extended community attributes to the VRF list of import, export, or both (import and export) route target extended communities.
|
Step 13 |
route-target import route-target-ext-community
Router(config-vrf-af)# route-target import 200:2 |
Creates a route-target extended community for a VRF.
- import —Imports the routing information from the target VPN extended community.
- route-target-ext-community —Adds the route target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 14 |
exit
Router(config-vrf-af)# exit |
Exits the address family configuration mode. |
Step 15 |
address-family ipv6
Router(config-vrf)# address-family ipv6 |
Enters the address family configuration mode using standard IP Version 6 (IPv6) address prefixes. |
Step 16 |
mdt default mpls MLDP root-node
Router(config-vrf-af)# mdt default mpls MLDP 1.1.1.1 |
Configures MLDP MDT for a VRF. root-node—The root node can be IP address of a loopback or physical interface on any router (source PE, receiver PE, or core router) in the provider network. The root node address should be accessible to all the routers in the network. The router from where signalling occurs functions as the root node. The default MDT must be configured on each PE router to enable the PE routers to receive multicast traffic for this particular MVRF.
Note Creates the LSPVIF tunnel with the mdt default mpls MLDP root-node command.
|
Step 17 |
mdt default mpls MLDP root-node
Router(config-vrf-af)# mdt default mpls MLDP 1.1.1.2 |
Configures Root Node Redundancy. root-node—The root node can be IP address of a loopback or physical interface on any router (source PE, receiver PE, or core router) in the provider network. The root node address should be accessible to all the routers in the network. The router from where signalling occurs functions as the root node. The default MDT must be configured on each PE router to enable the PE routers to receive multicast traffic for this particular MVRF. |
Step 18 |
mdt data mpls MLDP number_of_data_MDTs
Router(config-vrf-af)# mdt data mpls MLDP 20 |
Configures the MLDP data MDP. |
Step 19 |
mdt data threshold bandwidth
Router(config-vrf-af)# mdt data threshold 1 |
Configures the threshold value for data MDT.
Note Bandwidth is traffic rate, in Kbps.
|
Step 20 |
route-target export route-target-ext-community
Router(config-vrf-af)# route-target export 200:2 |
Creates a route target extended community for a VRF.
- export —Exports the routing information from the target VPN extended community.
- route-target-ext-community —Adds the route target extended community attributes to the VRF list of import, export, or both (import and export) route target extended communities.
|
Step 21 |
route-target import route-target-ext-community
Router(config-vrf-af)# route-target import 200:2 |
Creates a route-target extended community for a VRF.
- import —Imports the routing information from the target VPN extended community.
- route-target-ext-community —Adds the route target extended community attributes to the VRF list of import, export, or both (import and export) route-target extended communities.
|
Step 22 |
exit
Router(config-vrf-af)# exit |
Exits the address family configuration mode. |
Step 23 |
exit
Router(config-if)# exit |
Exits the interface configuration mode. |
Step 24 |
interface name
Router(config)# interface gi0/0/0 |
Specifies the interface name and enters the interface configuration mode. |
Step 25 |
vrf forwarding vrf-name
Router(config-if)# vrf forwarding blue |
Associates a VRF instance with an interface or subinterface.
- vrf-name —Name assigned to a VRF.
|
Step 26 |
ip address ip-address subnet-mask
Router(config-if)# ip address 30.2.0.1 255.255.255.0 |
Specifies the interface IPv4 address and subnet-mask. |
Step 27 |
ip pim sparse-mode
Router(config-if)# ip pim sparse-mode |
Enables sparse mode. |
Step 28 |
ipv6 address ipv6-address
Router(config-if)# ipv6 address 32002:30:2::1/64 |
Specifies the interface IPv6 address. |
Step 29 |
ospfv3100 ipv6 area 0 |
Enables OSPFv3 router configuration mode for the IPv6 address family. |
Step 30 |
end
Router(config)# end |
Ends the configuration session. |
Step 31 |
ip multicast-routing vrf vrf-name distributed
Router(config)# ip multicast-routing vrf blue distributed |
Enables multicast routing for the specified VRF. |
Step 32 |
ipv6 multicast-routing vrf vrf-name
Router(config)# ipv6 multicast-routing vrf blue |
Enables IPv6 multicast routing for the specified VRF. |
Step 33 |
exit
Router(config-if)# exit |
Exits the interface configuration mode. |
Step 34 |
end
Router(config)# end |
Ends the configuration session. |
Example: Configuring MVPN MLDP over GRE
The following example shows how to configure MVPN MLDP over GRE:
Router# configure terminal
Router(config)# mpls MLDP
Router(config)# vrf definition blue
Router(config-vrf)# rd 200:2
Router(config-vrf)# vpn id 200:2
Router(config-vrf)# address-family ipv4
Router(config-vrf-af)# mdt default mpls MLDP 1.1.1.1
Router(config-vrf-af)# mdt default mpls MLDP 1.1.1.2
Router(config-vrf-af)# mdt data mpls MLDP 20
Router(config-vrf-af)# mdt data threshold 1
Router(config-vrf-af)# route-target export 200:2
Router(config-vrf-af)# route-target import 200:2
Router(config-vrf-af)# exit
Router(config-vrf)# address-family ipv6
Router(config-vrf-af)# mdt default mpls MLDP 1.1.1.1
Router(config-vrf-af)# mdt default mpls MLDP 1.1.1.2
Router(config-vrf-af)# mdt data mpls MLDP 20
Router(config-vrf-af)# mdt data threshold 1
Router(config-vrf-af)# route-target export 200:2
Router(config-vrf-af)# route-target import 200:2
Router(config-vrf-af)# exit
Router(config)# interface gi0/0/0
Router(config-if)# vrf forwarding blue
Router(config-if)# ip address 30.2.0.1 255.255.255.0
Router(config-if)# ip pim sparse-mode
Router(config-if)# ipv6 address 32002:30:2::1/64
Router(config-if)# ospfv3100 ipv6 area 0
Router(config)# ip multicast-routing vrf blue distributed
Router(config)# ipv6 multicast-routing vrf blue
The following example shows how to configure MVPNv4 MLDP over GRE on router PE1:
Router# configure terminal
Router(config)# vrf definition VRF_blue
Router(config-vrf)# rd 1:1
Router(config-vrf)# vpn id 1:1
Router(config-vrf)# address-family ipv4
Router(config-vrf-af)# mdt default mpls mldp 1.1.1.1
Router(config-vrf-af)# mdt data mpls mldp 100
Router(config-vrf-af)# mdt data threshold 4000000
Router(config-vrf-af)# route-target export 1:1
Router(config-vrf-af)# route-target import 1:1
Router(config-vrf-af)# exit
Router(config)# ip multicast-routing vrf blue distributed
Router(config)# interface Loopback 0
Router(config-if)# ip address 1.1.1.1 255.255.255.0
Router(config)# interface Loopback 1
Router(config-if)# vrf forwarding blue
Router(config-if)# ip address 192.0.100.1 255.255.255.0
Router(config-if)# ip pim sparse-mode
Router(config)# interface GigabitEthernet 0/0/0
Router(config-if)# ip address 10.0.0.21 255.255.255.0
Router(config)# interface Tunnel 100
Router(config-if)# ip address 10.0.0.1 255.255.255.0
Router(config-if)# mpls ip
Router(config-if)# tunnel source 10.0.0.21
Router(config-if)# tunnel destination 10.0.0.22
The following example shows how to configure MVPNv4 MLDP over GRE on router PE2:
Router# configure terminal
Router(config)# vrf definition VRF_blue
Router(config-vrf)# rd 1:1
Router(config-vrf)# vpn id 1:1
Router(config-vrf)# address-family ipv4
Router(config-vrf-af)# mdt default mpls mldp 1.1.1.1
Router(config-vrf-af)# mdt data mpls mldp 100
Router(config-vrf-af)# mdt data threshold 1000
Router(config-vrf-af)# route-target export 1:1
Router(config-vrf-af)# route-target import 1:1
Router(config-vrf-af)# exit
Router(config)# ip multicast-routing vrf blue distributed
Router(config)# interface Loopback 0
Router(config-if)# ip address 2.2.2.2 255.255.255.0
Router(config)# interface Loopback 1
Router(config-if)# vrf forwarding blue
Router(config-if)# ip address 192.0.100.20 255.255.255.0
Router(config-if)# ip pim sparse-mode
Router(config)# interface GigabitEthernet 0/0/0
Router(config-if)# ip address 10.0.0.22 255.255.255.0
Router(config)# interface Tunnel 100
Router(config-if)# ip address 10.0.0.5 255.255.255.0
Router(config-if)# mpls ip
Router(config-if)# tunnel source 10.0.0.22
Router(config-if)# tunnel destination 10.0.0.21
- To display the IPv6 neighbor information, use the show ipv6 pim vrf vrf-name neighbor command:
Router# show ipv6 pim vrf vrf blue neighbor
Mode: B - Bidir Capable, G - GenID Capable
Neighbor Address Interface Uptime Expires Mode DR pri
::FFFF:1.1.1.1 Lspvif 3w0d 00:01:17 B G 1
Here, 1.1.1.1 is the loopback IP address of another PE on the other end of GRE tunnel, and ::FFFF:x.x.x.x is IPv4-mapped IPv6 IP address.
- To display the IPv4 neighbor information, use the show ip pim vrf vrf-name neighbor command:
Router# show ip pim vrf blue neighbor
Mode: B - Bidir Capable, DR - Designated Router, N - Default DR Priority,
P - Proxy Capable, S - State Refresh Capable, G - GenID Capable
Neighbor Interface Uptime/Expires Ver DR
30.2.0.3 Gi0/0/1.3900 2w0d/00:01:37 v2 0 / G
1.1.1.1 Lspvif 7w0d/00:01:18 v2 1 / B S P G
- To display the IPv6 multicast routing table, use the show ipv mroute vrf vrf-name command:
Router# show ipv mroute vrf vrf blue
Flags: D - Dense, S - Sparse, B - Bidir Group, s - SSM Group,
C - Connected, L - Local, I - Received Source Specific Host Report,
P - Pruned, R - RP-bit set, F - Register flag, T - SPT-bit set,
J - Join SPT, Y - Joined MDT-data group,
y - Sending to MDT-data group
g - BGP signal originated, G - BGP Signal received,
N - BGP Shared-Tree Prune received, n - BGP C-Mroute suppressed,
q - BGP Src-Active originated, Q - BGP Src-Active received
Interface state: Interface, State
(2002:30::100, FF33:0:3::4000:1), 00:01:06/00:02:53, flags: sT
Incoming interface: Lspvif1
Immediate Outgoing interface list:
GigabitEthernet0/0/1.3900, Forward, 00:01:06/00:02:53
- To display the IPv4 multicast routing table, use the show ip mroute vrf-name command:
Router# show ip mroute vrf blue
IP Multicast Routing Table
Flags: D - Dense, S - Sparse, B - Bidir Group, s - SSM Group, C - Connected,
L - Local, P - Pruned, R - RP-bit set, F - Register flag,
T - SPT-bit set, J - Join SPT, M - MSDP created entry, E - Extranet,
X - Proxy Join Timer Running, A - Candidate for MSDP Advertisement,
U - URD, I - Received Source Specific Host Report,
Z - Multicast Tunnel, z - MDT-data group sender,
Y - Joined MDT-data group, y - Sending to MDT-data group,
G - Received BGP C-Mroute, g - Sent BGP C-Mroute,
N - Received BGP Shared-Tree Prune, n - BGP C-Mroute suppressed,
Q - Received BGP S-A Route, q - Sent BGP S-A Route,
V - RD & Vector, v - Vector, p - PIM Joins on route,
Outgoing interface flags: H - Hardware switched, A - Assert winner, p - PIM Join
Interface state: Interface, Next-Hop or VCD, State/Mode
(30.0.0.100, 232.0.0.1), 1w0d/00:01:47, flags: sT
Incoming interface: Null, RPF nbr 1.1.1.1
Gi0/0/1.3900, Forward/Sparse, 1w0d/00:01:47
- To display the multicast routing counter for IPv6, use the show ipv6 mroute vrf vrf-name counter command:
Router# show ipv6 mroute vrf vrf blue counter
Forwarding Counts: Pkt Count/Pkts per second/Avg Pkt Size/Kilobits per second
Other counts: Total/RPF failed/Other drops(OIF-null, rate-limit etc)
5057 routes, 11 (*,G)s, 46 (*,G/m)s
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
SW Forwarding: 0/0/0/0, Other: 3/3/0
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
SW Forwarding: 0/0/0/0, Other: 0/0/0
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
SW Forwarding: 0/0/0/0, Other: 0/0/0
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
SW Forwarding: 0/0/0/0, Other: 0/0/0
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA ------- from the first entry to this, all of these are default entries in IPv6 Mroute table
Group: FF33:0:3::4000:1 ------- from this entry, all entries below are user entries learnt via PIM6 or MLD protocol
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
- To display the multicast routing counter for IPv4, use the show ip mroute vrf vrf-name counter command:
Router# show ip mroute vrf blue counter
Use "show ip mfib count" to get better response time for a large number of mroutes.
5001 routes using 3706920 bytes of memory
101 groups, 49.50 average sources per group
Forwarding Counts: Pkt Count/Pkts per second/Avg Pkt Size/Kilobits per second
Other counts: Total/RPF failed/Other drops(OIF-null, rate-limit etc)
Group: 232.0.0.1, Source count: 50, Packets forwarded: 0, Packets received: 0
Source: 30.0.0.149/32, Forwarding: 0/0/0/0, Other: 0/0/0
- To display the MPLS information, use the show mpls forwarding-table labels <local label> detail command:
Router# show mpls forwarding-table labels 10333 detail
Local Outgoing Prefix Bytes Label Outgoing Next Hop
Label Label or Tunnel Id Switched interface
10333 No Label [mdt 200:1 0][V] 0 aggregate/vrf-name
MAC/Encaps=0/0, MRU=0, Label Stack{}, via Ls1
No output feature configured
Router# show mpls forwarding-table labels 1715 detail
Local Outgoing Prefix Bytes Label Outgoing Next Hop
Label Label or Tunnel Id Switched interface
1715 No Label [mdt 200:1 0][V] 0 aggregate/vpn200
MAC/Encaps=0/0, MRU=0, Label Stack{}, via Ls1
No output feature configured
- To display the MFIB table, use the show mfib <vrf_name> verbose command:
Router# show ip mfib vrf blue verbose
Entry Flags: C - Directly Connected, S - Signal, IA - Inherit A flag,
ET - Data Rate Exceeds Threshold, K - Keepalive
DDE - Data Driven Event, HW - Hardware Installed
ME - MoFRR ECMP entry, MNE - MoFRR Non-ECMP entry, MP - MFIB
MoFRR Primary, RP - MRIB MoFRR Primary, P - MoFRR Primary
MS - MoFRR Entry in Sync, MC - MoFRR entry in MoFRR Client.
I/O Item Flags: IC - Internal Copy, NP - Not platform switched,
NS - Negate Signalling, SP - Signal Present,
A - Accept, F - Forward, RA - MRIB Accept, RF - MRIB Forward,
MA - MFIB Accept, A2 - Accept backup,
RA2 - MRIB Accept backup, MA2 - MFIB Accept backup
Forwarding Counts: Pkt Count/Pkts per second/Avg Pkt Size/Kbits per second
Other counts: Total/RPF failed/Other drops
I/O Item Counts: FS Pkt Count/PS Pkt Count
(*,224.0.0.0/4) Flags: K HW
0x9A2 OIF-IC count: 0, OIF-A count: 0
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
(*,224.0.1.40) Flags: C K HW
0x9A4 OIF-IC count: 1, OIF-A count: 0
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
Loopback200 Flags: RF F IC NS
CEF: Special OCE (discard)
(*,232.0.0.0/8) Flags: K HW
0x9A3 OIF-IC count: 0, OIF-A count: 0
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
(30.0.0.100,232.0.0.1) Flags: K HW
0x5C98 OIF-IC count: 0, OIF-A count: 0
SW Forwarding: 0/0/0/0, Other: 0/0/0
HW Forwarding: NA/NA/NA/NA, Other: NA/NA/NA
GigabitEthernet0/0/1.3900 Flags: RF F NS
CEF: Adjacency with MAC: 01005E000001503DE5974F0181000F3C0800