1.组播IGMP的各种情况
2.PIM Dense-Mode
3.PIM Sparse-Mode
4.PIM双向树和SSM
5.动态RP之auto-rp
6.动态RP之BSR
7.Anycast RP
8.域间组播
9.IPv6组播

enable
conf t
no ip do lo
enable pass cisco
line con 0
logg sync
exec-t 0 0
exit
line vty 0 4
pass cisco
logg sync
exit
host

1.组播IGMP的各种情况
------------------------------------------------------

实验目的
1.深入了解IGMPv1,IGMPv2,IGMPv3的区别
2.掌握配置IGMPv1,IGMPv2,IGMPv3的方法
3.理解不同IGMP版本查询路由器(querying router)的选举方法
4.理解DR的作用和选取方法
5.理解最后一个报告者(last reporter)的概念和不同IGMP版本的主机离开组的方式
6.理解IGMPv2最后一跳路由器的两种查询方法
7.理解fast leave
8.理解配置限制特定组的加入
9.理解IGMPv3的report方式如何兼容IGMPv2

实验假设:R1和R2模拟两台PC,加入组播组。R3和R4模拟最后一跳路由器

CCIE路由实验(6) -- 组播Multicasting


基本配置:
完成IP地址和IGP的配置,IGP为全网运行OSPF,均运行在area 0.

R1:
int f0/0
ip add 1.1.1.1 255.255.255.0
no shut
exit
int l0
ip add 11.1.1.1 255.255.255.0
exit

router ospf 1
router-id 11.1.1.1
network 1.1.1.0 0.0.0.255 area 0
network 11.1.1.0 0.0.0.255 area 0
exit

R2:
int f0/0
ip add 1.1.1.2 255.255.255.0
no shut
exit
int l0
ip add 22.1.1.1 255.255.255.0
exit

router ospf 1
router-id 22.1.1.1
network 1.1.1.0 0.0.0.255 area 0
network 22.1.1.0 0.0.0.255 area 0
exit

R3:
int f0/0
ip add 1.1.1.3 255.255.255.0
no shut
exit
int l0
ip add 33.1.1.1 255.255.255.0
exit

router ospf 1
router-id 33.1.1.1
network 1.1.1.0 0.0.0.255 area 0
network 33.1.1.0 0.0.0.255 area 0
exit

R4:
int f0/0
ip add 1.1.1.4 255.255.255.0
no shut
exit
int l0
ip add 44.1.1.1 255.255.255.0
exit

router ospf 1
router-id 44.1.1.1
network 1.1.1.0 0.0.0.255 area 0
network 44.1.1.0 0.0.0.255 area 0
exit
View Code

相关文章: