December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to pass customer multicast traffic through an MPLS network.
For this recipe, we must configure Multicast capabilities on all of the different types of routers: C, CE, P, and PE. First, the C and CE routers, which we configure for multicast using exactly the same techniques that we used in Chapter 23:
Router-C-An#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router-C-An(config)#ip multicast-routingRouter-C-An(config)#interfaceRouter-C-An(config-if)#FastEthernet0/0ip addressRouter-C-An(config-if)#192.168.5.12 255.255.255.0ip pim sparse-dense-modeRouter-C-An(config-if)#exitRouter-C-An(config)#endRouter-C-An#
For the CE routers, we need to configure the interfaces that point to both the C and PE routers:
Router-CE-A1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router-CE-A1(config)#ip multicast-routingRouter-CE-A1(config)#interfaceRouter-CE-A1(config-subif)#FastEthernet0/0.1encapsulation dot1QRouter-CE-A1(config-subif)#101ip addressRouter-CE-A1(config-subif)#192.168.1.5 255.255.255.0ip pim sparse-dense-modeRouter-CE-A1(config-subif)#exitRouter-CE-A1(config)#interfaceRouter-CE-A1(config-subif)#FastEthernet0/0.2encapsulation dot1QRouter-CE-A1(config-subif)#111ip addressRouter-CE-A1(config-subif)#192.168.5.1 255.255.255.0ip pim sparse-dense-modeRouter-CE-A1(config-subif)#exitRouter-CE-A1(config)#endRouter-CE-A1#
We will configure a static IGMP join-group ...