赞
踩
路漫漫其修远兮,吾将上下而求索
一个善于创造的人,一定是一个善于分享的人。
今天整理了一个实验,具备NAT地址转换,路由器作为出口设备,实现负载分担,实现路由策略
目录
上网要求
在内网出口路由器上需要部署NAT技术,将内网地址转换成外网接口地址。出接口(G0/0/1、G0/0/2)分别连接两个运营商链路ISP1、ISP2,无论从哪条链路都能上网。
内网流量走向需求
PC1访问外网的流量只从ISP1链路转发,PC2访问外网的流量只从ISP2链路转发,PC3访问外网的流量可以从ISP1链路或ISP2链路转发。
链路故障切换
当ISP1链路发生故障时,内网所有PC访问外网的流量从ISP2链路转发。同理,ISP2链路发生故障,内网所有PC访问外网流量从ISP1链路转发。
IP地址配置按实验图配置就行,此处不再写命令,直接进行路由配置
Internet:
- ip route-static 0.0.0.0 0 100.1.2.2
- ip route-static 0.0.0.0 0 200.1.2.2
- ip route-static 100.1.1.0 24 100.1.2.2
- ip route-static 200.1.1.0 24 200.1.2.2
ISP1:
- ip route-static 1.1.1.1 32 100.1.2.1
- ip route-static 10.1.0.0 22 100.1.1.1
ISP2:
- ip route-static 1.1.1.1 32 200.1.2.1
- ip route-static 10.1.0.0 22 200.1.1.1
内网出口路由器:
- ip route-static 0.0.0.0 0 100.1.1.2
- ip route-static 0.0.0.0 0 200.1.1.2
- ip route-static 10.1.0.0 22 192.168.1.1
SW1:
ip route-static 0.0.0.0 0 192.168.1.2
内网出口路由器:
此处采用路由汇总的方式匹配,采用了Easy-ip
- acl 2000
- rule 5 permit source 10.1.0.0 0.0.3.255
- int g 0/0/1
- nat outbound 2000
- int g 0/0/2
- nat outbound 2000
内网出口路由器:
- nqa test-instance p1 isp1
- test-type icmp
- destination-address ipv4 100.1.1.2
- frequency 10
- interval seconds 3
- start now
- nqa test-instance p2 isp2
- test-type icmp
- destination-address ipv4 200.1.1.2
- frequency 10
- interval seconds 3
- start now
-
-
- ip route-static 0.0.0.0 0 100.1.1.2 track nqa p1 isp1 /配置完成后与默认路由绑定
- ip route-static 0.0.0.0 0 200.1.1.2 track nqa p2 isp2
简单说明
nqa test-instance p1 isp1 创建nqa实例p1 探测ISP1链路
test-type icmp 设置探测的类型
destination-address ipv4 100.1.1.2 设置探测目标的IP
frequency 10 设置NQA自动执行测试的时间间隔为10秒
interval seconds 3 设置NQA发送报文的时间间隔为3秒
start now 立即开始
- acl 2001
- rule permit source 10.1.1.0 0.0.0.255
- acl 2002
- rule permit source 10.1.2.0 0.0.0.255
- traffic classifier pc1
- if-match acl 2001
- traffic behavior pc1
- redirect ip-nexthop 100.1.1.2 track nqa p1 isp1
- traffic classifier pc2
- if-match acl 2002
- traffic behavior pc2
- redirect ip-nexthop 200.1.1.2 track nqa p2 isp2
- traffic policy pc1_and_pc2
- classifier pc1 behavior pc1
- classifier pc2 behavior pc2
- interface g 0/0/0
- traffic-policy pc1_and_pc2 inbound
至此配置完成
这篇文章的实验是我在课堂上的书本中看到的,今天将它整理一下,希望对您的学习有所帮助。
谢谢您的观看。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。