FHRP (HSRP, VRRP, GLBP) Flashcards
What is the command to enable HSRP on an interface?
R1(config-if)# standby {group-id} ip {virtual-address}
Example:
R1(config-if)# standby 99 ip 10.1.1.3
What is the default priority of an HSRP router and what priority is most preferred?
- Priority 100
- Higher is preferred
NOTE: Can be any value from 0 - 255
What is the command to adjust the HSRP hello and hold down timers?
R1(config-if)# standby {group-id} timers {hello-secs} {holddown-secs}
R1(config-if)# standby 99 timers 5 15
What are the HSRP default hello and hold down timers?
3 (hello) and 10 (hold down)
What is the command to enable preemption on an HSRP interface?
R1(config-if)# standby {group-id} preempt
R1(config-if)# standby 99 preempt
What does the preempt command do in HSRP?
It negotiates the Active router based on priority without waiting for a failover event to occur.
What command is used to enable HSRP authentication?
R1(config-if)# standby {group-id} authentication {password | md5 key-chain | key-string keystring}
R1(config-if)# standby 99 authentication My_Pa$$w0Rd
R1(config-if)# standby 99 authentication
R1(config-if)# standby 99 authentication
What are the commands to enable HSRP authentication using an MD5 key-chain
R1(config)# key chain HSRP_KEYCHAIN
R1(config-keychain)# key 999
R1(config-keychain-key)# key-string Pa$$W0rd
R1(config)# int gi0/0
R1(config-if)# standby 99 authentication md5 key-chain HSRP_KEYCHAIN
In HSRP, what are the roles or states a device can be in?
- Active
- Standby
- Speaker
What is the command to verify HSRP?
show standby
What are the commands to enable basic VRRP?
R1(config-if)# vrrp {group-id} ip {virtual-address}
Example:
R1(config-if)# vrrp 99 ip 10.1.1.3
What are the commands to adjust VRRP Priority on a Cisco router?
R1(config-if)# vrrp {group-id} priority {0-255}
Example:
R1(config-if)# vrrp 99 priority 150
In VRRP what is different about preemption compared to HSPR?
Preemption is enabled by default.
In VRRP what are the roles (or states) a device can be in?
- Master
- Backup
In VRRP, what are the commands to adjust the timers?
R1(config-if)# vrrp {group-id} timers advertise {secs}
Example:
R1(config-if)# vrrp 99 timers advertise 3