多播静态路由引起的循环问题的解决
http://tech.ddvip.com 2007年01月26日 社区交流 收藏本文
本文详细介绍多播静态路由引起的循环问题的解决
neighbor 1.1.12.2 poll-interval 6
!
ip classless
ip http server
ip pim rp-address 1.1.4.4
!
!
logging history debugging
logging trap debugging
dialer-list 1 protocol ip permit
!
call rsvp-sync
!
!
mgcp profile default
!
dial-peer cor custom
!
!
!
!
!
line con 0
privilege level 15
logging synchronous
line aux 0
line vty 0 4
login
!
ntp authentication-key 1 md5 070C285F4D06 7
ntp authenticate
ntp source Loopback0
ntp master 2
!
end
四、解决步骤
在R3上改动配置,相关方面的配置如下,就可实现目标:
inter t0
ip unnumber lo0
tunnel source lo0
tunnel destination 1.1.1.1
ip pim dense-mode
exit
ip mroute 1.1.15.0 255.255.255.0 t0
(stub 端)R1上面的相关配置如下:
inter t0
ip unnumber lo0
tunnel source lo0
tunnel destination 1.1.3.3
ip pim dense-mode
exit
inter e0
ip addr 1.1.15.1 255.255.255.0
ip pim dense-mode
exit
ip mroute 150.100.2.0 255.255.255.0 t0
(或者使用ip mroute 0.0.0.0 0.0.0.0 t0)
在任何一个方向部署multicast source都可以建立树。注:可以用dvmrp tunnel来和pim一起做来达到起到上述效果。
来源:51CTO.com 责编:豆豆技术应用