三、不连续OSPF区域解决方案
通过配置虚链路来打通不连续区域与area 0的连接。
配置命令:R1(config-router)#area x virtual-link x.x.x.x(对端router-id)
四、路由策略
对重发布进OSPF的路由条目进行过滤,减少不必要的路由进入OSPF区域。
配置命令:R1(config)#access-list x permit x.x.x.x x.x.x.x //匹配要进行过滤的流量
R1(config)#route-map test deny 10
R1(config-route-map)#match ip address x
R1(config)#route-map test permit 20
R1(config-router) redistribute static subnets route-map test
五、策略路由
可以实现对特定的流量进行控制。
配置命令:R1(config)#access-list x permit x.x.x.x x.x.x.x //匹配要进行控制的流量
R1(config)#route-map x permit x
R1(config-route-map)#match ip address x
R1(config-route-map)#set ip next-hop x.x.x.x //设置下一跳IP
R1(config)interface fax/x
R1(config-if)ip policy route-map x
但是这样配置有缺陷,因为无法对下一跳进行检测。可以对配置做一些修改,以弥补缺陷。
R1(config-route-map)#set ip next-hop verify-availability x.x.x.x track 1(关联SLA,SLA具体配置可以查看前一次课的笔记。)
六、基于时间的ACL
配置命令:R1(config)#access-list 100 permit ip any any time-range x
R1(config)#time-range x
R1(configrange)#periodic daily 8:30 17:30
R1(config)# int fax/x
R1(config-if)#access-group 100 in
R1#clock set 11:30:00 28 july 2012 //设置路由器时间
路由器时间重启后丢失,所以需要配置同步。
R1(config)#ntp server x.x.x.x(NTP服务器IP)
七、单向ACL
通过匹配TCP三次握手的syn号,实现单向访问。
配置命令:R1(config)#access-list 100 permit tcp any any established
八、轮询NAT
实现服务器负载均衡,以解决单台服务器承载能力有限的问题。
配置命令:R1(config)#ip nat pool tset x.x.x.x x.x.x.x netmask 255.255.255.0 type rotary
R1(config)#access-list x permit x.x.x.x(公网IP)
R1(config)#ip nat inside destination list x pool test
九、PPP多链路捆绑
将多条ppp链路捆绑在一起,以解决ppp链路带宽不足的问题,同时还提供了冗余。
配置命令: R1(config)#interface Multilink 10 //定义虚接口
R1(config-if)#ip address A.B.C.D A.B.C.D
R1(config-if)#ppp multilink
R1(config-if)#ppp multilink group 10
R1(config-if)#interface Serial0/0
R1(config-if)#no ip address
R1(config-if)#encapsulation ppp
R1(config-if)#ppp multilink
R1(config-if)#ppp multilink group 10 //把接口添加到这个组里
R1(config-if)#no shut
R1#show interface multilink 10 //查看虚接口信息
R1# show interface serial0/0 //查看接口信息
R1# show ppp multilink //查看加入组的接口,以及状态