您的位置:首页 > 其它

路由选择协议的分类 ----RIP 2实现等跳路径的负载均衡

2011-08-01 18:13 302 查看
资源来自网络视频,我做笔记

视频教程请移步此处处http://www.verycd.com/topics/2802335/

第二章

路由选择协议的分类

RIP V2特性
RIP v2的基本配置
RIP v2实现VLSM希望划分(可变长子网掩码)
RIP v2实现CIDR路由汇总
RIP 2实现等跳路径的负载均衡
RIP2认证配置
RIP2配置被动接口抑制路由更新
~~~~~~~~~~~~~~~~~~~~~~~~~~~
RIP 2实现等跳路径的负载均衡
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25pc)(49.1)R1(49.97)---------(98)
203.0.0.1 |
(25pc)(49.33)R2(49.101)------(102)R4--------R5(ISP)
204.0.0.1 |
(25pc)(49.65)R3-49.105)------(106)

(借用之前的实验模型,增加203.1和204.1网段)
Router4 S0/0 <----> Router5 S0/0
Router1 S0/0 <----> Router4 S0/1
Router2 S0/0 <----> Router4 S0/2
Router3 S0/0 <----> Router4 S0/3
Router1 S0/1 <----> Router2 S0/1
Router2 S0/2 <----> Router3 S0/1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

对于R1:

en
conf t
hostname R1

no ip domain-lookup
ip classless
ip subnet-zero

int s0/0
ip addr 192.168.49.97 255.255.255.252
no shu
exi

int s0/1
ip add 203.0.0.1 255.255.255.0
no shu
exi

router rip
version 2
no auto-summary
net 192.168.49.96
net 203.0.0.0
end

对于R2:

en
conf t
hostname R2

no ip domain-lookup
ip classless
ip subnet-zero

int s0/1
ip addr 203.0.0.2 255.255.255.0
no shu
exi

int s0/2
ip add 204.0.0.2 255.255.255.0
no shu
exi

router rip
version 2
no auto-summary
net 204.0.0.0
net 203.0.0.0
end

对于R3:

en
conf t
hostname R3

no ip domain-lookup
ip classless
ip subnet-zero

int s0/0
ip addr 192.168.49.105 255.255.255.252
no shu
exi

int s0/1
ip add 204.0.0.1 255.255.255.0
no shu
exi

router rip
version 2
no auto-summary
net 192.168.49.104
net 204.0.0.0
end

对于R4:

en
conf t
hostname R4

no ip domain-lookup
ip classless
ip subnet-zero

int s0/0
ip addr 202.0.0.2 255.255.255.0
no shu
exi

int s0/1
ip add 192.168.49.98 255.255.255.252
no shu
exi

int s0/3
ip add 192.168.49.106 255.255.255.252
no shu
exi

router rip
version 2
no auto-summary
net 202.0.0.0
net 192.168.49.96
net 192.168.49.104
end

对于R5:

en
conf t
hostname R5

no ip domain-lookup
ip classless
ip subnet-zero

int s0/0
ip addr 202.0.0.1 255.255.255.0
no shu
exi

router rip
version 2
no auto-summary
net 202.0.0.0
end

对于R2:(可以看到202.0.0.0网段的负载均衡)

sh ip rou
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐