标签:recv 拓扑 结果 eth interface red int 发送 image
一、实验拓扑:2、把R1变为版本2,发现R2有R1的路由条目,但是R1没有R2的路由条目。
因为版本2是组播,组播只监听组播IP地址;版本1是广播。
二、命令部署:
1、修改R1为版本2
R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#end
2、在接口下修改R1的RIP版本2接收原则
R1(config)#int f0/0
R1(config-if)#ip rip receive version 1 2
3、在接口下修改R1的RIP版本2发送原则
R1(config)#int f0/0
R1(config-if)#ip rip send version 1 2
三、验证:
1、默认R1、R2都是版本1
R1#show ip pro
version
Interface Send Recv Triggered RIP Key-chain
FastEthernet0/0 1 1 2
Loopback1 1 1 2
2、修改R1为版本2,R2仍为版本1
R1#show ip route
1.0.0.0/24 is subnetted, 1 subnets
C 1.1.1.0 is directly connected, Loopback1
12.0.0.0/24 is subnetted, 1 subnets
C 12.1.1.0 is directly connected, FastEthernet0/0
结果:R1收不到R2的RIP路由条目
3、修改R1的RIP版本2接收原则
R1#show ip pro
Redistributing: rip
Default version control: send version 2, receive version 2
Interface Send Recv Triggered RIP Key-chain
FastEthernet0/0 2 1 2
Loopback1 2 2
标签:recv 拓扑 结果 eth interface red int 发送 image
原文地址:http://blog.51cto.com/13856092/2137479