December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to pass multicast traffic through the router.
In a small network with few routers and relatively light multicast application bandwidth requirements, the easiest way to implement multicast routing is to use PIM-DM. This example shows the configurations for two routers that are connected through a Serial connection, both with FastEthernet interfaces to represent the LAN connections. It is important to enable multicast routing on all interfaces that connect to other multicast-enabled routers or to multicast user or server segments.
The first router looks like this:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#ip multicast-routingRouter1(config)#interfaceRouter1(config-if)#FastEthernet0/0ip addressRouter1(config-if)#192.168.1.1 255.255.255.0ip pim dense-modeRouter1(config-if)#exitRouter1(config)#interfaceRouter1(config-if)#Serial1/0ip addressRouter1(config-if)#192.168.2.5 255.255.255.252ip pim dense-modeRouter1(config-if)#endRouter1#
And the second router looks remarkably similar:
Router2#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router2(config)#ip multicast-routingRouter2(config)#interfaceRouter2(config-if)#FastEthernet0/0ip addressRouter2(config-if)#192.168.3.1 255.255.255.0ip pim dense-modeRouter2(config-if)#exitRouter2(config)#interfaceRouter2(config-if)#Serial1/0ip address192.168.2.6 255.255.255.252 ...