Das [[cisco|Cisco]] proprietäre **Hot Standby Router Protocol** ist ein **[[routing|Routingprotokoll]] zur Steigerung der Verfügbarkeit** von wichtigen Gateways **mittels redundanter [[router|Router]]**.
Siehe auch [[VRRP]], [[GLBP]] und [[CARP]].
Wenn ein Failover ausgelöst wurde und der Router mit der höheren Priority wieder online ist übernimmt er nicht automatisch die "active" Rolle. Dazu muss man "preemption" konfigurieren!
=====Lab=====
{{hsrp_lab_gns3.png}}
Der PC hat 10.0.0.1 (virtuelle IP) als Gateway eingetragen.
!R1
int fa1/0
standby 10 ip 10.0.0.1
! wenn der active link nach einem Ausfall wieder online kommt übernimmt er automatisch wieder die active Rolle
standby 10 preempt
! priority default 100, higher priority wins
standby 10 priority 110
exit
!R2
int fa1/0
standby ip 10 10.0.0.1
standby 10 preempt
! priority bleibt bei 100, R1 soll active sein
exit
=====Links=====
* [[https://de.m.wikipedia.org/wiki/Hot_Standby_Router_Protocol|Wikipedia]]
* [[https://youtu.be/-IaUa4-6ZeI|Understanding and configuring HSRP]]