MSR系列路由器PIM-SM功能的典型配置
关键词:MSR; PIM-SM;IGMP;组播;
一、组网需求:
RTA的端口E0/1连接组播源,端口S0/1连接RTB,端口S0/2连接RTC,分别在端口上启PIM-SM组播协议;RTB的端口S0/2连接RTA,端口S0/1连接RTC,端口E0/1连接接收主机Receiver2,分别在端口上启PIM-SM组播协议,连接接收主机端口起IGMP协议;RTC的端口S0/1连接RTA,端口S0/2连接RTB,端口E0/1连接接收主机Receiver1,分别在端口上启PIM-SM组播协议,连接接收主机端口起IGMP协议。
设备清单:MSR系列路由器3台
二、组网图:
三、配置步骤:
设备和版本:MSR系列、Version 5.20, Release 1509
RTA关键配置脚本 |
# //全局启动组播协议 multicast
routing-enable # //连接组播源的地址 interface
Ethernet0/1 port link-mode route ip address pim sm # //连接RTB的接口地址 interface
Serial0/1 link-protocol ppp ip address
192.168.0.1 255.255.255.0 pim sm # //连接RTC的接口地址 interface
Serial0/2 link-protocol ppp ip address
192.168.1.1 255.255.255.0 pim sm # //OSPF路由配置,保证全网路由可达 ospf 1 are
network
network 192.168.1.0
network 192.168.0.0 # |
RTB关键配置脚本 |
# //全局启动组播协议 multicast
routing-enable # //连接RTA的接口地址 interface
Serial0/2 link-protocol ppp ip address
192.168.0.2 255.255.255.0 pim sm # //连接RTC的接口地址 interface
Serial0/1 link-protocol ppp ip address
192.168.2.1 255.255.255.0 pim sm # //连接Receiver2的地址 interface
Ethernet0/1 port link-mode route ip address igmp enable # //OSPF路由配置,保证全网路由可达 ospf 1 are
network
network 192.168.2.0
network 192.168.0.0 # |
RTC关键配置脚本 |
# //全局启动组播协议 multicast routing-enable # //配置ACL acl number 2005 rule 0 permit source 224.1.1.0 # //连接RTA的接口地址 interface
Serial0/1 link-protocol ppp ip address
192.168.1.2 255.255.255.0 pim sm # //连接RTB的接口地址 interface
Serial0/2 link-protocol ppp ip address
192.168.2.2 255.255.255.0 pim sm # //连接Receiver1的地址 interface
Ethernet0/1 port link-mode route ip address igmp enable # //配置C-BSR与C-RP pim c-bsr Serial
0/1 c-rp Serial 0/1 group-policy 2005 # //OSPF路由配置,保证全网路由可达 ospf 1 are
network
network 192.168.1.0
network 192.168.2.0 # |
四、配置关键点:
1) 配置PIM-SM域内的各路由器之间采用OSPF协议进行互连,确保PIM-SM域中RTA、RTB、RTC之间能够在网络层互通,并且各路由器之间能够借助单播路由协议实现动态路由更新,保证组播RPF检查通过;
2) 全局启动组播;
3)配置C-BSR与C-RP;