VRRP&GLBP

VRRP
一、 VRRP
       VRRP 是国际标准 RFC2338 。默认有抢占的功能,可以使用路由器接口的真实 IP 作为虚拟网关使用。 ( 一个路由器为主 master ,其他都为 backup) IP 封装,目标 IP 224.0.0.18 ,协议号为 112 。如果使用某路由器物理 IP 作为网关,则它的优先级为 255 。其他默认为 100 。同样可以做多组负载均衡。
 
二、配置
R1(config-if)#vrrp 1 ?
             authentication  Authentication
             description     Group specific description
             ip              Enable Virtual Router Redundancy Protocol (VRRP) for IP
             preempt         Enable preemption of lower priority Master
             priority        Priority of this VRRP group
             shutdown        Disable VRRP Configuration
timers          Set the VRRP timers
             track           Event Tracking
配置原理,基本相同
       track
       SW4(config)#track 1 interface f0/0 line-protocol
SW4(config-track)#int vlan 2
SW4(config-if)#vrrp 1 track 1
 
GLBP
一、 GLBP
1 、介绍( Gateway Load Banancing Protocol
HRSP VRRP 不同的是, GLBP 不仅提供冗余网关,还在各网关之间提供负载均衡,而 HRSP VRRP 都必须选定一个活动路由器,而备用路由器则处于闲置状态。和 HRSP 不同的是, GLBP 可以绑定多个 MAC 地址到虚拟 IP ,从而允许客户端选择不同的路由器作为其默认网关,而网关地址仍使用相同的虚拟 IP ,从而实现一定的冗余。
2 、活动网关选举
使用类似于 HRSP 的机制选举活动网关,优先级最高的路由器成为活动落由器,称作 Acitve Virtual Gateway ,其他非 AVG 提供冗余。某路由器被推举为 AVG 后,和 HRSP 不同的工作开始了, AVG 分配虚拟的 MAC 地址给其他 GLBP 组成员。所有的 GLBP 组中的路由器都转发包,但是各路由器只负责转发与自己的虚拟 MAC 地址的相关的数据包。
3 、地址分配
每个 GLBP 组中最多有 4 个虚拟 MAC 地址,非 AVG 路由器有 AVG 按序分配虚拟 MAC 地址,非 AVG 也被称作 Active Virtual Forwarder(AVF) AVF 分为两类: Primary Virtual Forwarder Secondary Virtual Forwarder 。直接由 AVG 分配虚拟 MAC 地址的路由器被称作 Primary Virtual Forwarder ,后续不知道 AVG 真实 IP 地址的组成员,只能使用 hellos 包来识别其身份,然后被分配虚拟 MAC 地址,此类被称作 Secondary Virtual Forwarder
4 GLBP 配置
如果 AVG 失效,则推举就会发生,决定哪个 AVF 替代 AVG 来分配 MAC 地址,推举机制依赖于优先级。最多可以配置 1024 GLBP 组,不同的用户组可以配置成使用不同的组 AVG 来作为其网关。
              interface Vlan3
              ip address 11.11.20 .10 255.255.255.0
 glbp 1 i p 11.11.20 .1
 glbp 1 priority 105
 glbp 1 preempt
 glbp 1 weighting track int f0/0 20
end
       show glbp
       show glbp brief
       debug glbp
 

本文出自 “夕阳流水” 博客,谢绝转载!

你可能感兴趣的:(职场,休闲,ccnp,BCMSN)