Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1329205
  • 博文数量: 464
  • 博客积分: 9399
  • 博客等级: 中将
  • 技术积分: 6364
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-19 09:15
文章分类

全部博文(464)

文章存档

2014年(12)

2013年(123)

2012年(173)

2011年(156)

我的朋友

分类:

2012-06-16 12:56:26

本帖主要是关于实现默认网关路由器的冗余,interivan总结主要关于HSRP的配置。

 

1,代理ARP:不推荐使用

 

2,路由选择:一般不用

 

3,IDRP---   ICMP Router Discovery Protocol

 

为实现冗余默认网关,需要使用以一种协议指定多个路由器处理虚拟路由器的工作,该虚拟路由器有一个MAC地址和一个IP地址,支持默认网关冗余的协议有:

 

HSRP--Hot S tandby Routing Protocol 热备用路由选择协议

 

VRRP--Virtual Router Redundancy Protocol虚拟路由器冗余协议

 

GLBP--Gateway Load Blancing Protocol网关负载均衡协议

 

-配置HSRP,

 

swithA#configure terminal

 

swithA(config)#interface vlan 1

 

swithA()#standby 1 ip 10.1.1.254

 

swithA(config-if)#standby 1 priority 150     将优先级设为150,高于交换机B,成为活跃路由器。

 

swithA(config-if)#end

 

swithB#configure terminal

 

swithB(config-if)#standby 1 ip 10.1.1.254  

 

swithB(config-if)#end

 

vlan 2 中配置:

 

swithA#configure terminal

 

swithA(config)#interface vlan 2

 

swithA(config-if)#standby 2 ip 10.1.1.254

 

swithA(config-if)#end

 

swithB#configure terminal

 

swithB(config-if)#standby 2 ip 10.1.1.254  

 

swithB(config-if)#standby 2 priority 150      将优先级设为150,高于交换机A,成为活跃路由器。

 

swithB(config-if)#end

 

如果需要配置HSRP抢占的,那么使用preempt参数,在优先级高的活跃路由器上配置,才能夺回。

 

swithA#configure terminal

 

swithA(config)#interface vlan 1

 

swithA(config-if)#standby 1 preempt

 

swithA(config-if)#end

 

swithB#configure terminal

 

swithB(config)#interface vlan 2

 

swithB(config-if)#standby 1 preempt

 

swithB(config-if)#end

 

最近关于HSRP的总结~~

 

GLBP(Gateway Load Balance Protocol)网关负载均衡协议

GLBP(Gateway Load Balance Protocol)也是cisco的专有协议,不仅提供冗 余网关功能,还在各网关之间提供负载均衡.

GLBP Functions



CCIE Security 2009 IOS防火墙合集


阅读(462) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~