赞
踩
1、 单位需要与外联单位网络互通
2、 为了冗余网络,单位向运营商租用两条专线与外联单位互连
3、 两条专线线路为主备模式,主R1--R2,当主线路故障自动切换到R1-R3(走S2)
4、 两个单位内部各自运行OSPF
5、 不管哪条线路故障,自动切换网络都不中断
1、路由器4台;三层交换机1台;两台二层交换机模拟运营商设备,PC机1台。
2、IP地址说明:
R1与R2之间使用12.1.1.0/24 R1的地址12.1.1.1/24,R2的地址12.1.1.2/24
R1与SW8之间用18.1.1.0/24, R1的地址18.1.1.1/24,SW8的地址18.1.1.8/24
依次类推一样
3、拓扑图
R1
interface FastEthernet0/0
ip address 18.1.1.1 255.255.255.0
interface FastEthernet0/1
ip address 12.1.1.1 255.255.255.0
router ospf 10
network 18.1.1.0 0.0.0.255 area 0
-----------------------------------------------------
R2
interface FastEthernet0/0
ip address 24.1.1.2 255.255.255.0
interface FastEthernet0/1
ip address 12.1.1.2 255.255.255.0
router ospf 110
network 24.1.1.0 0.0.0.255 area 0
-----------------------------------------------------
R3
interface FastEthernet0/0
ip address 13.1.1.3 255.255.255.0
interface FastEthernet0/1
ip address 34.1.1.3 255.255.255.0
router ospf 110
network 34.1.1.0 0.0.0.255 area 0
-----------------------------------------------------
R4
interface Loopback0
ip address 4.4.4.4 255.255.255.0
interface FastEthernet0/0
ip address 24.1.1.4 255.255.255.0
interface FastEthernet0/1
ip address 34.1.1.4 255.255.255.0
router ospf 110
network 4.4.4.0 0.0.0.255 area 0
network 24.1.1.0 0.0.0.255 area 0
network 34.1.1.0 0.0.0.255 area 0
-----------------------------------------------------
SW8
Vlan 10
interface Vlan10
ip address 192.168.1.1 255.255.255.0
interface FastEthernet0/0
ip address 18.1.1.8 255.255.255.0
router ospf 10
network 18.1.1.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
PC1
IP 192.168.1.10/24 GW:192.168.1.1
R1
R2
R3
R4
SW8
R1
ip sla 1
icmp-echo 12.1.1.2 source-ip 12.1.1.1 //IP地址去ping其直连网关IP地址
frequency 5 //ping的时间间隔为5秒钟一次
ip sla schedule 1 life forever start-time now //计划调度时间为从现在开始的每一天
track 1 rtr 1 reachability //追踪去往是否可达性
R2
ip sla 1
icmp-echo 12.1.1.1 source-ip 12.1.1.2
frequency 5
ip sla schedule 1 life forever start-time now
track 1 rtr 1 reachability
R1
ip route 4.4.4.0 255.255.255.0 12.1.1.2 track 1
ip route 4.4.4.0 255.255.255.0 13.1.1.3 10 //不需要加track,要把metric修改大于1(静态路由管理距离)
R2
ip route 192.168.1.0 255.255.255.0 12.1.1.1 track 1
R3
ip route 192.168.1.0 255.255.255.0 13.1.1.1 //不需要加track
R1
router ospf 10
redistribute static subnets
R2
router ospf 110
redistribute static subnets
R3
router ospf 110
redistribute static metric 30 subnets //这里要把重分布的metric大于R2的metric
R1
当接口都是up的时,去往4.4.4.0/24的路由从R2出去
R4
当接口都是up的时,去往192.168.1.0/24的路由从R2出去,用源地址4.4.4.4 ping 192.168.1.10能通
R1
R2
R4
PC1
R2
R1
R4
PC1
说明:欢迎私聊,一起成长。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。