天津新盟教育吧 关注:21贴子:258
  • 0回复贴,共1

新盟教育内部视频-RIP单播路由

只看楼主收藏回复


实验要求:
通过使用单播路由方式让R2只给R3发送路由条目。
IP地址表:

实验配置如下:
配置R1:
R1(config)#interface f0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#interface loopback0
R1(config-if)#ip address 1.1.1.1 255.255.255.0
R1(config-if)#exit
配置R3:
R3(config)#interface f0/0
R3(config-if)#ip address 192.168.2.2 255.255.255.0
R3(config-if)#no shutdown
R3(config-if)#exit
R3(config)#interface loopback0
R3(config-if)#ip address 3.3.3.3 255.255.255.0
R3(config-if)#exit
配置R2:
R2(config)#interface f1/0
R2(config-if)#ip address 192.168.1.2 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#interface f0/0
R2(config-if)#ip address 192.168.2.1 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#exit
配置RIP:
R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#no auto-summary
R1(config-router)#network 192.168.1.0
R1(config-router)#network 1.1.1.0
R1(config-router)#exit
R2(config)#router rip
R2(config-router)#version 2
R2(config-router)#no auto-summary
R2(config-router)#network 2.2.2.0
R2(config-router)#network 192.168.1.0
R2(config-router)#network 192.168.2.0
R2(config-router)#network 2.2.2.0
R2(config-router)#exit
R3(config)#router rip
R3(config-router)#version 2
R3(config-router)#no auto-summary
R3(config-router)#network 192.168.2.0
R3(config-router)#network 3.3.3.0
配置单播路由:
R2(config-router)#passive-interface default //将R2的所有接口设为被动接口,只接收路由条目,不发送路由条目
R2(config-router)#neighbor 192.168.2.2 //只对需要进行数据通信的目的地址以单播的方式发送路由条目。
实验总结:
在RIPv1中是以广播的形式发送路由条目的,在RIPv2中是以组播的形式发送路由条目的。
如果在RIP网络环境中,只想给某一个邻居发送路由条目,可以把所有接口都设置为被动接口,以单播的形式向想要发送的邻居发送路由条目。


1楼2017-08-04 17:33回复