HSRP(热备份路由器协议)的详细介绍
程序员文章站
2022-03-29 15:52:22
HSRP:热备份路由器协议(HSRP:Hot Standby Router Protocol),是cisco平台一种特有的技术,是cisco的私有协议。... 12-05-14...
part i: fundamental
hsrp(hot standby router protocol):cisco私有的第3层协议。
hsrp为ip网络提供网络冗余,确保用户流量能立即并透明地恢复网络边界设备或接入电路中的第一跳故障。
在lan中,多个router组成一个hsrp组,其中一个router代表这个hsrp转发这个lan中的数据流,其它所有router只发送hsrp hello来维持这种hsrp组关系。
一个hsrp组共享一个ip和一个mac地址。每个router可以加入多个组。
一个hsrp组由一台active router,一台standby router及other routers。
1>active router转发指向vip的数据流,并发送hsrp hello包给所有其它hsrp组成员。(最终处于active state)
2>standby router不转发指向vip的数据流,发送hsrp hello包给所有其它hsrp组成员,并监控active router的状态。(最终处于standby state)
3>other routers不转发指向vip的数据流,只监控hsrp hello包,不发送。它们执行普通router的工作,只转发目标为他们自己的分组,不转发目标为vip的地址。(最终处于listen state)
part ii: hsrp operation
当standby router在一定时间内没有收到active router的hello包时,它就认为active router出现故障了,并取代它的active router的角色。因为host设备使用vip及vmac来标识它们的网关设备,所有它们不会发现这种变更,也不会感觉到服务的中断。
active router的选择:
1>优选priority大的hsrp router,默认的priority值为100
2>优选lowest mac地址
为了方便进行负载均衡,一个router可以属于多个hsrp组的成员,每个hsrp组有一个vip及vmac。
一个lan最多支持255个hsrp组。
如果host设备发送数据分组给vip的vmac地址,由active router来进行相应的数据流转发。
如果host设备发送一个对vip的arp请求,由active router用相应的vmac来应答。
part iii: vmac format
vmac地址由3部分组成:
1>vendor id:mac地址的前3个字节
2>hsrp code:2个字节,一般为07.ac,指示此地址为hsrp router。
3>group id:mac地址的最后一个字节,为hsrp的组号。
part ⅶ:hsrp command reference
1> standby {group-number} ip {virtual-ip-address}
group-number:缺省为0,可配置范围0-255
注:使用hsrp时,host设备不能发现hsrp router的真实mac地址,所以在配置了hsrp时,cisco设备自动禁用了icmp重定向:no ip redirects
2> standby {group-number} priority {priority-value}
priority:缺省为100,可配置范围0-255
priority最高的router成为active router,priority相同,则最高ip地址的router为active router
3> standby {group-number} preempt
允许一台router只要有高的priority就可以立即强占成为active router
4> standby {group-number} {hellotime} {holdtime}
group-number:缺省为0,可配置范围0-255
hellotime:缺省为3,可配置范围1-255
holdtime:缺省为10,可配置范围1-255
5> standby {group-number} track {type number} {interface-priority}
type number:使hsrp监控此接口,如果此接口down掉,则接口的hsrp priority值减去interface-priority
interface-priority:接口down掉的惩罚值。
6> show standby {type number} {group} {brief}
switch#show standby vlan11 11
vlan11 - group 11
local state is active, priority 110
hellotime 3 holdtime 10
next hello sent in 00:00:02.944
hot standby ip address is 172.16.11.115 configured
active router is local
standby router is 172.16.11.114 expires in 00:00:08
standby virtual mac address is 0000.0c07.ac01
7> debug standby [errors] [events] [packets]
监控hsrp所有的状态改变及hello包的发送。
8> debug standby terse
监控hsrp所有的errors,events和packets信息(不包括hello及advertisement packets)
part ⅷ: hsrp configuration
routera:
!
interface vlan10
ip address 172.16.10.32 255.255.255.0
no ip redirects
standby 1 priority 150
standby 1 ip 172.16.10.110
standby 2 priority 50
standby 2 ip 172.16.10.120
routerb:
!
interface vlan10
ip address 172.16.10.33 255.255.255.0
no ip redirects
standby 1 priority 50
standby 1 ip 172.16.10.110
standby 2 priority 150
standby 2 ip 172.16.10.120
routera#show standby brief
p indicates configured to preempt.
interface grp prio p state active standby virtual ip
vl10 1 150 active local 172.16.10.33 172.16.10.110
vl10 2 50 standby 172.16.10.33 local 172.16.10.120
part ⅸ: tuning hsrp operations
subsecond failover:
hsrp hellotime及holdtime可以配置为millisecond级别,进而将hsrp故障检测时间减少到1秒内。
switch(config-if)#standby 1 timers msec 200 msec 750
preempt time aligned with router boot time:
preempt是hsrp很重要的一个特性,它允许主router在经历failover后再次成为active router。
当主router重启后,hsrp应该等待此router与其它相连的设备建立好相应的通信连接后再preempt hsrp。否则有可能会导致packets不可达。
这时就需要在preempt之前有一个延迟,以等待router完成它的通信连接或路由信息收集。这个延迟要根据不同设备不同的启动时间来设定,一般这个延迟应该比启动时间大一倍,以确保主router有能力成为active router。
switch(config-if)#standby 1 preempt
switch(config-if)#standby 1 preempt delay minimum 180
hsrp(hot standby router protocol):cisco私有的第3层协议。
hsrp为ip网络提供网络冗余,确保用户流量能立即并透明地恢复网络边界设备或接入电路中的第一跳故障。
在lan中,多个router组成一个hsrp组,其中一个router代表这个hsrp转发这个lan中的数据流,其它所有router只发送hsrp hello来维持这种hsrp组关系。
一个hsrp组共享一个ip和一个mac地址。每个router可以加入多个组。
一个hsrp组由一台active router,一台standby router及other routers。
1>active router转发指向vip的数据流,并发送hsrp hello包给所有其它hsrp组成员。(最终处于active state)
2>standby router不转发指向vip的数据流,发送hsrp hello包给所有其它hsrp组成员,并监控active router的状态。(最终处于standby state)
3>other routers不转发指向vip的数据流,只监控hsrp hello包,不发送。它们执行普通router的工作,只转发目标为他们自己的分组,不转发目标为vip的地址。(最终处于listen state)
part ii: hsrp operation
当standby router在一定时间内没有收到active router的hello包时,它就认为active router出现故障了,并取代它的active router的角色。因为host设备使用vip及vmac来标识它们的网关设备,所有它们不会发现这种变更,也不会感觉到服务的中断。
active router的选择:
1>优选priority大的hsrp router,默认的priority值为100
2>优选lowest mac地址
为了方便进行负载均衡,一个router可以属于多个hsrp组的成员,每个hsrp组有一个vip及vmac。
一个lan最多支持255个hsrp组。
如果host设备发送数据分组给vip的vmac地址,由active router来进行相应的数据流转发。
如果host设备发送一个对vip的arp请求,由active router用相应的vmac来应答。
part iii: vmac format
vmac地址由3部分组成:
1>vendor id:mac地址的前3个字节
2>hsrp code:2个字节,一般为07.ac,指示此地址为hsrp router。
3>group id:mac地址的最后一个字节,为hsrp的组号。
part ⅶ:hsrp command reference
1> standby {group-number} ip {virtual-ip-address}
group-number:缺省为0,可配置范围0-255
注:使用hsrp时,host设备不能发现hsrp router的真实mac地址,所以在配置了hsrp时,cisco设备自动禁用了icmp重定向:no ip redirects
2> standby {group-number} priority {priority-value}
priority:缺省为100,可配置范围0-255
priority最高的router成为active router,priority相同,则最高ip地址的router为active router
3> standby {group-number} preempt
允许一台router只要有高的priority就可以立即强占成为active router
4> standby {group-number} {hellotime} {holdtime}
group-number:缺省为0,可配置范围0-255
hellotime:缺省为3,可配置范围1-255
holdtime:缺省为10,可配置范围1-255
5> standby {group-number} track {type number} {interface-priority}
type number:使hsrp监控此接口,如果此接口down掉,则接口的hsrp priority值减去interface-priority
interface-priority:接口down掉的惩罚值。
6> show standby {type number} {group} {brief}
switch#show standby vlan11 11
vlan11 - group 11
local state is active, priority 110
hellotime 3 holdtime 10
next hello sent in 00:00:02.944
hot standby ip address is 172.16.11.115 configured
active router is local
standby router is 172.16.11.114 expires in 00:00:08
standby virtual mac address is 0000.0c07.ac01
7> debug standby [errors] [events] [packets]
监控hsrp所有的状态改变及hello包的发送。
8> debug standby terse
监控hsrp所有的errors,events和packets信息(不包括hello及advertisement packets)
part ⅷ: hsrp configuration
routera:
!
interface vlan10
ip address 172.16.10.32 255.255.255.0
no ip redirects
standby 1 priority 150
standby 1 ip 172.16.10.110
standby 2 priority 50
standby 2 ip 172.16.10.120
routerb:
!
interface vlan10
ip address 172.16.10.33 255.255.255.0
no ip redirects
standby 1 priority 50
standby 1 ip 172.16.10.110
standby 2 priority 150
standby 2 ip 172.16.10.120
routera#show standby brief
p indicates configured to preempt.
interface grp prio p state active standby virtual ip
vl10 1 150 active local 172.16.10.33 172.16.10.110
vl10 2 50 standby 172.16.10.33 local 172.16.10.120
part ⅸ: tuning hsrp operations
subsecond failover:
hsrp hellotime及holdtime可以配置为millisecond级别,进而将hsrp故障检测时间减少到1秒内。
switch(config-if)#standby 1 timers msec 200 msec 750
preempt time aligned with router boot time:
preempt是hsrp很重要的一个特性,它允许主router在经历failover后再次成为active router。
当主router重启后,hsrp应该等待此router与其它相连的设备建立好相应的通信连接后再preempt hsrp。否则有可能会导致packets不可达。
这时就需要在preempt之前有一个延迟,以等待router完成它的通信连接或路由信息收集。这个延迟要根据不同设备不同的启动时间来设定,一般这个延迟应该比启动时间大一倍,以确保主router有能力成为active router。
switch(config-if)#standby 1 preempt
switch(config-if)#standby 1 preempt delay minimum 180