欢迎来到天天文库
浏览记录
ID:9089154
大小:61.42 KB
页数:3页
时间:2018-04-17
《用静态路由实现路由备份和负载分担》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、用静态路由实现路由备份和负载分担下面用图2-2所示的拓扑结构来演示静态路由如何实现路由备份和负载分担。 (点击查看大图)图2-2 路由备份与负载分担以上拓扑结构中各路由器接口的IP地址如表2-2所示。表2-2 路由器IP地址表 以下为各路由器的基本配置。1.RT-1: 2.[RT-1]int e0/0 3.[RT-1-Ethernet0/0]ip add 10.1.1.1 24 4.[RT-1-Ethernet0/0]int s1/0 5.[RT-1-Serial1/0]ip add 20.1.1.1 30 6.[RT-1-Serial1/0
2、]int s2/0 7.[RT-1-Serial2/0]ip add 30.1.1.1 30 8.RT-2: 9.[RT-2]int s1/0 10.[RT-2-Serial1/0]ip add 20.1.1.2 30 11.[RT-2-Serial1/0]int s3/0 12.[RT-2-Serial3/0]ip add 40.1.1.1 30 13.RT-3: 14.[RT-3]int e0/0 1.[RT-3-Ethernet0/0]ip add 60.1.1.1 24 2.[RT-3-Ethernet0/0]int s1/0 3.[
3、RT-3-Serial1/0]ip add 50.1.1.2 30 4.[RT-3-Serial1/0]int s2/0 5.[RT-3-Serial2/0]ip add 40.1.1.2 30 6.RT-4: 7.[RT-4]int s1/0 8.[RT-4-Serial1/0]ip add 50.1.1.1 30 9.[RT-4-Serial1/0]int s3/0 10.[RT-4-Serial3/0]ip add 30.1.1.2 30 在图2-2所示的拓扑结构中,不管是负载分担方式还是路由备份方式,对路由器RT-2和RT-4的静态路
4、由配置都是一样的。下面先给出路由器RT-2和RT-4的路由配置。1.RT-2: 2.[RT-2]ip route-static 10.1.1.0 24 20.1.1.1 3.[RT-2]ip route-static 60.1.1.0 24 40.1.1.2 4.RT-4: 5.[RT-4]ip route-static 10.1.1.0 24 30.1.1.1 6.[RT-4]ip route-static 60.1.1.0 24 50.1.1.2 1.主备模式配置假如让10.1.1.0/24网段和60.1.1.0/24网段之间的两条路径运
5、行在主备模式,即通过RT-2路由转发的路径为主路径,通过RT-4转发的路径是备份路径。在正常情况下,通过主路径转发数据包,只有在主路径故障的情况下才使用备份路径。要实现以上要求,RT-1、RT-3路由器的配置如下:1.RT-1: 2.[RT-1]ip route-static 60.1.1.0 24 20.1.1.2 preference 50 3.[RT-1]ip route-static 60.1.1.0 24 30.1.1.2 preference 80 4.[RT-1]dis ip routing-table 5.Routing
6、Tables: Public 6. Destinations : 11 Routes : 11 7. 8.Destination/Mask Proto Pre Cost NextHop Interface 9. 10.10.1.1.0/24 Direct 0 0 10.1.1.1 Eth0/0 11.10.1.1.1/32 Direct 0 0 127.0.0.1
7、 InLoop0 12.20.1.1.0/30 Direct 0 0 20.1.1.1 S1/0 13.20.1.1.1/32 Direct 0 0 127.0.0.1 InLoop0 14.20.1.1.2/32 Direct 0 0 20.1.1.2 S1/0 15.30.1.1.0/30 Direct 0 0 30.1.1.
8、1 S2/0 16.30.1.1.1/32 Direct 0 0 127.0.0.1 InLo
此文档下载收益归作者所有